2019-11-19 07:30:42 +03:00
|
|
|
// https://stackoverflow.com/a/50130338
|
|
|
|
export function formatISO(date) {
|
|
|
|
return new Date(date.getTime() - (date.getTimezoneOffset() * 60000))
|
|
|
|
.toISOString()
|
|
|
|
.split("T")[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
export function shiftMonths(date, months) {
|
|
|
|
const newDate = new Date(date.getTime())
|
|
|
|
newDate.setMonth(newDate.getMonth() + months)
|
|
|
|
return newDate
|
|
|
|
}
|
|
|
|
|
|
|
|
export function shiftDays(date, days) {
|
|
|
|
const newDate = new Date(date.getTime())
|
|
|
|
newDate.setDate(newDate.getDate() + days)
|
|
|
|
return newDate
|
|
|
|
}
|
|
|
|
|
|
|
|
const MONTHS = [
|
|
|
|
"January", "February", "March",
|
|
|
|
"April", "May", "June", "July",
|
|
|
|
"August", "September", "October",
|
|
|
|
"November", "December"
|
|
|
|
]
|
|
|
|
|
|
|
|
export function formatMonthYYYY(date) {
|
|
|
|
return `${MONTHS[date.getMonth()]} ${date.getFullYear()}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function formatMonth(date) {
|
|
|
|
return `${MONTHS[date.getMonth()]}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function formatDay(date) {
|
|
|
|
return `${date.getDate()} ${formatMonth(date)}`;
|
|
|
|
}
|
|
|
|
|
2020-03-04 18:24:18 +03:00
|
|
|
export function formatDayShort(date) {
|
|
|
|
return `${date.getDate()} ${formatMonth(date).substring(0, 3)}`;
|
|
|
|
}
|
|
|
|
|
2020-02-12 16:55:40 +03:00
|
|
|
export function formatFullDate(date) {
|
|
|
|
const shortDate = formatMonth(date).substring(0, 3)
|
|
|
|
return `${shortDate} ${date.getDate()}, ${date.getFullYear()}`;
|
|
|
|
}
|
|
|
|
|
2019-12-18 06:15:31 +03:00
|
|
|
export function parseUTCDate(dateString) {
|
|
|
|
var date = new Date(dateString);
|
|
|
|
return new Date(date.getTime() + date.getTimezoneOffset() * 60000);
|
|
|
|
}
|
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
// https://stackoverflow.com/a/11124448
|
2020-09-09 11:13:55 +03:00
|
|
|
export function nowForSite(site) {
|
2019-11-21 11:59:06 +03:00
|
|
|
const browserOffset = (new Date()).getTimezoneOffset() * 60
|
2020-09-09 11:13:55 +03:00
|
|
|
return new Date(new Date().getTime() + (site.offset * 1000) + (browserOffset * 1000))
|
|
|
|
}
|
|
|
|
|
|
|
|
export function lastMonth(site) {
|
|
|
|
return shiftMonths(nowForSite(site), -1)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isSameMonth(date1, date2) {
|
|
|
|
return formatMonthYYYY(date1) === formatMonthYYYY(date2)
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isToday(site, date) {
|
2020-09-09 11:13:55 +03:00
|
|
|
return formatISO(date) === formatISO(nowForSite(site))
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|