|
1 | 1 | import type { Category } from '@/types/common' |
2 | | -import type { RequestedListData, RequestHistoryListData } from '@/types/manager' |
| 2 | +import type { RequestedListData, RequestHistoryListData, TaskCardList } from '@/types/manager' |
3 | 3 | import type { MyRequestListData } from '@/types/user' |
4 | 4 |
|
5 | 5 | export const DUMMY_CATEGORY_LIST: Category[] = [ |
@@ -745,3 +745,54 @@ export const DUMMY_REQUEST_HISTORY_LIST_DATA: RequestHistoryListData[] = [ |
745 | 745 | finishedAt: '2025.01.11' |
746 | 746 | } |
747 | 747 | ] |
| 748 | + |
| 749 | +export const DUMMY_TASK_CARD_LIST: TaskCardList = { |
| 750 | + tasksInProgress: [ |
| 751 | + { |
| 752 | + taskId: 0, |
| 753 | + taskCode: 'string', |
| 754 | + mainCategoryName: 'string', |
| 755 | + categoryName: 'string', |
| 756 | + title: 'string', |
| 757 | + requesterNickName: 'string', |
| 758 | + requesterImageUrl: 'string', |
| 759 | + requesterDepartment: 'string', |
| 760 | + processorOrder: 0, |
| 761 | + taskStatus: '진행 중', |
| 762 | + createdAt: '2025-01-28T09:34:00.128Z' |
| 763 | + } |
| 764 | + ], |
| 765 | + tasksPendingComplete: [ |
| 766 | + { |
| 767 | + taskId: 0, |
| 768 | + taskCode: 'string', |
| 769 | + mainCategoryName: 'string', |
| 770 | + categoryName: 'string', |
| 771 | + title: 'string', |
| 772 | + requesterNickName: 'string', |
| 773 | + requesterImageUrl: 'string', |
| 774 | + requesterDepartment: 'string', |
| 775 | + processorOrder: 0, |
| 776 | + taskStatus: '검토 중', |
| 777 | + createdAt: '2025-01-28T09:34:00.128Z' |
| 778 | + } |
| 779 | + ], |
| 780 | + tasksCompleted: [ |
| 781 | + { |
| 782 | + taskId: 0, |
| 783 | + taskCode: 'string', |
| 784 | + mainCategoryName: 'string', |
| 785 | + categoryName: 'string', |
| 786 | + title: 'string', |
| 787 | + requesterNickName: 'string', |
| 788 | + requesterImageUrl: 'string', |
| 789 | + requesterDepartment: 'string', |
| 790 | + processorOrder: 0, |
| 791 | + taskStatus: '완료', |
| 792 | + createdAt: '2025-01-28T09:34:00.128Z' |
| 793 | + } |
| 794 | + ], |
| 795 | + hasNext: true, |
| 796 | + isFirst: true, |
| 797 | + isLast: true |
| 798 | +} |
0 commit comments