mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-04 15:41:37 +00:00
98 lines
3.4 KiB
TypeScript
98 lines
3.4 KiB
TypeScript
import {
|
|
startOfDay,
|
|
endOfDay,
|
|
subDays,
|
|
addDays,
|
|
endOfMonth,
|
|
isSameDay,
|
|
isSameMonth,
|
|
addHours
|
|
} from 'date-fns';
|
|
|
|
export class CalendarFakeDb
|
|
{
|
|
|
|
public static data = [
|
|
{
|
|
id : 'events',
|
|
data: [
|
|
{
|
|
start : subDays(startOfDay(new Date()), 1),
|
|
end : addDays(new Date(), 1),
|
|
title : 'A 3 day event',
|
|
allDay : true,
|
|
color : {
|
|
primary : '#ad2121',
|
|
secondary: '#FAE3E3'
|
|
},
|
|
resizable: {
|
|
beforeStart: true,
|
|
afterEnd : true
|
|
},
|
|
draggable: true,
|
|
meta : {
|
|
location: 'Los Angeles',
|
|
notes : 'Eos eu verear adipiscing, ex ornatus denique iracundia sed, quodsi oportere appellantur an pri.'
|
|
}
|
|
},
|
|
{
|
|
start : startOfDay(new Date()),
|
|
title : 'An event with no end date',
|
|
allDay : false,
|
|
color : {
|
|
primary : '#e3bc08',
|
|
secondary: '#FDF1BA'
|
|
},
|
|
resizable: {
|
|
beforeStart: true,
|
|
afterEnd : true
|
|
},
|
|
draggable: true,
|
|
meta : {
|
|
location: 'Los Angeles',
|
|
notes : 'Eos eu verear adipiscing, ex ornatus denique iracundia sed, quodsi oportere appellantur an pri.'
|
|
}
|
|
},
|
|
{
|
|
start : subDays(endOfMonth(new Date()), 3),
|
|
end : addDays(endOfMonth(new Date()), 3),
|
|
title : 'A long event that spans 2 months',
|
|
allDay : false,
|
|
color : {
|
|
primary : '#1e90ff',
|
|
secondary: '#D1E8FF'
|
|
},
|
|
resizable: {
|
|
beforeStart: true,
|
|
afterEnd : true
|
|
},
|
|
draggable: true,
|
|
meta : {
|
|
location: 'Los Angeles',
|
|
notes : 'Eos eu verear adipiscing, ex ornatus denique iracundia sed, quodsi oportere appellantur an pri.'
|
|
}
|
|
},
|
|
{
|
|
start : addHours(startOfDay(new Date()), 2),
|
|
end : new Date(),
|
|
title : 'A draggable and resizable event',
|
|
allDay : false,
|
|
color : {
|
|
primary : '#e3bc08',
|
|
secondary: '#FDF1BA'
|
|
},
|
|
resizable: {
|
|
beforeStart: true,
|
|
afterEnd : true
|
|
},
|
|
draggable: true,
|
|
meta : {
|
|
location: 'Los Angeles',
|
|
notes : 'Eos eu verear adipiscing, ex ornatus denique iracundia sed, quodsi oportere appellantur an pri.'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
];
|
|
}
|