mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-15 20:33:47 +00:00
10d7273ec0
* refactor: resolve current in time-to-end * refactor: recalculate on skip * Alpha tweaks (#806) * style: small tweaks to interface * refactor: simplify quick add
132 lines
4.4 KiB
TypeScript
132 lines
4.4 KiB
TypeScript
import { CSSProperties, useCallback, useEffect, useState } from 'react';
|
|
import { Button } from '@chakra-ui/react';
|
|
import { CustomFieldLabel, isOntimeEvent, OntimeEvent } from 'ontime-types';
|
|
|
|
import CopyTag from '../../../common/components/copy-tag/CopyTag';
|
|
import { useEventAction } from '../../../common/hooks/useEventAction';
|
|
import useCustomFields from '../../../common/hooks-query/useCustomFields';
|
|
import useRundown from '../../../common/hooks-query/useRundown';
|
|
import { getAccessibleColour } from '../../../common/utils/styleUtils';
|
|
import { useEventSelection } from '../useEventSelection';
|
|
|
|
import EventEditorTimes from './composite/EventEditorTimes';
|
|
import EventEditorTitles from './composite/EventEditorTitles';
|
|
import EventTextArea from './composite/EventTextArea';
|
|
|
|
import style from './EventEditor.module.scss';
|
|
|
|
export type EventEditorSubmitActions = keyof OntimeEvent;
|
|
|
|
export type EditorUpdateFields = 'cue' | 'title' | 'note' | 'colour' | CustomFieldLabel;
|
|
|
|
export default function EventEditor() {
|
|
const selectedEvents = useEventSelection((state) => state.selectedEvents);
|
|
const { data } = useRundown();
|
|
const { data: customFields } = useCustomFields();
|
|
const { order, rundown } = data;
|
|
const { updateEvent } = useEventAction();
|
|
|
|
const [event, setEvent] = useState<OntimeEvent | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (order.length === 0) {
|
|
setEvent(null);
|
|
return;
|
|
}
|
|
|
|
const selectedEventId = order.find((eventId) => selectedEvents.has(eventId));
|
|
if (!selectedEventId) {
|
|
setEvent(null);
|
|
return;
|
|
}
|
|
const event = rundown[selectedEventId];
|
|
|
|
if (event && isOntimeEvent(event)) {
|
|
setEvent(event);
|
|
} else {
|
|
setEvent(null);
|
|
}
|
|
}, [order, rundown, selectedEvents]);
|
|
|
|
const handleSubmit = useCallback(
|
|
(field: EditorUpdateFields, value: string) => {
|
|
if (field.startsWith('custom-')) {
|
|
const fieldLabel = field.split('custom-')[1];
|
|
updateEvent({ id: event?.id, custom: { [fieldLabel]: { value } } });
|
|
} else {
|
|
updateEvent({ id: event?.id, [field]: value });
|
|
}
|
|
},
|
|
[event?.id, updateEvent],
|
|
);
|
|
|
|
if (!event) {
|
|
return (
|
|
<div className={style.eventEditor} data-testid='editor-container'>
|
|
Select an event to edit
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className={style.eventEditor} data-testid='editor-container'>
|
|
<div className={style.content}>
|
|
<EventEditorTimes
|
|
key={`${event.id}-times`}
|
|
eventId={event.id}
|
|
timeStart={event.timeStart}
|
|
timeEnd={event.timeEnd}
|
|
duration={event.duration}
|
|
timeStrategy={event.timeStrategy}
|
|
linkStart={event.linkStart}
|
|
delay={event.delay ?? 0}
|
|
isPublic={event.isPublic}
|
|
endAction={event.endAction}
|
|
timerType={event.timerType}
|
|
timeWarning={event.timeWarning}
|
|
timeDanger={event.timeDanger}
|
|
/>
|
|
<EventEditorTitles
|
|
key={`${event.id}-titles`}
|
|
eventId={event.id}
|
|
cue={event.cue}
|
|
title={event.title}
|
|
note={event.note}
|
|
colour={event.colour}
|
|
handleSubmit={handleSubmit}
|
|
/>
|
|
<div className={style.column}>
|
|
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}>
|
|
<span>Custom Fields</span>
|
|
<Button variant='ontime-subtle' size='sm' isDisabled>
|
|
Manage
|
|
</Button>
|
|
</div>
|
|
{Object.keys(customFields).map((label) => {
|
|
const key = `${event.id}-${label}`;
|
|
const fieldName = `custom-${label}`;
|
|
const initialValue = event.custom[label]?.value ?? '';
|
|
const { backgroundColor, color } = getAccessibleColour(customFields[label].colour);
|
|
|
|
return (
|
|
<EventTextArea
|
|
key={key}
|
|
field={fieldName}
|
|
label={label}
|
|
initialValue={initialValue}
|
|
submitHandler={handleSubmit}
|
|
className={style.decorated}
|
|
style={{ '--decorator-bg': backgroundColor, '--decorator-color': color } as CSSProperties}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
<div className={style.footer}>
|
|
<CopyTag label='OSC trigger by id'>{`/ontime/load/id "${event.id}"`}</CopyTag>
|
|
<CopyTag label='OSC trigger by cue'>{`/ontime/load/cue "${event.cue}"`}</CopyTag>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|