build ok,

This commit is contained in:
louiscklaw
2025-04-14 09:26:24 +08:00
commit 6c931c1fe8
770 changed files with 63959 additions and 0 deletions

View File

@@ -0,0 +1,96 @@
import * as React from 'react';
import type { Metadata } from 'next';
import Box from '@mui/material/Box';
import { config } from '@/config';
import { dayjs } from '@/lib/dayjs';
import { CalendarProvider } from '@/components/dashboard/calendar/calendar-context';
import { CalendarView } from '@/components/dashboard/calendar/calendar-view';
import type { Event, ViewMode } from '@/components/dashboard/calendar/types';
export const metadata = { title: `Calendar | Dashboard | ${config.site.name}` } satisfies Metadata;
const events = [
{
id: 'EV-007',
title: 'Sign contract',
description: 'Discuss about the new partnership',
start: dayjs().subtract(6, 'day').set('hour', 17).set('minute', 30).toDate(),
end: dayjs().subtract(6, 'day').set('hour', 19).set('minute', 0).toDate(),
allDay: false,
},
{
id: 'EV-006',
title: 'Lunch meeting',
description: 'Meeting with the client',
start: dayjs().add(2, 'day').set('hour', 12).set('minute', 0).toDate(),
end: dayjs().add(2, 'day').set('hour', 15).set('minute', 30).toDate(),
allDay: false,
},
{
id: 'EV-005',
title: 'Scrum meeting',
description: 'Discuss about the new project',
start: dayjs().add(5, 'day').set('hour', 8).set('minute', 0).toDate(),
end: dayjs().add(5, 'day').set('hour', 12).set('minute', 0).toDate(),
allDay: false,
},
{
id: 'EV-004',
title: 'Meet the team',
description: 'Introduction to the new team members',
start: dayjs().subtract(11, 'day').startOf('day').toDate(),
end: dayjs().subtract(11, 'day').endOf('day').toDate(),
allDay: true,
},
{
id: 'EV-003',
title: 'Fire John',
description: 'Sorry, John!',
start: dayjs().add(3, 'day').set('hour', 7).set('minute', 30).toDate(),
end: dayjs().add(3, 'day').set('hour', 7).set('minute', 31).toDate(),
allDay: false,
priority: 'high',
},
{
id: 'EV-002',
title: 'Design meeting',
description: 'Plan the new design for the landing page',
start: dayjs().subtract(6, 'day').set('hour', 9).set('minute', 0).toDate(),
end: dayjs().subtract(6, 'day').set('hour', 9).set('minute', 30).toDate(),
allDay: false,
priority: 'medium',
},
{
id: 'EV-001',
title: 'HR meeting',
description: 'Discuss about the new open positions',
start: dayjs().set('hour', 15).set('minute', 30).toDate(),
end: dayjs().set('hour', 17).set('minute', 30).toDate(),
allDay: false,
priority: 'medium',
},
] satisfies Event[];
interface PageProps {
searchParams: { view?: ViewMode };
}
export default function Page({ searchParams }: PageProps): React.JSX.Element {
const { view = 'dayGridMonth' } = searchParams;
return (
<Box
sx={{
maxWidth: 'var(--Content-maxWidth)',
m: 'var(--Content-margin)',
p: 'var(--Content-padding)',
width: 'var(--Content-width)',
}}
>
<CalendarProvider events={events}>
<CalendarView view={view} />
</CalendarProvider>
</Box>
);
}