Signal-Desktop/ts/util/timer.ts

34 lines
624 B
TypeScript
Raw Permalink Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2019-01-14 21:49:58 +00:00
import { padStart } from 'lodash';
export function getIncrement(length: number): number {
if (length < 0) {
return 1000;
}
return Math.ceil(length / 12);
}
export function getTimerBucket(
expiration: number | undefined,
length: number
): string {
if (!expiration) {
return '60';
}
2019-01-14 21:49:58 +00:00
const delta = expiration - Date.now();
if (delta < 0) {
return '00';
}
if (delta > length) {
return '60';
}
2020-01-08 17:44:54 +00:00
const bucket = Math.round((delta / length) * 12);
2019-01-14 21:49:58 +00:00
return padStart(String(bucket * 5), 2, '0');
}