-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1aa055d
commit 58dea02
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import { DocumentType, Role, type Document, type User } from '$lib/types'; | ||
import dayjs from 'dayjs'; | ||
import buddhistEra from 'dayjs/plugin/buddhistEra'; | ||
|
||
dayjs.extend(buddhistEra); | ||
export // * mock data | ||
const created_at_1 = '2022-01-01'; | ||
const created_at_2 = '2023-01-01'; | ||
const created_at_3 = '2024-01-01'; | ||
const created_at_4 = '2025-01-01'; | ||
const updated_at = '2030-02-01'; | ||
|
||
const sgcu_admin: User = { | ||
id: '6000000000', | ||
first_name: 'Admin', | ||
last_name: 'Admin', | ||
role: Role.SGCU_SUPERADMIN, | ||
created_at: created_at_1, | ||
updated_at | ||
}; | ||
const sccu_admin: User = { | ||
id: '6000000001', | ||
first_name: 'Admin', | ||
last_name: 'Admin', | ||
role: Role.SCCU_SUPERADMIN, | ||
created_at: created_at_2, | ||
updated_at | ||
}; | ||
|
||
export const documents: Document[] = [ | ||
{ | ||
id: 'DOC-09649054', | ||
title: 'เอกสารลับจากดัมเบิลดอร์', | ||
content: 'เนื้อหาของเอกสารลับจากดัมเบิลดอร์', | ||
user_id: sgcu_admin.id, | ||
type_id: DocumentType.ANNOUNCEMENT, | ||
created_at: created_at_3, | ||
updated_at, | ||
author: sgcu_admin | ||
}, | ||
{ | ||
id: 'DOC-09649055', | ||
title: 'ประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต 00', | ||
content: 'เนื้อหาของประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต', | ||
user_id: sccu_admin.id, | ||
type_id: DocumentType.ANNOUNCEMENT, | ||
created_at: created_at_4, | ||
updated_at, | ||
author: sccu_admin | ||
}, | ||
{ | ||
id: 'DOC-09649056', | ||
title: 'ประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต 01', | ||
content: 'เนื้อหาของประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต', | ||
user_id: sgcu_admin.id, | ||
type_id: DocumentType.ANNOUNCEMENT, | ||
created_at: created_at_4, | ||
updated_at, | ||
author: sgcu_admin | ||
}, | ||
{ | ||
id: 'DOC-09649056', | ||
title: 'ประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต 02', | ||
content: 'เนื้อหาของประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต', | ||
user_id: sccu_admin.id, | ||
type_id: DocumentType.BUDGET, | ||
created_at: created_at_1, | ||
updated_at, | ||
author: sccu_admin | ||
}, | ||
{ | ||
id: 'DOC-09649058', | ||
title: 'ประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต 03', | ||
content: 'เนื้อหาของประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต', | ||
user_id: sccu_admin.id, | ||
type_id: DocumentType.STATISTIC, | ||
created_at: created_at_1, | ||
updated_at, | ||
author: sgcu_admin | ||
}, | ||
{ | ||
id: 'DOC-09649060', | ||
title: 'ประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต 04', | ||
content: 'เนื้อหาของประกาศรับสมัครคณะกรรมาธิการวิสามัญพิจารณางบประมาณสโมสรนิสิต', | ||
user_id: sccu_admin.id, | ||
type_id: DocumentType.STATISTIC, | ||
created_at: created_at_1, | ||
updated_at, | ||
author: sgcu_admin | ||
} | ||
]; |