mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 06:58:02 +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
90 lines
2.7 KiB
React
90 lines
2.7 KiB
React
import { Editable, EditableInput, EditablePreview } from '@chakra-ui/editable';
|
|
import { useContext, useEffect, useState } from 'react';
|
|
import { forgivingStringToMillis } from '../utils/dateConfig';
|
|
import { stringFromMillis } from 'ontime-utils/time';
|
|
import style from './EditableTimer.module.css';
|
|
import { LoggingContext } from '../../app/context/LoggingContext';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default function EditableTimer(props) {
|
|
const { name, actionHandler, time, delay, validate, previousEnd } = props;
|
|
const { emitError } = useContext(LoggingContext);
|
|
const [value, setValue] = useState('');
|
|
|
|
// prepare time fields
|
|
useEffect(() => {
|
|
if (time == null) return;
|
|
try {
|
|
setValue(stringFromMillis(time + delay));
|
|
} catch (error) {
|
|
emitError(`Unable to parse date: ${error.text}`);
|
|
}
|
|
}, [time, delay, emitError]);
|
|
|
|
const validateValue = (value) => {
|
|
const success = handleSubmit(value);
|
|
if (success) setValue(value);
|
|
else setValue(stringFromMillis(time + delay, true));
|
|
};
|
|
|
|
const handleSubmit = (value) => {
|
|
// Check if there is anything there
|
|
if (value === '') return false;
|
|
|
|
let newValMillis;
|
|
|
|
// check for known aliases
|
|
if (value === 'p' || value === 'prev' || value === 'previous') {
|
|
// string to pass should be the time of the end before
|
|
if (previousEnd != null) {
|
|
newValMillis = previousEnd;
|
|
} else {
|
|
newValMillis = 0;
|
|
}
|
|
} else if (value.startsWith('+')) {
|
|
// string to pass should add to the end before
|
|
const val = value.substring(1);
|
|
newValMillis = previousEnd + forgivingStringToMillis(val);
|
|
} else {
|
|
// convert entered value to milliseconds
|
|
newValMillis = forgivingStringToMillis(value);
|
|
}
|
|
|
|
// Time now and time submittedVal
|
|
const originalMillis = time + delay;
|
|
|
|
// check if time is different from before
|
|
if (newValMillis === originalMillis) return false;
|
|
|
|
// validate with parent
|
|
if (!validate(name, newValMillis)) return false;
|
|
|
|
// update entry
|
|
actionHandler('update', { field: name, value: newValMillis });
|
|
|
|
return true;
|
|
};
|
|
|
|
return (
|
|
<Editable
|
|
onChange={(v) => setValue(v)}
|
|
onSubmit={(v) => validateValue(v)}
|
|
onCancel={() => setValue(stringFromMillis(time + delay, true))}
|
|
value={value}
|
|
className={delay > 0 ? style.delayedEditable : style.editable}
|
|
>
|
|
<EditablePreview />
|
|
<EditableInput type='text' placeholder='--:--:--' />
|
|
</Editable>
|
|
);
|
|
}
|
|
|
|
EditableTimer.propTypes = {
|
|
name: PropTypes.string.isRequired,
|
|
actionHandler: PropTypes.func.isRequired,
|
|
time: PropTypes.number.isRequired,
|
|
delay: PropTypes.number.isRequired,
|
|
validate: PropTypes.func.isRequired,
|
|
previousEnd: PropTypes.number.isRequired,
|
|
};
|