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
8f082775
Commit
8f082775
authored
Feb 25, 2015
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New Output_viewCalendar unfinished widget
parent
e551ed32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
231 additions
and
0 deletions
+231
-0
dream/platform/src/dream/Output_viewCalendar.html
dream/platform/src/dream/Output_viewCalendar.html
+50
-0
dream/platform/src/dream/Output_viewCalendar.js
dream/platform/src/dream/Output_viewCalendar.js
+181
-0
No files found.
dream/platform/src/dream/Output_viewCalendar.html
0 → 100644
View file @
8f082775
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
Gantt
</title>
<link
rel=
"stylesheet"
href=
"../<%= copy.dhtmlxschedulercss.relative_dest %>"
>
<style>
.dhx_cal_event.multisection
div
{
background-color
:
inherit
;
}
.section_1
{
background-color
:
#49A223
;
}
.section_2
{
background-color
:
#e29e2e
;
}
.section_3
{
background-color
:
#c53b64
;
}
.section_4
{
background-color
:
#6e7dc5
;
}
</style>
<script
src=
"../<%= copy.rsvp.relative_dest %>"
type=
"text/javascript"
></script>
<script
src=
"../<%= copy.renderjs.relative_dest %>"
type=
"text/javascript"
></script>
<script
src=
"../<%= curl.jquery.relative_dest %>"
type=
"text/javascript"
></script>
<script
src=
"../<%= copy.dhtmlxschedulerjs.relative_dest %>"
type=
"text/javascript"
></script>
<script
src=
"mixin_gadget.js"
type=
"text/javascript"
></script>
<script
src=
"Output_viewCalendar.js"
type=
"text/javascript"
></script>
</head>
<body>
<div
id=
"scheduler_here"
class=
"dhx_cal_container"
style=
'width: 100%; height: 600px; padding:10px;'
>
<div
class=
"dhx_cal_navline"
>
<div
class=
"dhx_cal_prev_button"
>
</div>
<div
class=
"dhx_cal_next_button"
>
</div>
<div
class=
"dhx_cal_today_button"
></div>
<div
class=
"dhx_cal_date"
></div>
<div
class=
"dhx_cal_tab"
name=
"day_tab"
style=
"right:204px;"
></div>
<div
class=
"dhx_cal_tab"
name=
"week_tab"
style=
"right:140px;"
></div>
<div
class=
"dhx_cal_tab"
name=
"month_tab"
style=
"right:76px;"
></div>
</div>
<div
class=
"dhx_cal_header"
></div>
<div
class=
"dhx_cal_data"
></div>
</div>
</body>
</html>
dream/platform/src/dream/Output_viewCalendar.js
0 → 100644
View file @
8f082775
/*global rJS, RSVP, jQuery, scheduler,
initGadgetMixin, console */
/*jslint nomen: true, unparam: true */
(
function
(
window
,
rJS
,
RSVP
,
$
,
scheduler
,
initGadgetMixin
)
{
"
use strict
"
;
var
gadget_klass
=
rJS
(
window
);
initGadgetMixin
(
gadget_klass
);
gadget_klass
/////////////////////////////////////////////////////////////////
// Acquired methods
/////////////////////////////////////////////////////////////////
.
declareAcquiredMethod
(
"
aq_getAttachment
"
,
"
jio_getAttachment
"
)
/////////////////////////////////////////////////////////////////
// declared methods
/////////////////////////////////////////////////////////////////
.
declareMethod
(
"
render
"
,
function
(
options
)
{
var
jio_key
=
options
.
id
,
gadget
=
this
;
gadget
.
props
.
jio_key
=
jio_key
;
gadget
.
props
.
result
=
options
.
result
;
gadget
.
props
.
action_definition
=
options
.
action_definition
;
return
gadget
.
aq_getAttachment
({
"
_id
"
:
gadget
.
props
.
jio_key
,
"
_attachment
"
:
"
body.json
"
})
.
push
(
function
(
simulation_json
)
{
var
json_data
=
JSON
.
parse
(
simulation_json
);
gadget
.
props
.
result
=
json_data
.
result
.
result_list
[
options
.
result
].
sample_gantt
;
});
})
.
declareMethod
(
"
xstartService
"
,
function
()
{
scheduler
.
config
.
multisection
=
true
;
scheduler
.
templates
.
event_class
=
function
(
start
,
end
,
event
){
var
original
=
scheduler
.
getEvent
(
event
.
id
);
if
(
!
scheduler
.
isMultisectionEvent
(
original
))
{
return
""
;
}
return
"
multisection section_
"
+
event
.
section_id
;
};
scheduler
.
config
.
xml_date
=
"
%Y-%m-%d %H:%i
"
;
scheduler
.
locale
.
labels
.
timeline_tab
=
"
Timeline
"
;
scheduler
.
locale
.
labels
.
unit_tab
=
"
Unit
"
;
scheduler
.
locale
.
labels
.
section_custom
=
"
Section
"
;
var
sections
=
[
{
key
:
1
,
label
:
"
James Smith
"
},
{
key
:
2
,
label
:
"
John Williams
"
},
{
key
:
3
,
label
:
"
David Miller
"
},
{
key
:
4
,
label
:
"
Linda Brown
"
}
];
scheduler
.
createTimelineView
({
name
:
"
timeline
"
,
x_unit
:
"
hour
"
,
x_date
:
"
%H:%i
"
,
x_step
:
8
,
x_size
:
33
,
x_length
:
33
,
event_dy
:
60
,
resize_events
:
false
,
y_unit
:
sections
,
y_property
:
"
section_id
"
,
render
:
"
bar
"
,
second_scale
:{
x_unit
:
"
day
"
,
// unit which should be used for second scale
x_date
:
"
%F %d
"
// date format which should be used for second scale, "July 01"
}
});
scheduler
.
date
.
timeline_start
=
scheduler
.
date
.
day_start
;
scheduler
.
createUnitsView
({
name
:
"
unit
"
,
property
:
"
section_id
"
,
list
:
sections
});
scheduler
.
config
.
lightbox
.
sections
=
[
{
name
:
"
description
"
,
height
:
130
,
map_to
:
"
text
"
,
type
:
"
textarea
"
,
focus
:
true
},
{
name
:
"
custom
"
,
height
:
22
,
map_to
:
"
section_id
"
,
type
:
"
multiselect
"
,
options
:
sections
,
vertical
:
"
false
"
},
{
name
:
"
time
"
,
height
:
72
,
type
:
"
time
"
,
map_to
:
"
auto
"
}
];
scheduler
.
init
(
'
scheduler_here
'
,
new
Date
(
2012
,
5
,
30
),
"
timeline
"
);
scheduler
.
parse
([
{
start_date
:
"
2012-06-30 09:00
"
,
end_date
:
"
2012-06-30 18:00
"
,
text
:
"
Task A-12458
"
,
section_id
:
'
1
'
},
{
start_date
:
"
2012-06-30 10:00
"
,
end_date
:
"
2012-06-30 16:00
"
,
text
:
"
Task A-89411
"
,
section_id
:
'
1
'
},
{
start_date
:
"
2012-06-30 4:00
"
,
end_date
:
"
2012-06-30 15:00
"
,
text
:
"
Task 1,3
"
,
section_id
:
'
1,3
'
},
{
start_date
:
"
2012-06-30 16:00
"
,
end_date
:
"
2012-07-01 17:00
"
,
text
:
"
Task A-46598
"
,
section_id
:
'
1
'
},
{
start_date
:
"
2012-07-04 00:00
"
,
end_date
:
"
2012-07-04 23:00
"
,
text
:
"
Task 2,3,4
"
,
section_id
:
'
2,3,4
'
},
{
start_date
:
"
2012-07-01 02:00
"
,
end_date
:
"
2012-07-01 16:00
"
,
text
:
"
Task B-44864
"
,
section_id
:
'
2
'
},
{
start_date
:
"
2012-07-06 02:00
"
,
end_date
:
"
2012-07-06 18:00
"
,
text
:
"
Task C-32421
"
,
section_id
:
'
3
'
},
{
start_date
:
"
2012-07-02 08:30
"
,
end_date
:
"
2012-07-02 19:45
"
,
text
:
"
Task 3,1
"
,
section_id
:
'
3,1
'
},
{
start_date
:
"
2012-06-30 11:40
"
,
end_date
:
"
2012-07-02 16:30
"
,
text
:
"
Task 4,2,3
"
,
section_id
:
'
4,2,3
'
},
{
start_date
:
"
2012-06-30 12:00
"
,
end_date
:
"
2012-06-30 18:00
"
,
text
:
"
Task D-12458
"
,
section_id
:
'
4
'
}
],
"
json
"
);
})
.
declareMethod
(
"
startService
"
,
function
()
{
console
.
log
(
'
start
'
,
this
.
props
.
result
);
scheduler
.
config
.
xml_date
=
"
%Y-%m-%d %H:%i
"
;
scheduler
.
config
.
time_step
=
30
;
scheduler
.
config
.
multi_day
=
true
;
scheduler
.
locale
.
labels
.
section_subject
=
"
Subject
"
;
scheduler
.
config
.
first_hour
=
6
;
scheduler
.
config
.
limit_time_select
=
true
;
scheduler
.
config
.
details_on_dblclick
=
true
;
scheduler
.
config
.
details_on_create
=
true
;
scheduler
.
templates
.
event_class
=
function
(
start
,
end
,
event
){
var
css
=
""
;
if
(
event
.
subject
)
{
// if event has subject property then special class should be assigned
css
+=
"
event_
"
+
event
.
subject
;
}
if
(
event
.
id
===
scheduler
.
getState
().
select_id
){
css
+=
"
selected
"
;
}
return
css
;
// default return
/*
Note that it is possible to create more complex checks
events with the same properties could have different CSS classes depending on the current view:
var mode = scheduler.getState().mode;
if(mode == "day"){
// custom logic here
}
else {
// custom logic here
}
*/
};
var
subject
=
[
{
key
:
''
,
label
:
'
Appointment
'
},
{
key
:
'
english
'
,
label
:
'
English
'
},
{
key
:
'
math
'
,
label
:
'
Math
'
},
{
key
:
'
science
'
,
label
:
'
Science
'
}
];
scheduler
.
config
.
lightbox
.
sections
=
[
{
name
:
"
description
"
,
height
:
43
,
map_to
:
"
text
"
,
type
:
"
textarea
"
,
focus
:
true
},
{
name
:
"
subject
"
,
height
:
20
,
type
:
"
select
"
,
options
:
subject
,
map_to
:
"
subject
"
},
{
name
:
"
time
"
,
height
:
72
,
type
:
"
time
"
,
map_to
:
"
auto
"
}
];
scheduler
.
init
(
$
(
this
.
props
.
element
).
find
(
'
#scheduler_here
'
)[
0
],
new
Date
(
2015
,
3
,
18
),
"
week
"
);
scheduler
.
parse
([
{
start_date
:
"
2015-04-18 09:00
"
,
end_date
:
"
2015-04-18 12:00
"
,
text
:
"
English lesson
"
,
subject
:
'
english
'
},
{
start_date
:
"
2015-04-20 10:00
"
,
end_date
:
"
2015-04-21 16:00
"
,
text
:
"
Math exam
"
,
subject
:
'
math
'
},
{
start_date
:
"
2015-04-21 10:00
"
,
end_date
:
"
2015-04-21 14:00
"
,
text
:
"
Science lesson
"
,
subject
:
'
science
'
},
{
start_date
:
"
2015-04-23 16:00
"
,
end_date
:
"
2015-04-23 17:00
"
,
text
:
"
English lesson
"
,
subject
:
'
english
'
},
{
start_date
:
"
2015-04-24 09:00
"
,
end_date
:
"
2015-04-24 17:00
"
,
text
:
"
Usual event
"
}
],
"
json
"
);
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
// Infinite wait, until cancelled
return
(
new
RSVP
.
defer
()).
promise
;
})
.
push
(
undefined
,
function
(
error
)
{
scheduler
.
clearAll
();
throw
error
;
});
});
}(
window
,
rJS
,
RSVP
,
jQuery
,
scheduler
,
initGadgetMixin
));
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