forked from chingu-voyages/v47-tier1-team-03
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
198 lines (198 loc) · 6.71 KB
/
data.js
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
export const calendarDefault = [
{
"categoryName": "ROUTINE ACTIVITIES",
"activityTypes": [
{
"activityName": "Projects",
"Tasks": [
{
"taskName": "Update Recipes Project Backlog",
"taskDescription": "",
"days": [
"monday"
],
"checkedCb": [],
},
{
"taskName": "Update The dailyTasks sheet with the backlog tasks",
"taskDescription": "add the filtering feature to Done",
"days": [
"monday"
],
"checkedCb":[],
}
]
},
{
"activityName": "Blog Posts",
"Tasks": [
{
"taskName": "Publish The recent Blog Post Draft to hashnode",
"taskDescription": "",
"days": [
"friday"
],
"checkedCb":[],
},
{
"taskName": "Write a New headline in a Blog Post Draft",
"taskDescription": "",
"days": [
"saturday",
"sunday",
"monday",
"tuesday",
"wednesday",
"thursday",
"friday"
],
"checkedCb":[],
}
]
}
]
},
{
"categoryName": "STUDYING",
"activityTypes": [
{
"activityName": "Node Js Course",
"Tasks": [
{
"taskName": "Plan The Node Js Course Progress By Month",
"taskDescription": "Set Up A Plan For The Next Month Of Node Js Learning",
"days": [
"1"
],
"checkedCb":[],
},
{
"taskName": "Study The First Node Js Lecture",
"taskDescription": "",
"days": [
"2"
],
"checkedCb":[],
}
]
},
{
"activityName": "MongoDB",
"Tasks": [
{
"taskName": "Plan The MongoDB Course Progress By Month",
"taskDescription": "Set Up A Plan For The Next Month Of Node Js Learning",
"days": [
"30"
],
"checkedCb":[],
},
{
"taskName": "Study The First MongoDB Lecture",
"taskDescription": "",
"days": [
"15"
],
"checkedCb":[],
}
]
}
]
},
{
"categoryName": "DAILY TASKS PROJECT",
"activityTypes": [
{
"activityName": "Backlog",
"Tasks": [
{
"taskName": "Add The New Features list",
"taskDescription": "",
"days": [
"monday"
],
"checkedCb":[],
},
{
"taskName": "Add The New PRs To InReview",
"taskDescription": "",
"days": [
"7"
],
"checkedCb":[],
}
]
},
{
"activityName": "Coding",
"Tasks": [
{
"taskName": "Work On The Sidebar",
"taskDescription": "Add The Sections Links",
"days": [
"thursday"
],
"checkedCb":[],
},
{
"taskName": "Refactor The Filtering Feature Code",
"taskDescription": "",
"days": [
"friday"
],
"checkedCb":[],
}
]
}
]
},
{
"categoryName": "CHINGU",
"activityTypes": [
{
"activityName": "Voyage",
"Tasks": [
{
"taskName": "Conduct The Project Planning Meeting",
"taskDescription": "Conduct The Project Planning Meeting To Discuss Our Ideas",
"days": [
"monday"
],
"checkedCb":[],
},
{
"taskName": "Create The UI/UX Design For The DailyTasks Project",
"taskDescription": "Create The UI/UX Design For The DailyTasks Project Based On The Team Discussion",
"days": [
"monday",
"tuesday",
"wednesday"
],
"checkedCb":[],
}
]
},
{
"activityName": "Pair Programming",
"Tasks": [
{
"taskName": "Create When2Meet Link",
"taskDescription": "Create When2Meet Link To Introduce Yourselves",
"days": [
"thursday"
],
"checkedCb":[],
},
{
"taskName": "Attend The Introduction Meeting With Someone",
"taskDescription": "",
"days": [
"thursday"
],
"checkedCb":[],
}
]
}
]
}
]