-
Notifications
You must be signed in to change notification settings - Fork 18
/
dist.js
636 lines (536 loc) · 31.6 KB
/
dist.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
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/*
datepickr 3.0 - pick your date not your nose
https://github.com/joshsalverda/datepickr
Copyright © 2014 Josh Salverda <josh.salverda@gmail.com>
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://www.wtfpl.net/ for more details.
*/
var datepickr=function(d,c){var f,h,a=[],k;datepickr.prototype=datepickr.init.prototype;h=function(a){a._datepickr&&a._datepickr.destroy();a._datepickr=new datepickr.init(a,c);return a._datepickr};if(d.nodeName)return h(d);f=datepickr.prototype.querySelectorAll(d);if(1===f.length)return h(f[0]);for(k=0;k<f.length;k++)a.push(h(f[k]));return a};
datepickr.init=function(d,c){var f,h,a=this,k={dateFormat:"F j, Y",altFormat:null,altInput:null,minDate:null,maxDate:null,shorthandCurrentMonth:!1},l=document.createElement("div"),t=document.createElement("span"),u=document.createElement("table"),v=document.createElement("tbody"),g,m=new Date,B,n,p,w,C,r,x,D,E,s,F,G,y,H,z,A,I;l.className="datepickr-calendar";t.className="datepickr-current-month";c=c||{};B=function(){g=document.createElement("div");g.className="datepickr-wrapper";a.element.parentNode.insertBefore(g,
a.element);g.appendChild(a.element)};f={year:function(){return m.getFullYear()},month:{integer:function(){return m.getMonth()},string:function(a){var e=m.getMonth();return p(e,a)}},day:function(){return m.getDate()}};h={string:function(){return p(a.currentMonthView,a.config.shorthandCurrentMonth)},numDays:function(){return 1===a.currentMonthView&&(0===a.currentYearView%4&&0!==a.currentYearView%100||0===a.currentYearView%400)?29:a.l10n.daysInMonth[a.currentMonthView]}};n=function(b,e){var q="",d=new Date(e),
c={d:function(){var a=c.j();return 10>a?"0"+a:a},D:function(){return a.l10n.weekdays.shorthand[c.w()]},j:function(){return d.getDate()},l:function(){return a.l10n.weekdays.longhand[c.w()]},w:function(){return d.getDay()},F:function(){return p(c.n()-1,!1)},m:function(){var a=c.n();return 10>a?"0"+a:a},M:function(){return p(c.n()-1,!0)},n:function(){return d.getMonth()+1},U:function(){return d.getTime()/1E3},y:function(){return String(c.Y()).substring(2)},Y:function(){return d.getFullYear()}},f=b.split("");
a.forEach(f,function(a,b){c[a]&&"\\"!==f[b-1]?q+=c[a]():"\\"!==a&&(q+=a)});return q};p=function(b,e){return!0===e?a.l10n.months.shorthand[b]:a.l10n.months.longhand[b]};w=function(b,e,c,d){return b===d&&a.currentMonthView===e&&a.currentYearView===c};C=function(){var b=document.createElement("thead"),e=a.l10n.firstDayOfWeek,c=a.l10n.weekdays.shorthand;0<e&&e<c.length&&(c=[].concat(c.splice(e,c.length),c.splice(0,e)));b.innerHTML="<tr><th>"+c.join("</th><th>")+"</th></tr>";u.appendChild(b)};r=function(){var b=
(new Date(a.currentYearView,a.currentMonthView,1)).getDay(),c=h.numDays(),d=document.createDocumentFragment(),g=document.createElement("tr"),k,l="",p="",m="",n,b=b-a.l10n.firstDayOfWeek;0>b&&(b+=7);k=b;v.innerHTML="";0<b&&(g.innerHTML+='<td colspan="'+b+'"> </td>');for(b=1;b<=c;b++){7===k&&(d.appendChild(g),g=document.createElement("tr"),k=0);l=w(f.day(),f.month.integer(),f.year(),b)?" today":"";a.selectedDate&&(p=w(a.selectedDate.day,a.selectedDate.month,a.selectedDate.year,b)?" selected":"");
if(a.config.minDate||a.config.maxDate)n=(new Date(a.currentYearView,a.currentMonthView,b)).getTime(),m="",a.config.minDate&&n<a.config.minDate&&(m=" disabled"),a.config.maxDate&&n>a.config.maxDate&&(m=" disabled");g.innerHTML+='<td class="'+l+p+m+'"><span class="datepickr-day">'+b+"</span></td>";k++}d.appendChild(g);v.appendChild(d)};x=function(){t.innerHTML=h.string()+" "+a.currentYearView};D=function(){var a=document.createElement("div");a.className="datepickr-months";a.innerHTML='<span class="datepickr-prev-month"><</span><span class="datepickr-next-month">></span>';
a.appendChild(t);x();l.appendChild(a)};E=function(){0>a.currentMonthView&&(a.currentYearView--,a.currentMonthView=11);11<a.currentMonthView&&(a.currentYearView++,a.currentMonthView=0)};s=function(b){if(b.target!==a.element&&b.target!==g&&(b=b.target.parentNode,b!==g))for(;b!==g;)if(b=b.parentNode,null===b){A();break}};F=function(b){b=b.target;var c=b.className;c&&("datepickr-prev-month"===c||"datepickr-next-month"===c?("datepickr-prev-month"===c?a.currentMonthView--:a.currentMonthView++,E(),x(),r()):
"datepickr-day"!==c||a.hasClass(b.parentNode,"disabled")||(a.selectedDate={day:parseInt(b.innerHTML,10),month:a.currentMonthView,year:a.currentYearView},b=(new Date(a.currentYearView,a.currentMonthView,a.selectedDate.day)).getTime(),a.config.altInput&&(a.config.altInput.value=a.config.altFormat?n(a.config.altFormat,b):n(a.config.dateFormat,b)),a.element.value=n(a.config.dateFormat,b),A(),r()))};G=function(){D();C();r();u.appendChild(v);l.appendChild(u);g.appendChild(l)};y=function(){return"INPUT"===
a.element.nodeName?"focus":"click"};H=function(){a.addEventListener(a.element,y(),z);a.addEventListener(l,"click",F)};z=function(){a.addEventListener(document,"click",s);a.addClass(g,"open")};A=function(){a.removeEventListener(document,"click",s);a.removeClass(g,"open")};I=function(){var b,c;a.removeEventListener(document,"click",s);a.removeEventListener(a.element,y(),z);b=a.element.parentNode;b.removeChild(l);c=b.removeChild(a.element);b.parentNode.replaceChild(c,b)};(function(){var b,e;a.config=
{};a.destroy=I;for(b in k)a.config[b]=c[b]||k[b];a.element=d;a.element.value&&(e=Date.parse(a.element.value));e&&!isNaN(e)?(e=new Date(e),a.selectedDate={day:e.getDate(),month:e.getMonth(),year:e.getFullYear()},a.currentYearView=a.selectedDate.year,a.currentMonthView=a.selectedDate.month,a.currentDayView=a.selectedDate.day):(a.selectedDate=null,a.currentYearView=f.year(),a.currentMonthView=f.month.integer(),a.currentDayView=f.day());B();G();H()})();return a};
datepickr.init.prototype={hasClass:function(d,c){return d.classList.contains(c)},addClass:function(d,c){d.classList.add(c)},removeClass:function(d,c){d.classList.remove(c)},forEach:function(d,c){[].forEach.call(d,c)},querySelectorAll:document.querySelectorAll.bind(document),isArray:Array.isArray,addEventListener:function(d,c,f,h){d.addEventListener(c,f,h)},removeEventListener:function(d,c,f,h){d.removeEventListener(c,f,h)},l10n:{weekdays:{shorthand:"Sun Mon Tue Wed Thu Fri Sat".split(" "),longhand:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" ")},
months:{shorthand:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),longhand:"January February March April May June July August September October November December".split(" ")},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0}};
/* Blob.js
* A Blob implementation.
* 2014-07-24
*
* By Eli Grey, http://eligrey.com
* By Devin Samarin, https://github.com/dsamarin
* License: MIT
* See https://github.com/eligrey/Blob.js/blob/master/LICENSE.md
*/
/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
(function(a){a.URL=a.URL||a.webkitURL;if(a.Blob&&a.URL){try{new Blob;return}catch(d){}}var c=a.BlobBuilder||a.WebKitBlobBuilder||a.MozBlobBuilder||(function(p){var g=function(z){return Object.prototype.toString.call(z).match(/^\[object\s(.*)\]$/)[1]},y=function m(){this.data=[]},w=function i(B,z,A){this.data=B;this.size=B.length;this.type=z;this.encoding=A},q=y.prototype,v=w.prototype,s=p.FileReaderSync,e=function(z){this.code=this[this.name=z]},r=("NOT_FOUND_ERR SECURITY_ERR ABORT_ERR NOT_READABLE_ERR ENCODING_ERR "+"NO_MODIFICATION_ALLOWED_ERR INVALID_STATE_ERR SYNTAX_ERR").split(" "),u=r.length,l=p.URL||p.webkitURL||p,t=l.createObjectURL,f=l.revokeObjectURL,k=l,o=p.btoa,j=p.atob,h=p.ArrayBuffer,n=p.Uint8Array,x=/^[\w-]+:\/*\[?[\w\.:-]+\]?(?::[0-9]+)?/;w.fake=v.fake=true;while(u--){e.prototype[r[u]]=u+1}if(!l.createObjectURL){k=p.URL=function(A){var z=document.createElementNS("http://www.w3.org/1999/xhtml","a"),B;z.href=A;if(!("origin" in z)){if(z.protocol.toLowerCase()==="data:"){z.origin=null}else{B=A.match(x);z.origin=B&&B[1]}}return z}}k.createObjectURL=function(A){var B=A.type,z;if(B===null){B="application/octet-stream"}if(A instanceof w){z="data:"+B;if(A.encoding==="base64"){return z+";base64,"+A.data}else{if(A.encoding==="URI"){return z+","+decodeURIComponent(A.data)}}if(o){return z+";base64,"+o(A.data)}else{return z+","+encodeURIComponent(A.data)}}else{if(t){return t.call(l,A)}}};k.revokeObjectURL=function(z){if(z.substring(0,5)!=="data:"&&f){f.call(l,z)}};q.append=function(D){var F=this.data;if(n&&(D instanceof h||D instanceof n)){var E="",A=new n(D),B=0,C=A.length;for(;B<C;B++){E+=String.fromCharCode(A[B])}F.push(E)}else{if(g(D)==="Blob"||g(D)==="File"){if(s){var z=new s;F.push(z.readAsBinaryString(D))}else{throw new e("NOT_READABLE_ERR")}}else{if(D instanceof w){if(D.encoding==="base64"&&j){F.push(j(D.data))}else{if(D.encoding==="URI"){F.push(decodeURIComponent(D.data))}else{if(D.encoding==="raw"){F.push(D.data)}}}}else{if(typeof D!=="string"){D+=""}F.push(unescape(encodeURIComponent(D)))}}}};q.getBlob=function(z){if(!arguments.length){z=null}return new w(this.data.join(""),z,"raw")};q.toString=function(){return"[object BlobBuilder]"};v.slice=function(C,z,B){var A=arguments.length;if(A<3){B=null}return new w(this.data.slice(C,A>1?z:this.data.length),B,this.encoding)};v.toString=function(){return"[object Blob]"};v.close=function(){this.size=0;delete this.data};return y}(a));a.Blob=function(j,h){var l=h?(h.type||""):"";var g=new c();if(j){for(var k=0,e=j.length;k<e;k++){if(Uint8Array&&j[k] instanceof Uint8Array){g.append(j[k].buffer)}else{g.append(j[k])}}}var f=g.getBlob(l);if(!f.slice&&f.webkitSlice){f.slice=f.webkitSlice}return f};var b=Object.getPrototypeOf||function(e){return e.__proto__};a.Blob.prototype=b(new a.Blob())}(typeof self!=="undefined"&&self||typeof window!=="undefined"&&window||this.content||this));
/* FileSaver
* A saveAs() FileSaver implementation.
* 1.3.2
* 2016-06-16 18:25:19
*
* By Eli Grey, http://eligrey.com
* License: MIT
* See https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md
*/
var saveAs=saveAs||function(e){"use strict";if(typeof e==="undefined"||typeof navigator!=="undefined"&&/MSIE [1-9]\./.test(navigator.userAgent)){return}var t=e.document,n=function(){return e.URL||e.webkitURL||e},r=t.createElementNS("http://www.w3.org/1999/xhtml","a"),o="download"in r,a=function(e){var t=new MouseEvent("click");e.dispatchEvent(t)},i=/constructor/i.test(e.HTMLElement)||e.safari,f=/CriOS\/[\d]+/.test(navigator.userAgent),u=function(t){(e.setImmediate||e.setTimeout)(function(){throw t},0)},s="application/octet-stream",d=1e3*40,c=function(e){var t=function(){if(typeof e==="string"){n().revokeObjectURL(e)}else{e.remove()}};setTimeout(t,d)},l=function(e,t,n){t=[].concat(t);var r=t.length;while(r--){var o=e["on"+t[r]];if(typeof o==="function"){try{o.call(e,n||e)}catch(a){u(a)}}}},p=function(e){if(/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)){return new Blob([String.fromCharCode(65279),e],{type:e.type})}return e},v=function(t,u,d){if(!d){t=p(t)}var v=this,w=t.type,m=w===s,y,h=function(){l(v,"writestart progress write writeend".split(" "))},S=function(){if((f||m&&i)&&e.FileReader){var r=new FileReader;r.onloadend=function(){var t=f?r.result:r.result.replace(/^data:[^;]*;/,"data:attachment/file;");var n=e.open(t,"_blank");if(!n)e.location.href=t;t=undefined;v.readyState=v.DONE;h()};r.readAsDataURL(t);v.readyState=v.INIT;return}if(!y){y=n().createObjectURL(t)}if(m){e.location.href=y}else{var o=e.open(y,"_blank");if(!o){e.location.href=y}}v.readyState=v.DONE;h();c(y)};v.readyState=v.INIT;if(o){y=n().createObjectURL(t);setTimeout(function(){r.href=y;r.download=u;a(r);h();c(y);v.readyState=v.DONE});return}S()},w=v.prototype,m=function(e,t,n){return new v(e,t||e.name||"download",n)};if(typeof navigator!=="undefined"&&navigator.msSaveOrOpenBlob){return function(e,t,n){t=t||e.name||"download";if(!n){e=p(e)}return navigator.msSaveOrOpenBlob(e,t)}}w.abort=function(){};w.readyState=w.INIT=0;w.WRITING=1;w.DONE=2;w.error=w.onwritestart=w.onprogress=w.onwrite=w.onabort=w.onerror=w.onwriteend=null;return m}(typeof self!=="undefined"&&self||typeof window!=="undefined"&&window||this.content);if(typeof module!=="undefined"&&module.exports){module.exports.saveAs=saveAs}else if(typeof define!=="undefined"&&define!==null&&define.amd!==null){define("FileSaver.js",function(){return saveAs})}
/* icsFormatter
* A ics file format generator
* By eastpiger
*/
var icsFormatter = function() {
'use strict';
if (navigator.userAgent.indexOf('MSIE') > -1 && navigator.userAgent.indexOf('MSIE 10') == -1) {
console.log('Unsupported Browser');
return;
}
var SEPARATOR = (navigator.appVersion.indexOf('Win') !== -1) ? '\r\n' : '\n';
var calendarEvents = [];
var calendarName = 'Calendar';
var prodName = '-//eastpiger//eastpiger.com//ICS: iCalendar Generator';
return {
/**
* Returns events array
* @return {array} Events
*/
'events': function() {
return calendarEvents;
},
'setCalendarName': function(name) {
calendarName = name;
},
'buildCalendarStart': function() {
var calendarStart = [
'BEGIN:VCALENDAR',
'VERSION:2.0',
'CALSCALE:GREGORIAN',
];
calendarStart.push('PRODID:' + prodName);
calendarStart.push('X-WR-CALNAME:' + calendarName);
var ret = calendarStart.join(SEPARATOR);
return ret;
},
'buildCalendarEnd': function() {
var ret = 'END:VCALENDAR';
return ret;
},
'addEvent': function(subject, description, location, begin, end, rrul, url, categories, alarms) {
calendarEvents.push({
subject: subject,
description: description,
location: location,
begin: begin,
end: end,
rrul: rrul,
url: url,
categories: categories,
alarms: alarms
});
},
'formatEvent': function(subject, description, location, begin, end, rrul, url, categories, alarms) {
function time_convert(t) {
var time_convert_year = ("0000" + (t.getUTCFullYear().toString())).slice(-4);
var time_convert_month = ("00" + ((t.getUTCMonth() + 1).toString())).slice(-2);
var time_convert_day = ("00" + ((t.getUTCDate()).toString())).slice(-2);
var time_convert_hours = ("00" + (t.getUTCHours().toString())).slice(-2);
var time_convert_minutes = ("00" + (t.getUTCMinutes().toString())).slice(-2);
var time_convert_seconds = ("00" + (t.getUTCSeconds().toString())).slice(-2);
var time_convert_time = 'T' + time_convert_hours + time_convert_minutes + time_convert_seconds + 'Z';
var ret = time_convert_year + time_convert_month + time_convert_day + time_convert_time;
return ret;
}
var calendarEventArray = [];
calendarEventArray.push('BEGIN:VEVENT', 'CLASS:PUBLIC', 'X-MICROSOFT-CDO-BUSYSTATUS:BUSY', 'X-MICROSOFT-CDO-IMPORTANCE:1');
if (!(typeof begin === 'undefined'))
calendarEventArray.push('DTSTART:' + time_convert(begin));
if (!(typeof end === 'undefined'))
calendarEventArray.push('DTEND:' + time_convert(end));
if (!(typeof rrul === 'undefined')) {
var rrul_str = '';
if (!(typeof rrul.FREQ === 'undefined'))
rrul_str += 'FREQ=' + rrul.FREQ + ';';
if (!(typeof rrul.COUNT === 'undefined'))
rrul_str += 'COUNT=' + rrul.COUNT + ';';
if (!(typeof rrul.INTERVAL === 'undefined'))
rrul_str += 'INTERVAL=' + rrul.INTERVAL + ';';
calendarEventArray.push('RRULE:' + rrul_str);
}
if (!(typeof subject === 'undefined'))
calendarEventArray.push('SUMMARY:' + subject);
if (!(typeof description === 'undefined'))
calendarEventArray.push('DESCRIPTION:' + description);
if (!(typeof location === 'undefined'))
calendarEventArray.push('LOCATION:' + location);
if (!(typeof categories === 'undefined')) {
calendarEventArray.push('CATEGORIES:' + categories.toString());
}
if (!(typeof alarms === 'undefined')) {
for (var i in alarms) {
calendarEventArray.push('BEGIN:VALARM');
if (!(typeof alarms[i].ACTION === 'undefined'))
calendarEventArray.push('ACTION:' + alarms[i].ACTION);
if (!(typeof alarms[i].TRIGGER === 'undefined'))
calendarEventArray.push('TRIGGER:' + alarms[i].TRIGGER);
if (!(typeof alarms[i].DESCRIPTION === 'undefined'))
calendarEventArray.push('DESCRIPTION:' + alarms[i].DESCRIPTION);
if (!(typeof alarms[i].REPEAT === 'undefined'))
calendarEventArray.push('REPEAT:' + (alarms[i].REPEAT?1:0));
if (!(typeof alarms[i].DURATION === 'undefined'))
calendarEventArray.push('DURATION:' + alarms[i].DURATION);
calendarEventArray.push('END:VALARM');
}
calendarEventArray.push('CATEGORIES:' + categories.toString());
}
calendarEventArray.push('TRANSP:TRANSPARENT', 'END:VEVENT');
var ret = calendarEventArray.join(SEPARATOR);
return ret;
},
'formatAllEvents': function() {
var formatedEvents = [];
for (var i in calendarEvents) {
var t = this.formatEvent(
calendarEvents[i].subject,
calendarEvents[i].description,
calendarEvents[i].location,
calendarEvents[i].begin,
calendarEvents[i].end,
calendarEvents[i].rrul,
calendarEvents[i].url,
calendarEvents[i].categories,
calendarEvents[i].alarms
);
if (t)
formatedEvents.push(t);
}
var ret = this.buildCalendarStart() + SEPARATOR + formatedEvents.join(SEPARATOR) + SEPARATOR + this.buildCalendarEnd();
return ret;
},
/**
* Download calendar using the saveAs function from filesave.js
* @param {string} filename Filename
* @param {string} ext Extention
*/
'download': function(filename, ext) {
var formatedEvents = this.formatAllEvents();
if (formatedEvents) {
ext = (typeof ext !== 'undefined') ? ext : '.ics';
filename = (typeof filename !== 'undefined') ? filename : 'calendar';
var blob = new Blob([formatedEvents], {type: 'attachment/csv;charset=utf-8'});
saveAs(blob, filename + ext);
// var supportsDownloadAttribute = 'download' in document.createElement('a');
// if(supportsDownloadAttribute) {
// var link = document.createElement('a');
// link.setAttribute('target', '_blank');
// link.setAttribute('href', 'data:attachment/csv;charset=utf-8,' + encodeURI(formatedEvents));
// link.setAttribute('download', filename + ext);
// link.click();
// } else if(typeof safari !== 'undefined') {
// window.open('data:attachment/csv;charset=utf-8,' + encodeURI(formatedEvents));
// } else {
// var blob = new Blob([formatedEvents], {type: 'attachment/csv;charset=utf-8'});
// saveAs(blob, filename + ext);
// }
//window.open("data:text/calendar;charset=UTF-8," + encodeURI(formatedEvents));
} else return false;
},
'clear': function () {
calendarEvents = [];
}
};
};
var VER = "0.6";
var rawdata = undefined;
var mode = undefined;
function check_page_allow() {
try {
rawdata = $($("#frmright")[0].contentDocument).find("#div-table tbody")[0];
mode = "grad";
return true;
}
catch(error) {
console.error(error);
}
try {
rawdata = table0;
mode = "eams";
return true;
}
catch(error) {
console.error(error);
}
}
if (Boolean(window.$) && check_page_allow()) {
var classTables = [[
[8, 15, 9, 0],
[9, 10, 9, 55],
[10, 15, 11, 0],
[11, 10, 11, 55],
[13, 0, 13, 45],
[13, 55, 14, 40],
[15, 0, 15, 45],
[15, 55, 16, 40],
[16, 50, 17, 35],
[17, 45, 18, 30],
[18, 40, 19, 25],
[19, 35, 20, 20],
[20, 30, 21, 15]
], [
[8, 15, 9, 0],
[9, 10, 9, 55],
[10, 15, 11, 0],
[11, 10, 11, 55],
[13, 0, 13, 45],
[13, 55, 14, 40],
[15, 0, 15, 45],
[15, 55, 16, 40],
[16, 50, 17, 35],
[18, 00, 18, 45],
[18, 55, 19, 40],
[19, 50, 20, 35],
[20, 45, 21, 30]
],]
var eventsList = [];
function clear() {
var styleElement = document.getElementById('styles_js');
if (styleElement) styleElement.parentElement.removeChild(styleElement);
var containerElement = document.getElementById('icsFormatterbg');
if (containerElement) containerElement.parentElement.removeChild(containerElement);
if (mode == "eams")
if (window.table0)
for (var i in table0.activities)
for (var j in table0.activities[i])
table0.activities[i][j].icsFormatted = undefined;
else if (mode == "grad") {};
}
function init() {
function loadCSS() {
var styleElement = document.createElement('style');
styleElement.type = 'text/css';
styleElement.id = 'styles_js';
document.getElementsByTagName('head')[0].appendChild(styleElement);
styleElement.appendChild(document.createTextNode('#icsFormatterbg{display:none;position:fixed;top:0px;left:0px;bottom:0px;right:0px;z-index:90001;background:rgba(0, 0, 0, 0.7);}\
#icsFormatterContainer{position:relative;background:#E3E3E3;border-radius:3px;box-shadow: 0 1px 2px #aaa;margin:100px auto;width:600px;max-width:80%;height:340px;max-height:60%;padding: 20px;}\
#icsFormatterClose{position:absolute;right:20px;top:20px;padding:5px;}\
#icsFormatterDownload{padding:10px;}\
#icsFormatterDate{text-align:center}\
.datepickr-wrapper{display:inline-block;position:relative}.datepickr-calendar{font-family:"Trebuchet MS",Tahoma,Verdana,Arial,sans-serif;font-size:12px;background-color:#eee;color:#333;border:1px solid #ddd;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:2px;display:none;position:absolute;top:100%;left:0;z-index:100}.open .datepickr-calendar{display:block}.datepickr-calendar .datepickr-months{background-color:#3aa6f6;border:1px solid #087ee7;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;color:#fff;padding:2px;text-align:center;font-size:120%}.datepickr-calendar .datepickr-next-month,.datepickr-calendar .datepickr-prev-month{color:#fff;text-decoration:none;padding:0 .4em;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;cursor:pointer}.datepickr-calendar .datepickr-prev-month{float:left}.datepickr-calendar .datepickr-next-month{float:right}.datepickr-calendar .datepickr-current-month{padding:0 .5em}.datepickr-calendar .datepickr-next-month:hover,.datepickr-calendar .datepickr-prev-month:hover{background-color:#3aa6f6;color:#087ee7}.datepickr-calendar table{border-collapse:collapse;padding:0;width:100%}.datepickr-calendar thead{font-size:90%}.datepickr-calendar td,.datepickr-calendar th{width:14.3%}.datepickr-calendar th{text-align:center;padding:5px}.datepickr-calendar td{text-align:right;padding:1px}.datepickr-calendar .datepickr-day{display:block;color:#1c94c4;background-color:#f6f6f6;border:1px solid #ccc;padding:5px;cursor:pointer}.datepickr-calendar .datepickr-day:hover{color:#0573c7;background-color:#cef2fd;border:1px solid #09abfb}.datepickr-calendar .today .datepickr-day{color:#0573c7;background-color:#cef2fd;border:1px solid #09abfb}.datepickr-calendar .selected .datepickr-day{background-color:#1c94c4;color:#f6f6f6}.datepickr-calendar .disabled .datepickr-day,.datepickr-calendar .disabled .datepickr-day:hover{background-color:#eee;border:1px dotted #ccc;color:#bbb;cursor:default}'));
}
function loadHTML() {
$('body').append('<div id="icsFormatterbg" class="icsFormatterbg">\
<div id="icsFormatterContainer">\
<h3>Course Table ICS Formatter <small>ver. ' + VER + ' <a href="http://www.eastpiger.com">eastpiger</a> <a href="https://www.geekpie.org">GeekPie</a></small></h3><br/><br/>\
<button id="icsFormatterClose" class="ui-button">X</button>\
<h3 style="text-align:center;"><strong>Semester:<span id="icsFormatterSemester"></span></strong></h3>\
<p style="text-align:center;"><span id="icsFormatterTasks"></span> tasks found.</p><br/>\
<p style="text-align:center;">Tell me the Monday of week #1 in this semester:<br/><input type="text" id="icsFormatterDate" readonly></p><br/>\
<p style="text-align:center;">Use new time schedule? (使用2020抗疫期间新课表时间)<input type="checkbox" id="icsFormatterNewTimeSchedule" checked> YES</p><br/>\
<p style="text-align:center;"><button id="icsFormatterDownload" class="ui-button ui-widget">Download</button></p>\
</div>\
</div>');
$('#icsFormatterbg').fadeIn(500);
}
loadCSS();
loadHTML();
var t = new Date();
var t2 = new Date(t - (t.getDay() - 1) * 24*3600*1000);
$('#icsFormatterDate')[0].value = t2.getFullYear() + '-' + (t2.getMonth() + 1) + '-' + t2.getDate();
datepickr('#icsFormatterDate', { dateFormat: 'Y-n-j' });
}
function addClass(icsObj, firstMonday, newTimeScheduleEnabled, data, weekday, startclass, last) {
var title = data.courseName;
var place = data.roomName;
var categories = ["ShanghaiTech", data.teacherName, "Course Table ICS Formatter"];
var alarms = [
{ ACTION: 'AUDIO', TRIGGER: '-PT10M' }
];
var url = '';
var classTable = classTables[0];
if (newTimeScheduleEnabled) classTable = classTables[1];
var description = data.courseName + " " + data.roomName + " " + data.teacherName; //'A very long and boring description of what is the agenda of this super exclusiv pow-wow';
regularMode = true;
startweek = 0;
intervalweek = undefined;
countweek = 0;
prevalidweek = undefined;
for (var i in data.vaildWeeks)
if (data.vaildWeeks[i] == 1) {
if (prevalidweek == undefined) startweek = i;
else
if (intervalweek == undefined) intervalweek = i - prevalidweek;
else if ((regularMode == true) && (intervalweek != (i - prevalidweek)))
regularMode = false;
prevalidweek = i;
countweek++;
}
if (regularMode) {
var begin = new Date(firstMonday.getTime() + ((startweek - 1) * 7 + weekday - 1) * 24 * 60 * 60000);
begin.setHours(classTable[startclass - 1][0]);
begin.setMinutes(classTable[startclass - 1][1]);
begin.setSeconds(0);
var end = new Date(begin.getTime());
end.setHours(classTable[startclass + last - 2][2]);
end.setMinutes(classTable[startclass + last - 2][3]);
end.setSeconds(0);
var rrul = {FREQ: 'WEEKLY', COUNT: countweek, INTERVAL: intervalweek};
icsObj.addEvent(title, description, place, begin, end, rrul, url, categories, alarms);
} else {
for (var i in data.vaildWeeks)
if (data.vaildWeeks[i] == 1) {
var begin = new Date(firstMonday.getTime() + ((i - 1) * 7 + weekday - 1) * 24 * 60 * 60000);
begin.setHours(classTable[startclass - 1][0]);
begin.setMinutes(classTable[startclass - 1][1]);
begin.setSeconds(0);
var end = new Date(begin.getTime());
end.setHours(classTable[startclass + last - 2][2]);
end.setMinutes(classTable[startclass + last - 2][3]);
end.setSeconds(0);
var rrul = {FREQ: 'WEEKLY', COUNT: 1, INTERVAL: 1};
icsObj.addEvent(title, description, place, begin, end, rrul, url, categories, alarms);
}
}
}
function process(data) {
function uniq(array){
var temp = []; //一个新的临时数组
for(var i = 0; i < array.length; i++){
if(temp.indexOf(array[i]) == -1){
temp.push(array[i]);
}
}
return temp;
}
function extractWeek(str) {
weekStr = /第[\d,-]+周/i.exec(str);
excludeStr = /除第[\d,-]+周/i.exec(str);
if (weekStr && (weekStr.length > 0)) weekStr = weekStr[0];
if (excludeStr && (excludeStr.length > 0)) excludeStr = excludeStr[0];
weeks = []
if (weekStr) {
if (/-/.exec(weekStr)) {
// a-b mode
[start, end] = weekStr.match(/\d+/ig);
for (var i = start; i <= end; i++)
weeks.push(i);
} else if (/,/.exec(weekStr)) {
// a,b,c mode
weeks = weekStr.match(/\d+/ig);
} else {
// a
weeks = weekStr.match(/\d+/ig);
}
}
exclude = []
if (excludeStr) {
if (/-/.exec(excludeStr)) {
// a-b mode
[start, end] = excludeStr.match(/\d+/ig);
for (var i = 0; i <= end; i++)
exclude.push(i);
} else if (/,/.exec(excludeStr)) {
// a,b,c mode
exclude = excludeStr.match(/\d+/ig);
} else {
// a
exclude = excludeStr.match(/\d+/ig);
}
}
for (var i = 0; i < exclude.length; i++) {
for (var j = 0; j < weeks.length; j++) {
if (weeks[j] == exclude[i]) {
weeks.splice(j, 1);
j = j - 1;
}
}
}
weeks.map(x => Number(x));
var result = [];
var max_week = Math.max(...weeks);
result[max_week] = 0;
result.fill(0);
weeks.map(x => result[x] = 1);
return result;
}
var semester = "";
if (mode == "eams")
semester = $("#courseTableForm input.calendar-text")[0].value;
else if (mode == "grad")
semester = $($($("#frmright")[0].contentDocument).find("#div-table div")[0]).html();
$('#icsFormatterSemester').html(semester);
window.icsObj = icsFormatter();
icsObj.setCalendarName(semester);
if (mode == "eams") {
for (var i in data.activities)
for (var j in data.activities[i])
if (data.activities[i][j].icsFormatted == undefined) {
var last = 0;
for (var k = i; k < ((Math.floor(i / 13) + 1) * 13); k++) {
var hasMerged = false;
for (var l in data.activities[k])
if ((data.activities[k][l].icsFormatted == undefined) &&
data.activities[i][j].isSame(data.activities[k][l]))
hasMerged = true;
if (hasMerged == false) break;
last++;
}
eventsList.push({
obj: data.activities[i][j],
weekday: Math.floor(i / 13) + 1,
startclass: Math.floor(i % 13) + 1,
last: last
});
data.activities[i][j].icsFormatted = true;
}
} else if (mode == "grad") {
rows = $(data).children().toArray();
rows.shift();
rows = rows.map(function(x) {
t = $(x).children("td").toArray();
t.shift();
return t;
});
for (i = 1; i <= 7; i++) {
for (j = 1; j <= 13; j++) {
var curTd = rows[j - 1].shift();
if ($(curTd).html()) {
content = $(curTd).html();
contents = content
.replace(/<[^>]+>/g," ")
.replace(/ /ig, " ")
.trim().split(/\s+/);
teachers = [];
times = [];
locations = [];
for (item in contents) {
if (item == 0) continue;
if (item % 3 == 1) times.push(contents[item]);
if (item % 3 == 2) teachers.push(contents[item]);
if (item % 3 == 0) locations.push(contents[item]);
}
teachers = teachers.join("、");
times = uniq(times);
locations = uniq(locations).join("、");
finalTimes = [];
for (item in times) {
times[item] = extractWeek(times[item]);
times[item].map(function(x, idx){
if (finalTimes[idx] == undefined)
finalTimes[idx] = 0;
finalTimes[idx] = (x == 1)?1:finalTimes[idx];
});
}
eventsList.push({
obj: {
courseName: contents[0],
roomName: locations,
teacherName: teachers,
vaildWeeks: finalTimes,
},
weekday: Number(i),
startclass: Math.floor(j % 13),
last: Number(curTd.getAttribute("rowspan")?Number(curTd.getAttribute("rowspan")):1)
});
// console.log("周" + j, "第" + i + "节", "持续" + row[j].getAttribute("rowspan") + "节" , content);
// console.log("周" + i, "第" + j + "节", "持续" + curTd.getAttribute("rowspan") + "节" , $(curTd).html());
}
if (curTd.getAttribute("rowspan"))
j += Number(curTd.getAttribute("rowspan")) - 1;
}
}
}
$('#icsFormatterTasks').html(eventsList.length);
// console.log(eventsList)
}
function download() {
window.icsObj.clear();
function getMonday() {
return new Date($('#icsFormatterDate')[0].value.replace(/-/g, "/"));
}
function getNewTimeScheduleEnabled() {
return $('#icsFormatterNewTimeSchedule')[0].checked;
}
var firstMonday = getMonday();
var newTimeScheduleEnabled = getNewTimeScheduleEnabled()
console.log(newTimeScheduleEnabled)
for (var i in eventsList)
addClass(window.icsObj, firstMonday, newTimeScheduleEnabled, eventsList[i].obj, eventsList[i].weekday, eventsList[i].startclass, eventsList[i].last);
window.icsObj.download();
}
function closeWindow() {
$('#icsFormatterbg').fadeOut(500);
}
clear();
init();
process(rawdata);
$('#icsFormatterDownload').click(download);
$('#icsFormatterClose').click(closeWindow);
} else {
alert('加载失败,请确认是否进入正确页面!');
}