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
1ea9782c
Commit
1ea9782c
authored
Feb 18, 2015
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update static version
parent
ad912437
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
172 deletions
+60
-172
dream/platform/static/dream/Input_viewDebugJson.js
dream/platform/static/dream/Input_viewDebugJson.js
+2
-2
dream/platform/static/dream/Output_viewGantt.js
dream/platform/static/dream/Output_viewGantt.js
+44
-169
dream/platform/static/dream/index.js
dream/platform/static/dream/index.js
+14
-1
No files found.
dream/platform/static/dream/Input_viewDebugJson.js
View file @
1ea9782c
...
@@ -22,8 +22,8 @@
...
@@ -22,8 +22,8 @@
_id
:
gadget
.
props
.
jio_key
,
_id
:
gadget
.
props
.
jio_key
,
_attachment
:
"
body.json
"
_attachment
:
"
body.json
"
}).
push
(
function
(
result_json
)
{
}).
push
(
function
(
result_json
)
{
var
jsonTextArea
=
gadget
.
props
.
element
.
querySelector
(
"
.json
"
)
,
document
=
JSON
.
parse
(
result_json
)
;
var
jsonTextArea
=
gadget
.
props
.
element
.
querySelector
(
"
.json
"
);
jsonTextArea
.
textContent
=
JSON
.
stringify
(
document
,
undefined
,
"
"
)
;
jsonTextArea
.
textContent
=
result_json
;
gadget
.
props
.
codemirror
=
CodeMirror
.
fromTextArea
(
jsonTextArea
,
{
gadget
.
props
.
codemirror
=
CodeMirror
.
fromTextArea
(
jsonTextArea
,
{
lineNumbers
:
true
,
lineNumbers
:
true
,
mode
:
{
mode
:
{
...
...
dream/platform/static/dream/Output_viewGantt.js
View file @
1ea9782c
...
@@ -3,188 +3,63 @@
...
@@ -3,188 +3,63 @@
/*jslint nomen: true, unparam: true */
/*jslint nomen: true, unparam: true */
(
function
(
window
,
rJS
,
RSVP
,
$
,
gantt
,
initGadgetMixin
)
{
(
function
(
window
,
rJS
,
RSVP
,
$
,
gantt
,
initGadgetMixin
)
{
"
use strict
"
;
"
use strict
"
;
gantt
.
templates
.
task_class
=
function
(
start
,
end
,
obj
)
{
/*
return
obj
.
parent
?
"
sub_task
"
:
""
;
GANTT widget
};
function
gantt_widget
(
all_data
,
gadget
)
{
Gantt expect data in the following format:
// XXX: use dhx_gantt zoom level feature (
// http://dhtmlx.com/docs/products/dhtmlxGantt/02_features.html )
time_unit: one of minute, hour, day, week, month or year
var
now
=
new
Date
(),
start_date
=
all_data
.
general
.
currentDate
,
input_data
=
all_data
.
input
,
graph_data
=
all_data
.
graph
,
output_data
=
all_data
.
result
.
result_list
[
gadget
.
props
.
result
],
config
=
all_data
.
application_configuration
.
output
[
gadget
.
props
.
action
].
configuration
,
gantt_data
;
task_list: [
// temporary hack
{
now
.
setHours
(
0
);
id: "project_1", # an unique id, different than "0" which is a reserved id
now
.
setMinutes
(
0
);
text: "First Project", # the text to display
now
.
setSeconds
(
0
);
start_date: '2015-03-02 08:54',
if
(
start_date
!==
undefined
&&
start_date
!==
""
)
{
# The date in '%d-%m-%Y %H:%M' format, optionnal for projects
start_date
=
new
Date
(
start_date
);
# XXX it would be better to use ISO8601 / http://www.w3.org/TR/NOTE-datetime
}
else
{
start_date
=
new
Date
(
now
.
getTime
());
duration: 100, # the duration in time unit, optionnal for projects
}
type: 'project',
gantt_data
=
{
open: true
data
:
[
{
},
id
:
"
by_operator
"
,
{
text
:
"
By Operator
"
,
id: "project_1_task_1",
start_date
:
start_date
,
text: "A Task",
duration
:
0
,
start_date: start_date,
project
:
1
,
stop_date: stop_date,
open
:
true
duration: 100,
},
{
parent: "project_1", # id of the parent
id
:
"
by_station
"
,
open: false
text
:
"
By Station
"
,
}
start_date
:
start_date
,
]
duration
:
0
,
project
:
1
,
XXX both stop & start date are required for compatibility with dxhtmlscheduler
open
:
true
}
],
TODOs:
link
:
[]
- make a really reusable gadget
};
- handle links (prerequisites)
console
.
log
(
"
gantt gadget method
"
);
console
.
log
(
config
);
*/
console
.
log
(
input_data
);
console
.
log
(
graph_data
);
console
.
log
(
output_data
);
function
isVisibleStation
(
station
)
{
var
i
;
// we should be able to define in the backend which
// station is visible
for
(
i
=
0
;
i
<=
output_data
.
elementList
.
length
-
1
;
i
+=
1
)
{
if
(
output_data
.
elementList
[
i
].
id
===
station
)
{
return
output_data
.
elementList
[
i
].
family
!==
"
Buffer
"
&&
output_data
.
elementList
[
i
].
family
!==
"
Exit
"
&&
output_data
.
elementList
[
i
].
family
!==
"
Operator
"
&&
output_data
.
elementList
[
i
].
family
!==
"
Entry
"
;
}
}
}
$
.
each
(
output_data
.
elementList
.
sort
(
function
(
a
,
b
)
{
return
a
.
id
<
b
.
id
?
-
1
:
1
;
}),
function
(
idx
,
obj
)
{
var
duration
=
0
;
if
(
obj
.
family
===
"
Operator
"
)
{
gantt_data
.
data
.
push
({
id
:
obj
.
id
,
text
:
obj
.
id
,
project
:
1
,
open
:
false
,
parent
:
"
by_operator
"
});
console
.
log
(
"
operator
"
);
console
.
log
(
obj
.
id
);
if
(
obj
.
results
.
schedule
)
{
$
.
each
(
obj
.
results
.
schedule
,
function
(
i
,
schedule
)
{
var
task_start_date
;
// Filter intermediate steps in part job shop
if
(
isVisibleStation
(
schedule
.
stationId
))
{
if
(
schedule
.
exitTime
)
{
duration
=
24
*
(
schedule
.
exitTime
-
schedule
.
entranceTime
);
}
else
{
if
(
obj
.
results
.
schedule
[
i
+
1
])
{
duration
=
obj
.
results
.
schedule
[
i
+
1
].
entranceTime
-
schedule
.
entranceTime
;
}
else
{
// XXX completion time not provided
duration
=
obj
.
results
.
completionTime
-
schedule
.
entranceTime
;
}
}
if
(
duration
>
0
)
{
console
.
log
(
"
..
"
);
console
.
log
(
"
step
"
);
console
.
log
(
i
);
console
.
log
(
"
duration
"
);
console
.
log
(
duration
);
task_start_date
=
new
Date
(
start_date
.
getTime
());
// for simulation time unit as days
// task_start_date.setDate(task_start_date.getDate() +
// schedule['entranceTime']);
// for simulation time unit as days hours
task_start_date
.
setTime
(
task_start_date
.
getTime
()
+
schedule
.
entranceTime
*
1
e3
*
60
);
console
.
log
(
"
start date
"
);
console
.
log
(
task_start_date
);
console
.
log
(
schedule
.
entranceTime
);
console
.
log
(
schedule
.
entranceTime
*
1
e3
*
60
);
gantt_data
.
data
.
push
({
id
:
obj
.
id
+
"
.
"
+
schedule
.
stationId
+
"
.
"
+
i
,
text
:
schedule
.
stationId
,
start_date
:
task_start_date
,
duration
:
duration
,
parent
:
obj
.
id
});
gantt_data
.
data
.
push
({
id
:
"
operator.
"
+
obj
.
id
+
"
.
"
+
idx
+
"
_
"
+
i
,
text
:
obj
.
id
+
"
-
"
+
schedule
.
stationId
,
start_date
:
task_start_date
,
duration
:
duration
,
parent
:
schedule
.
stationId
,
by_station
:
1
});
}
}
});
}
}
else
{
if
(
isVisibleStation
(
obj
.
id
))
{
gantt_data
.
data
.
push
({
id
:
obj
.
id
,
text
:
obj
.
id
,
project
:
1
,
open
:
false
,
parent
:
"
by_station
"
});
}
}
});
// gantt_output_height = 35 * (gantt_data.data.length + 1) + 1;
gantt_data
.
data
.
sort
(
function
(
a
,
b
)
{
// sort gantt data in a chronological order
var
result
;
if
(
a
.
start_date
===
undefined
&&
b
.
start_date
!==
undefined
)
{
result
=
1
;
}
else
if
(
a
.
start_date
!==
undefined
&&
b
.
start_date
===
undefined
)
{
result
=
-
1
;
}
else
if
(
a
.
start_date
===
undefined
&&
b
.
start_date
===
undefined
)
{
result
=
0
;
}
else
if
(
a
.
start_date
>
b
.
start_date
)
{
result
=
1
;
}
else
if
(
a
.
start_date
<
b
.
start_date
)
{
result
=
-
1
;
}
else
{
result
=
0
;
}
return
result
;
});
console
.
log
(
"
Returning the Gantt Data
"
);
console
.
log
(
gantt_data
);
return
gantt_data
;
}
var
gadget_klass
=
rJS
(
window
);
var
gadget_klass
=
rJS
(
window
);
initGadgetMixin
(
gadget_klass
);
initGadgetMixin
(
gadget_klass
);
gadget_klass
.
declareAcquiredMethod
(
"
aq_getAttachment
"
,
"
jio_getAttachment
"
).
declareMethod
(
"
render
"
,
function
(
options
)
{
gadget_klass
.
declareAcquiredMethod
(
"
aq_getAttachment
"
,
"
jio_getAttachment
"
).
declareMethod
(
"
render
"
,
function
(
options
)
{
var
jio_key
=
options
.
id
,
gadget
=
this
;
var
jio_key
=
options
.
id
,
gadget
=
this
;
gadget
.
props
.
jio_key
=
jio_key
;
gadget
.
props
.
jio_key
=
jio_key
;
gadget
.
props
.
result
=
options
.
result
;
gadget
.
props
.
result
=
options
.
result
;
gadget
.
props
.
action
=
options
.
action
;
return
gadget
.
aq_getAttachment
({
return
gadget
.
aq_getAttachment
({
_id
:
gadget
.
props
.
jio_key
,
_id
:
gadget
.
props
.
jio_key
,
_attachment
:
"
body.json
"
_attachment
:
"
body.json
"
}).
push
(
function
(
simulation_json
)
{
}).
push
(
function
(
simulation_json
)
{
var
json_data
=
JSON
.
parse
(
simulation_json
);
var
json_data
=
JSON
.
parse
(
simulation_json
);
gadget
.
props
.
result
=
gantt_widget
(
json_data
,
gadget
)
;
gadget
.
props
.
result
=
json_data
.
result
.
result_list
[
options
.
result
][
options
.
action_definition
.
configuration
.
output_id
]
;
});
});
}).
declareMethod
(
"
startService
"
,
function
()
{
}).
declareMethod
(
"
startService
"
,
function
()
{
$
(
this
.
props
.
element
).
find
(
"
.gant_container
"
).
dhx_gantt
({
var
gantt_tasks
=
{
data
:
this
.
props
.
result
,
data
:
this
.
props
.
result
.
task_list
,
readonly
:
true
,
links
:
[]
/* for days has simulation time unit
};
scale_unit: 'day',
gantt
.
config
.
duration_unit
=
this
.
props
.
result
.
time_unit
;
step: 7
gantt
.
init
(
$
(
this
.
props
.
element
).
find
(
"
.gant_container
"
)[
0
]);
*/
gantt
.
parse
(
gantt_tasks
);
// for hours has simulation time unit
scale_unit
:
"
day
"
,
duration_unit
:
60
*
1
e3
,
// date_grid: "%H:%i",
date_scale
:
"
%M/%d
"
,
step
:
1
,
subscales
:
[
{
unit
:
"
hour
"
,
step
:
1
,
date
:
"
%H:%i
"
}
]
});
return
new
RSVP
.
Queue
().
push
(
function
()
{
return
new
RSVP
.
Queue
().
push
(
function
()
{
// Infinite wait, until cancelled
// Infinite wait, until cancelled
return
new
RSVP
.
defer
().
promise
;
return
new
RSVP
.
defer
().
promise
;
...
...
dream/platform/static/dream/index.js
View file @
1ea9782c
...
@@ -258,7 +258,20 @@
...
@@ -258,7 +258,20 @@
}).
push
(
function
(
result
)
{
}).
push
(
function
(
result
)
{
var
data
;
var
data
;
if
(
result
)
{
if
(
result
)
{
data
=
JSON
.
parse
(
result
);
try
{
data
=
JSON
.
parse
(
result
);
}
catch
(
error
)
{
portal_type
=
"
Input
"
;
options
.
action
=
"
debug
"
;
portal_types
.
Input
=
{
debug
:
{
gadget
:
"
Input_viewDebugJson
"
,
type
:
"
object_view
"
,
title
:
"
Emergency Mode, JSON cannot be parsed
"
}
};
return
gadget
.
declareGadget
(
"
Input_viewDebugJson.html
"
);
}
gadget
.
props
.
data
=
data
;
gadget
.
props
.
data
=
data
;
portal_types
.
Input
=
data
.
application_configuration
.
input
;
portal_types
.
Input
=
data
.
application_configuration
.
input
;
portal_types
.
Output
=
data
.
application_configuration
.
output
;
portal_types
.
Output
=
data
.
application_configuration
.
output
;
...
...
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