analytics/assets/js/dashboard/util/date.js

124 lines
3.2 KiB
JavaScript
Raw Normal View History

// 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())
const d = newDate.getDate();
newDate.setMonth(newDate.getMonth() + +months);
if (newDate.getDate() != d) {
newDate.setDate(0);
}
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"
]
const DAYS_ABBREV = [
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
]
export function formatMonthYYYY(date) {
return `${MONTHS[date.getMonth()]} ${date.getFullYear()}`;
}
2022-03-31 13:52:26 +03:00
export function formatYear(date) {
return `Year of ${date.getFullYear()}`;
}
export function formatDay(date) {
var weekday = DAYS_ABBREV[date.getUTCDay()];
if (date.getFullYear() !== (new Date()).getFullYear()) {
return `${weekday}, ${date.getDate()} ${formatMonthShort(date)} ${date.getFullYear()}`;
} else {
return `${weekday}, ${date.getDate()} ${formatMonthShort(date)}`;
}
}
export function formatDayShort(date) {
return `${date.getDate()} ${formatMonthShort(date)}`;
}
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);
}
// https://stackoverflow.com/a/11124448
export function nowForSite(site) {
2019-11-21 11:59:06 +03:00
const browserOffset = (new Date()).getTimezoneOffset() * 60
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)
}
export function isToday(site, date) {
return formatISO(date) === formatISO(nowForSite(site))
}
export function isThisMonth(site, date) {
return formatMonthYYYY(date) === formatMonthYYYY(nowForSite(site))
}
2022-03-31 13:52:26 +03:00
export function isThisYear(site, date) {
return date.getFullYear() === nowForSite(site).getFullYear()
}
export function isBefore(date1, date2, period) {
/* assumes 'day' and 'month' are the only valid periods */
if (date1.getFullYear() !== date2.getFullYear()) {
return date1.getFullYear() < date2.getFullYear();
}
2022-03-31 13:56:56 +03:00
if (period === "year") {
return false;
}
if (date1.getMonth() !== date2.getMonth()) {
return date1.getMonth() < date2.getMonth();
}
if (period === "month") {
return false;
}
return date1.getDate() < date2.getDate()
}
export function isAfter(date1, date2, period) {
/* assumes 'day' and 'month' are the only valid periods */
if (date1.getFullYear() !== date2.getFullYear()) {
return date1.getFullYear() > date2.getFullYear();
}
2022-03-31 13:56:56 +03:00
if (period === "year") {
return false;
}
if (date1.getMonth() !== date2.getMonth()) {
return date1.getMonth() > date2.getMonth();
}
if (period === "month") {
return false;
}
return date1.getDate() > date2.getDate()
}
function formatMonthShort(date) {
return `${MONTHS[date.getMonth()].substring(0, 3)}`;
}