summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/api/eventData.js
diff options
context:
space:
mode:
authorgabrhr <[email protected]>2022-04-20 10:19:29 -0500
committergabrhr <[email protected]>2022-04-20 10:19:29 -0500
commite13e630cd6e4fc0b1ff92098a28a770794c7bb9a (patch)
treee68ad2f947d1b3ec454529b35f37ca2f223e5431 /front/odiparpack/app/api/eventData.js
parent457816ac1129fcc6019d2fc795b6693ee6776d59 (diff)
downloadDP1_project-e13e630cd6e4fc0b1ff92098a28a770794c7bb9a.tar.gz
DP1_project-e13e630cd6e4fc0b1ff92098a28a770794c7bb9a.tar.bz2
DP1_project-e13e630cd6e4fc0b1ff92098a28a770794c7bb9a.zip
AƱadir plantilla
Base para front
Diffstat (limited to 'front/odiparpack/app/api/eventData.js')
-rw-r--r--front/odiparpack/app/api/eventData.js117
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;