mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
29 lines
878 B
TypeScript
29 lines
878 B
TypeScript
import type { ParamField } from './viewParams.types';
|
|
|
|
export const getTimeOption = (timeFormat: string): ParamField => {
|
|
const placeholder = `${timeFormat} (default)`;
|
|
return {
|
|
id: 'timeformat',
|
|
title: 'Time format string, taken from the Application Settings',
|
|
description: 'Format for auxiliar time fields (not the running), eg. HH:mm:ss or hh:mm:ss a, see docs for help',
|
|
type: 'string',
|
|
placeholder,
|
|
};
|
|
};
|
|
|
|
export const hideTimerSeconds: ParamField = {
|
|
id: 'hideTimerSeconds',
|
|
title: 'Hide seconds in timer',
|
|
description: 'Whether to hide seconds in the running timer',
|
|
type: 'boolean',
|
|
defaultValue: false,
|
|
};
|
|
|
|
export const showLeadingZeros: ParamField = {
|
|
id: 'showLeadingZeros',
|
|
title: 'Show leading zeros in timer',
|
|
description: 'Whether to show leading zeros in the running timer',
|
|
type: 'boolean',
|
|
defaultValue: false,
|
|
};
|