-
Notifications
You must be signed in to change notification settings - Fork 3
/
calendar_2021.ts
341 lines (283 loc) · 7.74 KB
/
calendar_2021.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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// https://uc.whu.edu.cn/xl/a2021_2022nxl.htm
// https://www.whu.edu.cn/info/1118/18862.htm
// http://uc.whu.edu.cn/info/1039/12145.htm
import { createEvents, EventAttributes } from 'ics';
import { writeFileSync } from 'fs';
import './utils.js';
let calendar_name = '武汉大学 2021 - 2022 学年校历';
let events : EventAttributes[] = [{
title: '所有本科生和在籍研究生开始上课',
description: '时间调整见:https://www.whu.edu.cn/info/1118/18862.htm',
busyStatus: 'FREE',
start: [2021, 9, 6],
end: [2021, 9, 7],
calName: calendar_name
}]
events.push({
title: '本科新生注册',
description: '请仔细对照录取通知书上的要求准备好材料。时间调整见:https://www.whu.edu.cn/info/1118/18862.htm',
busyStatus: 'FREE',
// start: [2021, 8, 19],
// end: [2021, 8, 20]
start: [2021, 9, 2],
end: [2021, 9, 3]
})
events.push({
title: '本科生新生入学教育',
description: '时间调整见:https://www.whu.edu.cn/info/1118/18862.htm',
busyStatus: 'FREE',
// start: [2021, 8, 20],
// end: [2021, 8, 21]
start: [2021, 9, 3],
end: [2021, 9, 6]
})
// events.push({
// title: '军训',
// description: '',
// busyStatus: 'FREE',
// start: [2021, 8, 21],
// end: [2021, 9, 5]
// })
events.push({
title: '研究生返校注册',
description: '',
busyStatus: 'FREE',
start: [2021, 9, 3],
end: [2021, 9, 4]
})
events.push({
title: '本科生返校注册',
description: '',
busyStatus: 'FREE',
start: [2021, 9, 5],
end: [2021, 9, 6]
})
events.push({
title: '研究生新生注册',
description: '请仔细对照录取通知书上的要求准备好材料。',
busyStatus: 'FREE',
start: [2021, 9, 11],
end: [2021, 9, 12]
})
events.push({
title: '研究生新生入学教育',
description: '',
busyStatus: 'FREE',
start: [2021, 9, 12],
end: [2021, 9, 13]
})
events.push({
title: '研究生新生开始上课',
description: '',
busyStatus: 'FREE',
start: [2021, 9, 13],
end: [2021, 9, 14]
})
////////////////////////////////////////////////////////////////
/// 2021-2022学年第一学期于2021年9月5日至2022年1月8日,教学周共18周。
for (let i = 0; i < 18; i++) {
let weekStart = new Date(2021, 8, 5).addWeek(i);
let weekEnd = new Date(2021, 8, 5).addWeek(i + 1);
events.push({
title: `[1] 第 ${i + 1} 周`,
description: '',
busyStatus: 'FREE',
start: weekStart.convertToICSDate(),
end: weekEnd.convertToICSDate()
})
}
////////////////////////////////////////////////////////////////
events.push({
title: '中秋节假期',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 9, 21],
end: [2021, 9, 22]
})
events.push({
title: '[中秋调休] 第 3 周周一',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 9, 18],
end: [2021, 9, 19]
})
events.push({
title: '[中秋调休] 第 2 周周六',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 9, 20],
end: [2021, 9, 21]
})
events.push({
title: '国庆节假期',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 10, 1],
end: [2021, 10, 4]
})
events.push({
title: '[国庆调休] 第 5 周周三',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 9, 26],
end: [2021, 9, 27]
})
events.push({
title: '[国庆调休] 第 4 周周日',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 10, 6],
end: [2021, 10, 7]
})
events.push({
title: '[国庆调休] 第 4 周周六',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 10, 4],
end: [2021, 10, 5]
})
events.push({
title: '[国庆调休] 第 5 周周日',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 10, 5],
end: [2021, 10, 6]
})
events.push({
title: '[国庆调休] 第 5 周周四',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 10, 9],
end: [2021, 10, 10]
})
events.push({
title: '[国庆调休] 第 5 周周六',
description: '时间调整见:http://uc.whu.edu.cn/info/1039/12145.htm',
busyStatus: 'FREE',
start: [2021, 10, 7],
end: [2021, 10, 8]
})
events.push({
title: '校运会',
description: '',
busyStatus: 'FREE',
start: [2021, 11, 5],
end: [2021, 11, 7]
})
events.push({
title: '元旦假期',
description: '',
busyStatus: 'FREE',
start: [2022, 1, 1],
end: [2022, 1, 2]
})
events.push({
title: '春节假期',
description: '',
busyStatus: 'FREE',
start: [2022, 2, 1],
end: [2022, 2, 2]
})
events.push({
title: '考试周',
description: '',
busyStatus: 'FREE',
start: [2021, 12, 26],
end: [2022, 1, 9]
})
events.push({
title: '寒假',
description: '教职工寒假执行学校通知。',
busyStatus: 'FREE',
start: [2022, 1, 9],
end: [2022, 2, 13]
})
////////////////////////////////////////////////////////////////
/// 2021-2022学年第二学期于2022年2月13日至2022年6月18日,教学周共18周。
for (let i = 0; i < 18; i++) {
let weekStart = new Date(2022, 1, 13).addWeek(i);
let weekEnd = new Date(2022, 1, 13).addWeek(i + 1);
events.push({
title: `[2] 第 ${i + 1} 周`,
description: '',
busyStatus: 'FREE',
start: weekStart.convertToICSDate(),
end: weekEnd.convertToICSDate()
})
}
////////////////////////////////////////////////////////////////
events.push({
title: '第二学期返校注册',
description: '',
busyStatus: 'FREE',
start: [2022, 2, 13],
end: [2022, 2, 14]
})
events.push({
title: '第二学期开始上课',
description: '',
busyStatus: 'FREE',
start: [2022, 2, 14],
end: [2022, 2, 15]
})
events.push({
title: '清明节',
description: '调休细节日后更新',
busyStatus: 'FREE',
start: [2022, 4, 5],
end: [2022, 4, 6]
})
events.push({
title: '劳动节',
description: '调休细节日后更新',
busyStatus: 'FREE',
start: [2022, 5, 1],
end: [2022, 5, 2]
})
events.push({
title: '端午节',
description: '调休细节日后更新',
busyStatus: 'FREE',
start: [2022, 6, 3],
end: [2022, 6, 4]
})
events.push({
title: '第二学期考试周',
description: '',
busyStatus: 'FREE',
start: [2022, 6, 5],
end: [2022, 6, 19]
})
////////////////////////////////////////////////////////////////
for (let i = 0; i < 4; i++) {
let weekStart = new Date(2022, 5, 19).addWeek(i);
let weekEnd = new Date(2022, 5, 19).addWeek(i + 1);
events.push({
title: `[3] 第 ${i + 1} 周`,
description: '',
busyStatus: 'FREE',
start: weekStart.convertToICSDate(),
end: weekEnd.convertToICSDate()
})
}
////////////////////////////////////////////////////////////////
// events.push({
// title: '第三学期',
// description: '',
// busyStatus: 'FREE',
// start: [2021, 6, 19],
// end: [2022, 7, 17]
// })
events.push({
title: '暑假',
description: '教职工暑假执行学校通知',
busyStatus: 'FREE',
start: [2022, 7, 17],
end: [2022, 9, 4]
})
createEvents(events, async (error, value) => {
if (error) {
console.log(error);
}
writeFileSync(`${__dirname}/${calendar_name}.ics`, value);
})