mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-02 08:13:37 +01:00
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { Moment } from 'moment';
|
|
import moment from 'moment';
|
|
import { DAY } from './durations/index.std.ts';
|
|
|
|
export type RawTimestamp = Readonly<number | Date | Moment>;
|
|
|
|
export function isMoreRecentThan(timestamp: number, delta: number): boolean {
|
|
return timestamp > Date.now() - delta;
|
|
}
|
|
|
|
export function isOlderThan(timestamp: number, delta: number): boolean {
|
|
return timestamp <= Date.now() - delta;
|
|
}
|
|
|
|
export function isInPast(timestamp: number): boolean {
|
|
return isOlderThan(timestamp, 0);
|
|
}
|
|
|
|
export function isInFuture(timestamp: number): boolean {
|
|
return isMoreRecentThan(timestamp, 0);
|
|
}
|
|
|
|
export function toDayMillis(timestamp: number): number {
|
|
return timestamp - (timestamp % DAY);
|
|
}
|
|
|
|
export const isSameDay = (a: RawTimestamp, b: RawTimestamp): boolean =>
|
|
moment(a).isSame(b, 'day');
|
|
|
|
export const isToday = (rawTimestamp: RawTimestamp): boolean =>
|
|
isSameDay(rawTimestamp, Date.now());
|
|
|
|
export const isYesterday = (rawTimestamp: RawTimestamp): boolean =>
|
|
isSameDay(rawTimestamp, moment().subtract(1, 'day'));
|
|
|
|
export const MAX_SAFE_DATE = 8640000000000000;
|
|
export const MIN_SAFE_DATE = -8640000000000000;
|
|
|
|
export function toBoundedDate(timestamp: number): Date {
|
|
return new Date(Math.max(MIN_SAFE_DATE, Math.min(timestamp, MAX_SAFE_DATE)));
|
|
}
|
|
|
|
export function addLeadingZero(amount: number): string {
|
|
if (amount < 10) {
|
|
return `0${amount}`;
|
|
}
|
|
return amount.toString();
|
|
}
|
|
|
|
export function getTimestampForFolder(timestamp?: number): string {
|
|
const date = timestamp != null ? new Date(timestamp) : new Date();
|
|
return `${date.getUTCFullYear()}-${addLeadingZero(date.getUTCMonth() + 1)}-${addLeadingZero(date.getUTCDate())}-${addLeadingZero(date.getUTCHours())}-${addLeadingZero(date.getUTCMinutes())}-${addLeadingZero(date.getUTCSeconds())}`;
|
|
}
|