-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.ts
115 lines (110 loc) · 1.85 KB
/
data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
export interface ITask {
id: number;
title: string;
project: number;
status: string;
order: number;
}
export interface IProject {
id: number;
title: string;
}
export interface IColumn {
name: string;
status: string;
}
export const columns: IColumn[] = [
{ name: "Todo", status: "todo" },
{ name: "In Progress", status: "in-progress" },
{ name: "Done", status: "done" },
];
export const projects: IProject[] = [
{ id: 1, title: "Website Redesign" },
{ id: 2, title: "Mobile App Development" },
];
export const initialTasks: ITask[] = [
{
id: 1,
title: "Implement login functionality",
project: 1,
status: "todo",
order: 0,
},
{
id: 2,
title: "Refactor API integration",
project: 2,
status: "todo",
order: 2,
},
{
id: 3,
title: "Fix bug in data validation",
project: 1,
status: "in-progress",
order: 2,
},
{
id: 4,
title: "Add new feature",
project: 2,
status: "in-progress",
order: 1,
},
{
id: 5,
title: "Write unit tests",
project: 1,
status: "done",
order: 0,
},
{
id: 6,
title: "Optimize performance",
project: 2,
status: "done",
order: 1,
},
{
id: 7,
title: "Design user interface",
project: 1,
status: "todo",
order: 1,
},
{
id: 8,
title: "Implement data caching",
project: 2,
status: "in-progress",
order: 0,
},
{
id: 9,
title: "Deploy application to production",
project: 1,
status: "done",
order: 2,
},
{
id: 10,
title: "Write documentation",
project: 2,
status: "todo",
order: 0,
},
{
id: 11,
title: "Fix styling issues",
project: 1,
status: "in-progress",
order: 1,
},
{
id: 12,
title: "Add internationalization support",
project: 2,
status: "done",
order: 2,
},
];