From dd047c0bcf59cf831b9c5ebab2cb673619fb94aa Mon Sep 17 00:00:00 2001 From: Andre Henriques Date: Thu, 17 Oct 2024 19:01:11 +0100 Subject: [PATCH] feat: updates to the timeline --- site/src/lib/ApplicationsStore.svelte.ts | 9 ++-- site/src/routes/AppliyedList.svelte | 5 +- site/src/routes/graphs/+page.svelte | 6 +++ site/src/routes/work-area/Timeline.svelte | 59 +++++++++++++++++----- site/src/routes/work-area/WorkArea.svelte | 60 ++++++++++++++++------- 5 files changed, 104 insertions(+), 35 deletions(-) diff --git a/site/src/lib/ApplicationsStore.svelte.ts b/site/src/lib/ApplicationsStore.svelte.ts index 90d3b5d..e5124d8 100644 --- a/site/src/lib/ApplicationsStore.svelte.ts +++ b/site/src/lib/ApplicationsStore.svelte.ts @@ -12,7 +12,8 @@ export const ApplicationStatus = Object.freeze({ Expired: 5, TasksToDo: 6, LinkedApplication: 7, - InterviewStep1: 8 + InterviewStep1: 8, + InterviewStep2: 9 }); export const ApplicationStatusIconMaping: Record, string> = Object.freeze({ @@ -24,7 +25,8 @@ export const ApplicationStatusIconMaping: Record, string> = Object.freeze({ @@ -36,7 +38,8 @@ export const ApplicationStatusMaping: Record, s 5: 'Expired', 6: 'Tasks To Do', 7: 'Linked Application', - 8: 'Interview 1' + 8: 'Interview 1', + 9: 'Interview 2' }); export type View = { diff --git a/site/src/routes/AppliyedList.svelte b/site/src/routes/AppliyedList.svelte index 92412c4..bceebe9 100644 --- a/site/src/routes/AppliyedList.svelte +++ b/site/src/routes/AppliyedList.svelte @@ -1,5 +1,6 @@