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
|
interface EventInfoSerializeInfo {
days: string,
start: number,
end: number
}
export default class EventInfo {
days: string;
start: number;
end: number;
constructor(days: string, start: number | string, end: number | string) {
if (typeof start === "string") {
start = parseInt(start, 10);
}
if (typeof end === "string") {
end = parseInt(end, 10);
}
this.days = days;
this.start = start;
this.end = end;
}
static fromJSON({ days, start, end }: EventInfoSerializeInfo) {
return new EventInfo(days, start, end);
}
static timeToStr(time: number) {
let hour = Math.floor(time / 100);
const minute = time % 100;
const meridiem = (hour < 12) ? 'AM' : 'PM';
if (hour === 0) {
hour = 12;
} else if (hour > 12) {
hour -= 12;
}
if (minute < 10) {
return `${hour}:0${minute} ${meridiem}`;
}
return `${hour}:${minute} ${meridiem}`;
}
conflictsWith(event: EventInfo) {
const daysConflict = event.days.match(new RegExp(`[${this.days}]`));
return daysConflict && this.start <= event.end && event.start <= this.end;
}
get info() {
if (this.days === "") {
return `WEB`;
} else if (this.start === -1 || this.end === -1) {
return `${this.days}`;
} else {
return `${this.days} ${EventInfo.timeToStr(this.start)} - ${EventInfo.timeToStr(this.end)}`;
}
}
get duration_mins() {
const diff_hours = Math.floor(this.end / 100) - Math.floor(this.start / 100);
const diff_mins = this.end % 100 - this.start % 100;
return (diff_hours * 60 + diff_mins) * this.days.length;
}
get longInfo() {
const m = {
"U": "Sunday",
"M": "Monday",
"T": "Tuesday",
"W": "Wednesday",
"R": "Thursday",
"F": "Friday",
"S": "Saturday"
}
let info = this.info.split(" ");
let days = new Array<string>;
let old_days = info[0];
for (let i = 0; i < old_days.length; i++)
days.push(m[old_days.charAt(i).toUpperCase()])
info[0] = days.join(" and ");
return info.join(" ");
}
}
|