Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
9e5b8c81
Commit
9e5b8c81
authored
Apr 20, 2015
by
Klaus Wölfel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
POC for next button on user inactivity
parent
195043b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
7 deletions
+40
-7
dream/platform/src/dream/index.html
dream/platform/src/dream/index.html
+3
-5
dream/platform/src/dream/index.js
dream/platform/src/dream/index.js
+37
-2
No files found.
dream/platform/src/dream/index.html
View file @
9e5b8c81
...
...
@@ -67,11 +67,9 @@
<h1>
Dream Simulation
</h1>
<div
data-role=
"controlgroup"
data-type=
"horizontal"
class=
"ui-btn-right"
>
<!-- Next button to cycle through the results, similar to ERP5 navigation -->
<a
data-icon=
"forward"
style=
"display: none"
<a
data-icon=
"forward"
class=
"next_step_link ui-btn ui-icon-forward ui-btn-icon-right"
>
Next Step
</a>
<a
data-icon=
"forward"
class=
"next_link ui-btn ui-icon-forward ui-btn-icon-right"
>
Next
</a>
</div>
...
...
dream/platform/src/dream/index.js
View file @
9e5b8c81
...
...
@@ -113,6 +113,19 @@
return
gadget
.
aq_pleasePublishMyState
(
forward_kw
);
});
}
function
getNextStepLink
(
gadget
,
portal_type
,
options
)
{
if
(
options
.
action
===
"
view_machine_shift_spreadsheet
"
)
{
var
forward_kw
=
{
action
:
"
view_run_simulation
"
,
id
:
options
.
id
};
return
gadget
.
aq_pleasePublishMyState
(
forward_kw
);
}
else
{
return
false
;
}
}
function
getTitle
(
gadget
,
portal_type
,
options
)
{
var
title
;
...
...
@@ -443,7 +456,8 @@
calculateNavigationHTML
(
gadget
,
portal_type
,
options
),
gadget
.
aq_pleasePublishMyState
(
back_kw
),
getTitle
(
gadget
,
portal_type
,
options
),
getNextLink
(
gadget
,
portal_type
,
options
)
getNextLink
(
gadget
,
portal_type
,
options
),
getNextStepLink
(
gadget
,
portal_type
,
options
)
]);
}).
push
(
function
(
result_list
)
{
var
nav_html
=
result_list
[
1
],
...
...
@@ -461,7 +475,6 @@
// Update forward link
gadget
.
props
.
element
.
getElementsByClassName
(
"
next_link
"
)[
0
].
href
=
result_list
[
4
];
// Update the navigation panel
// Clear the previous rendering
while
(
nav_element
.
firstChild
)
{
...
...
@@ -481,6 +494,28 @@
element
.
appendChild
(
page_element
);
$
(
element
).
trigger
(
'
create
'
);
return
result_list
[
5
];
}).
push
(
function
(
next_step_link
)
{
var
button
=
gadget
.
props
.
element
.
getElementsByClassName
(
"
next_step_link
"
)[
0
];
$
(
button
).
hide
();
var
idle_timer
;
function
resetTimer
()
{
clearTimeout
(
idle_timer
);
idle_timer
=
setTimeout
(
function
()
{
$
(
button
).
show
()
},
idle_seconds
*
1000
);
}
if
(
next_step_link
!==
false
)
{
button
.
href
=
next_step_link
;
var
idle_seconds
=
10
;
$
(
document
.
body
).
on
(
'
keydown click
'
,
resetTimer
);
resetTimer
();
}
else
{
$
(
document
.
body
).
off
(
'
keydown click
'
,
resetTimer
);
}
// XXX RenderJS hack to start sub gadget services
// Only work if this gadget has no parent.
if
(
page_gadget
.
startService
!==
undefined
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment