enh: rename to saturday sunday

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng 2023-08-03 16:29:29 -07:00
parent 07c0f7e25b
commit c2dfc42899

View file

@ -51,28 +51,28 @@ export const getDateTime = (dateTime: DateTimePreset): Date => {
[DateTimePreset.ThisWeekend]: () => {
const today = moment()
const weekendFirstDay = moment()
const saturday = moment()
.startOf('isoWeek')
.add(5, 'day')
.add(9, 'hour')
const weekendSecondDay = moment()
const sunday = moment()
.startOf('isoWeek')
.add(6, 'day')
.add(9, 'hour')
if (today.isSame(weekendFirstDay, 'date')) {
return weekendFirstDay
if (today.isSame(saturday, 'date')) {
return saturday
.add(1, 'day')
.toDate()
}
if (today.isSame(weekendSecondDay, 'date')) {
return weekendSecondDay
if (today.isSame(sunday, 'date')) {
return sunday
.add(1, 'week')
.startOf('isoWeek')
.add(5, 'day')
.add(9, 'hour')
.toDate()
}
return weekendFirstDay.toDate()
return saturday.toDate()
},
[DateTimePreset.NextWeek]: () => {