diff options
Diffstat (limited to 'front/odiparpack/app/api/eventData.js')
| -rw-r--r-- | front/odiparpack/app/api/eventData.js | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/front/odiparpack/app/api/eventData.js b/front/odiparpack/app/api/eventData.js new file mode 100644 index 0000000..f6e5f1d --- /dev/null +++ b/front/odiparpack/app/api/eventData.js @@ -0,0 +1,117 @@ +const eventData = [ + { + id: 0, + title: 'All Day Event very long title', + allDay: true, + start: new Date(2015, 3, 0), + end: new Date(2015, 3, 1), + hexColor: 'FFCDD2' + }, + { + id: 1, + title: 'Long Event', + start: new Date(2015, 3, 7, 0, 0, 0), + end: new Date(2015, 3, 10, 0, 1, 0), + hexColor: 'FFCDD2' + }, + + { + id: 2, + title: 'DTS STARTS', + start: new Date(2016, 2, 13, 0, 0, 0), + end: new Date(2016, 2, 20, 0, 0, 0), + hexColor: 'FFCDD2' + }, + + { + id: 3, + title: 'DTS ENDS', + start: new Date(2016, 10, 6, 0, 0, 0), + end: new Date(2016, 10, 13, 0, 0, 0), + hexColor: 'E1BEE7' + }, + + { + id: 4, + title: 'Some Event', + start: new Date(2015, 3, 9, 0, 0, 0), + end: new Date(2015, 3, 9, 0, 0, 0), + hexColor: 'E1BEE7' + }, + { + id: 5, + title: 'Conference', + start: new Date(2015, 3, 11), + end: new Date(2015, 3, 13), + desc: 'Big conference for important people', + hexColor: 'BBDEFB' + }, + { + id: 6, + title: 'Meeting', + start: new Date(2015, 3, 12, 10, 30, 0, 0), + end: new Date(2015, 3, 12, 12, 30, 0, 0), + desc: 'Pre-meeting meeting, to prepare for the meeting', + hexColor: 'BBDEFB' + }, + { + id: 7, + title: 'Lunch', + start: new Date(2015, 3, 12, 12, 0, 0, 0), + end: new Date(2015, 3, 12, 13, 0, 0, 0), + desc: 'Power lunch', + hexColor: 'BBDEFB' + }, + { + id: 8, + title: 'Meeting', + start: new Date(2015, 3, 12, 14, 0, 0, 0), + end: new Date(2015, 3, 12, 15, 0, 0, 0), + hexColor: 'B2EBF2' + }, + { + id: 9, + title: 'Happy Hour', + start: new Date(2015, 3, 12, 17, 0, 0, 0), + end: new Date(2015, 3, 12, 17, 30, 0, 0), + desc: 'Most important meal of the day', + hexColor: 'B2EBF2' + }, + { + id: 10, + title: 'Dinner', + start: new Date(2015, 3, 12, 20, 0, 0, 0), + end: new Date(2015, 3, 12, 21, 0, 0, 0), + hexColor: 'B2EBF2' + }, + { + id: 11, + title: 'Birthday Party', + start: new Date(2015, 3, 13, 7, 0, 0), + end: new Date(2015, 3, 13, 10, 30, 0), + hexColor: 'C8E6C9' + }, + { + id: 12, + title: 'Late Night Event', + start: new Date(2015, 3, 17, 19, 30, 0), + end: new Date(2015, 3, 18, 2, 0, 0), + hexColor: 'C8E6C9' + }, + { + id: 13, + title: 'Multi-day Event', + start: new Date(2015, 3, 20, 19, 30, 0), + end: new Date(2015, 3, 22, 2, 0, 0), + hexColor: 'FFECB3' + }, + { + id: 14, + title: 'Today', + start: new Date(new Date().setHours(new Date().getHours() - 3)), + end: new Date(new Date().setHours(new Date().getHours() + 3)), + hexColor: 'FFECB3' + }, +]; + +export default eventData; |
