date-fns#startOfMinute TypeScript Examples
The following examples show how to use
date-fns#startOfMinute.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: dateUtils.ts From ant-extensions with MIT License | 5 votes |
parseDate = (dt?: string, rounded?: "start" | "end"): ParsedDate => {
if (dt && isDate(dt)) {
return parseISO(dt);
} else if (dt && isDateLike(dt)) {
const parts = getDateParts(dt);
if (parts) {
const { part, op, diff } = parts;
const diffNum = parseInt(`${op}${diff}`, 10);
let date = startOfMinute(new Date());
switch (part) {
case DateParts.NOW:
return date;
case DateParts.DECADE:
if (rounded) {
date = (rounded === "start" ? startOfDecade : endOfDecade)(date);
}
return addYears(date, diffNum * 10);
case DateParts.YEAR:
if (rounded) {
date = (rounded === "start" ? startOfYear : endOfYear)(date);
}
return addYears(date, diffNum);
case DateParts.QUARTER:
if (rounded) {
date = (rounded === "start" ? startOfQuarter : endOfQuarter)(date);
}
return addQuarters(date, diffNum);
case DateParts.MONTH:
if (rounded) {
date = (rounded === "start" ? startOfMonth : endOfMonth)(date);
}
return addMonths(date, diffNum);
case DateParts.WEEK:
if (rounded) {
date = (rounded === "start" ? startOfWeek : endOfWeek)(date);
}
return addWeeks(date, diffNum);
case DateParts.DAY:
if (rounded) {
date = (rounded === "start" ? startOfDay : endOfDay)(date);
}
return addDays(date, diffNum);
case DateParts.HOUR:
if (rounded) {
date = (rounded === "start" ? startOfHour : endOfHour)(date);
}
return addHours(date, diffNum);
case DateParts.MINUTE:
if (rounded) {
date = (rounded === "start" ? startOfMinute : endOfMinute)(date);
}
return addMinutes(date, diffNum);
}
}
}
return undefined;
}
Example #2
Source File: getUtcSecondsFromDayRange.ts From beefy-api with MIT License | 5 votes |
getUtcSecondsFromDayRange = (daysAgo0: number, daysAgo1: number) => {
const endDate = startOfMinute(subDays(Date.now(), daysAgo0));
const startDate = startOfMinute(subDays(Date.now(), daysAgo1));
const [start, end] = [startDate, endDate].map(getUTCSeconds);
return [start, end];
}
Example #3
Source File: infoQueryHelpers.ts From glide-frontend with GNU General Public License v3.0 | 5 votes |
getDeltaTimestamps = (): [number, number, number, number] => {
const utcCurrentTime = getUnixTime(new Date()) * 1000
const t24h = getUnixTime(startOfMinute(subDays(utcCurrentTime, 1)))
const t48h = getUnixTime(startOfMinute(subDays(utcCurrentTime, 2)))
const t7d = getUnixTime(startOfMinute(subWeeks(utcCurrentTime, 1)))
const t14d = getUnixTime(startOfMinute(subWeeks(utcCurrentTime, 2)))
return [t24h, t48h, t7d, t14d]
}
Example #4
Source File: infoQueryHelpers.ts From vvs-ui with GNU General Public License v3.0 | 5 votes |
getDeltaTimestamps = (): [number, number, number, number] => {
const utcCurrentTime = getUnixTime(new Date()) * 1000
const t24h = getUnixTime(startOfMinute(subDays(utcCurrentTime, 1)))
const t48h = getUnixTime(startOfMinute(subDays(utcCurrentTime, 2)))
const t7d = getUnixTime(startOfMinute(subWeeks(utcCurrentTime, 1)))
const t14d = getUnixTime(startOfMinute(subWeeks(utcCurrentTime, 2)))
return [t24h, t48h, t7d, t14d]
}