This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdates.ts
254 lines (207 loc) · 5.81 KB
/
dates.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
export enum Weekdays {
Sunday = 0,
Monday = 1,
Tuesday = 2,
Wednesday = 3,
Thursday = 4,
Friday = 5,
Saturday = 6,
}
export enum Months {
January,
February,
March,
April,
May,
June,
July,
August,
September,
October,
November,
December,
}
export enum TimeUnit {
Second = 1000,
Minute = Second * 60,
Hour = Minute * 60,
Day = Hour * 24,
Week = Day * 7,
Year = Day * 365,
}
export interface Range {
start: Date,
end: Date,
}
export type Year = number;
export function getYearForRange({start, end}: Range) {
if (start) {
return start.getFullYear();
}
if (end) {
return end.getFullYear();
}
return (new Date()).getFullYear();
}
export function getMonthForRange({start, end}: Range): Months {
if (start) {
return start.getMonth();
}
if (end) {
return end.getMonth();
}
return (new Date()).getMonth();
}
export function abbreviationForWeekday(weekday: Weekdays) {
return Weekdays[weekday].substring(0, 2);
}
export type Week = (Date | null)[];
const WEEK_LENGTH = 7;
export function getWeeksForMonth(
month: Months,
year: Year,
weekStartsOn: Weekdays = Weekdays.Sunday,
): Week[] {
const firstOfMonth = new Date(year, month, 1);
const firstDayOfWeek = firstOfMonth.getDay();
const weeks: Week[] = [[]];
let currentWeek = weeks[0];
let currentDate = firstOfMonth;
const orderedWeekday = getOrderedWeekdays(weekStartsOn);
for (let i = 0; i < orderedWeekday.indexOf(firstDayOfWeek); i++) {
currentWeek.push(null);
}
while (currentDate.getMonth() === month) {
if (currentWeek.length === WEEK_LENGTH) {
currentWeek = [];
weeks.push(currentWeek);
}
currentWeek.push(currentDate);
currentDate = new Date(year, month, currentDate.getDate() + 1);
}
while (currentWeek.length < 7) {
currentWeek.push(null);
}
return weeks;
}
export function dateIsInRange(day: Date | null, range: Range) {
if (day == null) { return false; }
const {start, end} = range;
return Boolean((start && day > start) && (end && day < end));
}
export function dateIsSelected(day: Date | null, range: Range) {
if (day == null) { return false; }
const {start, end} = range;
return Boolean((start && isSameDay(start, day)) || (end && isSameDay(end, day)));
}
export function isSameDay(day1: Date, day2: Date) {
return (
(day1.getDate() === day2.getDate()) &&
(day1.getMonth() === day2.getMonth()) &&
(day1.getFullYear() === day2.getFullYear())
);
}
export function getDateDiff(resolution: TimeUnit, date: Date, today = new Date()) {
return Math.floor((today.getTime() - date.getTime()) / resolution);
}
export function getNewRange(range: Range | undefined, selected: Date): Range {
if (range == null) {
return {start: selected, end: selected};
}
const {start, end} = range;
if (end && (isDateAfter(start, end) || isDateBefore(start, end))) {
return {start: selected, end: selected};
}
if (start) {
if (isDateBefore(selected, start)) {
return {start: selected, end: selected};
}
return {start, end: selected};
}
if (end) {
if (isDateBefore(selected, end)) {
return {start: selected, end};
}
return {start: start || end, end: selected};
}
return {start: selected, end: selected};
}
export function getNextDisplayMonth(month: Months): Months {
if (Months[month] === Months[11]) {
return 0;
}
return (month as number) + 1;
}
export function getNextDisplayYear(month: Months, year: Year): Year {
if (Months[month] === Months[11]) {
return year + 1;
}
return year;
}
export function getPreviousDisplayMonth(month: Months): Months {
if (Months[month] === Months[0]) {
return 11;
}
return (month as number) - 1;
}
export function getPreviousDisplayYear(month: Months, year: Year): Year {
if (Months[month] === Months[0]) {
return year - 1;
}
return year;
}
export function isDateAfter(date: Date, dateToCompare: Date) {
return date.getTime() > dateToCompare.getTime();
}
export function isDateBefore(date: Date, dateToCompare: Date) {
return date.getTime() < dateToCompare.getTime();
}
export function isLessThanOneMinuteAgo(date: Date, today = new Date()) {
return (isDateBefore(date, today) && today.getTime() - date.getTime() < TimeUnit.Minute);
}
export function isLessThanOneHourAgo(date: Date, today = new Date()) {
return (isDateBefore(date, today) && today.getTime() - date.getTime() < TimeUnit.Hour);
}
export function isLessThanOneDayAgo(date: Date, today = new Date()) {
return (isDateBefore(date, today) && today.getTime() - date.getTime() < TimeUnit.Day);
}
export function isLessThanOneWeekAgo(date: Date, today = new Date()) {
return (isDateBefore(date, today) && today.getTime() - date.getTime() < TimeUnit.Week);
}
export function isLessThanOneYearAgo(date: Date, today = new Date()) {
return (isDateBefore(date, today) && today.getTime() - date.getTime() < TimeUnit.Year);
}
export function isSameMonthAndYear(source: Date, target: Date) {
return (
source.getFullYear() === target.getFullYear() &&
source.getMonth() === target.getMonth()
);
}
export function isSameDate(source: Date, target: Date) {
return (
isSameMonthAndYear(source, target) && source.getDate() === target.getDate()
);
}
export function isToday(date: Date) {
const today = new Date();
return isSameDate(today, date);
}
export function isYesterday(date: Date) {
const yesterday = new Date();
yesterday.setDate(yesterday.getDate() - 1);
return isSameDate(yesterday, date);
}
const WEEKDAYS = [
Weekdays.Sunday,
Weekdays.Monday,
Weekdays.Tuesday,
Weekdays.Wednesday,
Weekdays.Thursday,
Weekdays.Friday,
Weekdays.Saturday,
];
function getOrderedWeekdays(weekStartsOn: Weekdays): Weekdays[] {
const weekDays = [...WEEKDAYS];
const restOfDays = weekDays.splice(weekStartsOn);
return [...restOfDays, ...weekDays];
}