Add CalDav routes and methods, with mock data

This commit is contained in:
Bruno Bernardino
2024-03-18 19:18:29 +00:00
parent 3c66eec301
commit 062c0d3d09
11 changed files with 1008 additions and 115 deletions

View File

@@ -1,107 +1,9 @@
import { Handlers, PageProps } from 'fresh/server.ts';
import { Calendar, CalendarEvent, FreshContextState } from '/lib/types.ts';
// import { getCalendars, getCalendarEvents } from '/lib/data/calendar.ts';
import { getCalendarEvents, getCalendars } from '/lib/data/calendar.ts';
import MainCalendar from '/islands/calendar/MainCalendar.tsx';
async function getCalendars(userId: string): Promise<Pick<Calendar, 'id' | 'name' | 'color' | 'is_visible'>[]> {
// TODO: Remove this
await new Promise((resolve) => setTimeout(() => resolve(true), 1));
return [
{
id: 'family-1',
name: 'Family',
color: 'bg-purple-500',
is_visible: true,
},
{
id: 'personal-1',
name: 'Personal',
color: 'bg-sky-600',
is_visible: true,
},
{
id: 'house-chores-1',
name: 'House Chores',
color: 'bg-red-700',
is_visible: true,
},
];
}
async function getCalendarEvents(userId: string, calendarIds: string[]): Promise<CalendarEvent[]> {
// TODO: Remove this
await new Promise((resolve) => setTimeout(() => resolve(true), 1));
return [
{
id: 'event-1',
user_id: userId,
calendar_id: 'family-1',
revision: 'fake-rev',
title: 'Dentist',
start_date: new Date('2024-03-18T14:00:00.000Z'),
end_date: new Date('2024-03-18T15:00:00.000Z'),
is_all_day: false,
status: 'scheduled',
extra: {
visibility: 'default',
},
updated_at: new Date(),
created_at: new Date(),
},
{
id: 'event-2',
user_id: userId,
calendar_id: 'family-1',
revision: 'fake-rev',
title: 'Dermatologist',
start_date: new Date('2024-03-18T16:30:00.000Z'),
end_date: new Date('2024-03-18T17:30:00.000Z'),
is_all_day: false,
status: 'scheduled',
extra: {
visibility: 'default',
},
updated_at: new Date(),
created_at: new Date(),
},
{
id: 'event-3',
user_id: userId,
calendar_id: 'house-chores-1',
revision: 'fake-rev',
title: 'Vacuum',
start_date: new Date('2024-03-19T15:00:00.000Z'),
end_date: new Date('2024-03-19T16:00:00.000Z'),
is_all_day: false,
status: 'scheduled',
extra: {
visibility: 'default',
},
updated_at: new Date(),
created_at: new Date(),
},
{
id: 'event-4',
user_id: userId,
calendar_id: 'personal-1',
revision: 'fake-rev',
title: 'Schedule server updates',
start_date: new Date('2024-03-20T09:00:00.000Z'),
end_date: new Date('2024-03-20T21:00:00.000Z'),
is_all_day: true,
status: 'scheduled',
extra: {
visibility: 'default',
},
updated_at: new Date(),
created_at: new Date(),
},
];
}
interface Data {
userCalendars: Pick<Calendar, 'id' | 'name' | 'color' | 'is_visible'>[];
userCalendarEvents: CalendarEvent[];