mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 22:47:59 +00:00
48093b8651
* ux/54-help tooltips * ux/54-help refetch after mutation * ux/54-help broadcast event index * ux/54-help prevent multiple keypresses when key held * ux/54-help fat clock * ux/54-help progress bar user defined * ux/54-help onAir is button * ux/54-help OSC: add missing presenter message * ux/54-help OSC: enable / disable OSC * ux/54-help handle timezone in excel date import * ux/54-help tray left click to show app * ux/54-help create queriable endpoint * ux/54-help fix memoisation in lower thirds * ux/54-help revise icons * ux/54-help clarify text * ux/54-help forgiving text parsing * ux/54-help add smart keywords * ux/54-help version bump
68 lines
1.9 KiB
JavaScript
68 lines
1.9 KiB
JavaScript
const mts = 1000; // millis to seconds
|
|
const mtm = 1000 * 60; // millis to minutes
|
|
const mth = 1000 * 60 * 60; // millis to hours
|
|
|
|
/**
|
|
* Returns current time in milliseconds
|
|
* @returns {number}
|
|
*/
|
|
export const nowInMillis = () => {
|
|
const now = new Date();
|
|
|
|
// extract milliseconds since midnight
|
|
let elapsed = now.getHours() * 3600000;
|
|
elapsed += now.getMinutes() * 60000;
|
|
elapsed += now.getSeconds() * 1000;
|
|
elapsed += now.getMilliseconds();
|
|
|
|
return elapsed;
|
|
};
|
|
|
|
/**
|
|
* @description Converts milliseconds to string representing time
|
|
* @param {number} ms - time in milliseconds
|
|
* @param {boolean} showSeconds - weather to show the seconds
|
|
* @param {string} delim - character between HH MM SS
|
|
* @param {string} ifNull - what to return if value is null
|
|
* @returns {string} String representing time 00:12:02
|
|
*/
|
|
|
|
export const stringFromMillis = (
|
|
ms,
|
|
showSeconds = true,
|
|
delim = ':',
|
|
ifNull = '...'
|
|
) => {
|
|
if (ms == null || isNaN(ms)) return ifNull;
|
|
const isNegative = ms < 0 ? '-' : '';
|
|
const millis = Math.abs(ms);
|
|
|
|
const showWith0 = (value) => (value < 10 ? `0${value}` : value);
|
|
const hours = showWith0(Math.floor(((millis / mth) % 60) % 24));
|
|
const minutes = showWith0(Math.floor((millis / mtm) % 60));
|
|
const seconds = showWith0(Math.floor((millis / mts) % 60));
|
|
|
|
return showSeconds
|
|
? `${isNegative}${
|
|
parseInt(hours) ? `${hours}${delim}` : `00${delim}`
|
|
}${minutes}${delim}${seconds}`
|
|
: `${isNegative}${parseInt(hours) ? `${hours}` : '00'}${delim}${minutes}`;
|
|
};
|
|
|
|
/**
|
|
* @description Converts an excel date to milliseconds
|
|
* @argument {string} excelDate - excel string date
|
|
* @returns {number} - time in milliseconds
|
|
*/
|
|
export const excelDateStringToMillis = (excelDate) => {
|
|
const date = new Date(excelDate);
|
|
if (date instanceof Date && !isNaN(date)) {
|
|
const h = date.getHours();
|
|
const m = date.getMinutes();
|
|
const s = date.getSeconds();
|
|
|
|
return h * mth + m * mtm + s * mts;
|
|
}
|
|
return 0;
|
|
};
|