mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
93fb48ea1c
* feat: operator view * chore: smoke test operator * refactor: small improvements from deepsource --------- Co-authored-by: arihanv <arihanvaranasi@gmail.com> Co-authored-by: arihanv <63890951+arihanv@users.noreply.github.com>
171 lines
6.3 KiB
TypeScript
171 lines
6.3 KiB
TypeScript
import { useEffect, useRef, useState } from 'react';
|
|
import { useSearchParams } from 'react-router-dom';
|
|
import { isOntimeEvent, OntimeEvent, SupportedEvent, UserFields } from 'ontime-types';
|
|
import { getFirstEvent, getLastEvent } from 'ontime-utils';
|
|
|
|
import NavigationMenu from '../../common/components/navigation-menu/NavigationMenu';
|
|
import Empty from '../../common/components/state/Empty';
|
|
import { getOperatorOptions } from '../../common/components/view-params-editor/constants';
|
|
import ViewParamsEditor from '../../common/components/view-params-editor/ViewParamsEditor';
|
|
import useFollowComponent from '../../common/hooks/useFollowComponent';
|
|
import { useOperator } from '../../common/hooks/useSocket';
|
|
import useEventData from '../../common/hooks-query/useEventData';
|
|
import useRundown from '../../common/hooks-query/useRundown';
|
|
import useUserFields from '../../common/hooks-query/useUserFields';
|
|
import { isStringBoolean } from '../../common/utils/viewUtils';
|
|
|
|
import FollowButton from './follow-button/FollowButton';
|
|
import OperatorBlock from './operator-block/OperatorBlock';
|
|
import OperatorEvent from './operator-event/OperatorEvent';
|
|
import StatusBar from './status-bar/StatusBar';
|
|
|
|
import style from './Operator.module.scss';
|
|
|
|
const selectedOffset = 50;
|
|
|
|
type TitleFields = Pick<OntimeEvent, 'title' | 'subtitle' | 'presenter'>;
|
|
export default function Operator() {
|
|
const { data, status } = useRundown();
|
|
const { data: userFields, status: userFieldsStatus } = useUserFields();
|
|
const { data: projectData, status: projectDataStatus } = useEventData();
|
|
|
|
const featureData = useOperator();
|
|
const [searchParams] = useSearchParams();
|
|
|
|
const isAutomatedScroll = useRef(false);
|
|
const [lockAutoScroll, setLockAutoScroll] = useState(false);
|
|
const selectedRef = useRef<HTMLDivElement | null>(null);
|
|
const scrollRef = useRef<HTMLDivElement | null>(null);
|
|
const scrollToComponent = useFollowComponent({
|
|
followRef: selectedRef,
|
|
scrollRef: scrollRef,
|
|
doFollow: !lockAutoScroll,
|
|
topOffset: selectedOffset,
|
|
setScrollFlag: () => (isAutomatedScroll.current = true),
|
|
});
|
|
|
|
// Set window title
|
|
useEffect(() => {
|
|
document.title = 'ontime - Operator';
|
|
}, []);
|
|
|
|
// reset scroll if nothing is selected
|
|
useEffect(() => {
|
|
if (!featureData?.selectedEventId) {
|
|
if (!lockAutoScroll) {
|
|
scrollRef.current?.scrollTo(0, 0);
|
|
}
|
|
}
|
|
}, [featureData?.selectedEventId, lockAutoScroll, scrollRef]);
|
|
|
|
const handleOffset = () => {
|
|
if (featureData.selectedEventId) {
|
|
scrollToComponent();
|
|
}
|
|
setLockAutoScroll(false);
|
|
};
|
|
|
|
const handleScroll = () => {
|
|
// prevent considering automated scrolls as user scrolls
|
|
if (isAutomatedScroll.current) {
|
|
isAutomatedScroll.current = false;
|
|
return;
|
|
}
|
|
|
|
if (selectedRef?.current && scrollRef?.current) {
|
|
const selectedRect = selectedRef.current.getBoundingClientRect();
|
|
const scrollerRect = scrollRef.current.getBoundingClientRect();
|
|
if (selectedRect && scrollerRect) {
|
|
const distanceFromTop = selectedRect.top - scrollerRect.top;
|
|
const hasScrolledOutOfThreshold = distanceFromTop < -8 || distanceFromTop > selectedOffset;
|
|
setLockAutoScroll(hasScrolledOutOfThreshold);
|
|
}
|
|
}
|
|
};
|
|
|
|
const missingData = !data || !userFields || !projectData;
|
|
const isLoading = status === 'loading' || userFieldsStatus === 'loading' || projectDataStatus === 'loading';
|
|
|
|
if (missingData || isLoading) {
|
|
return <Empty text='Loading...' />;
|
|
}
|
|
|
|
// get fields which the user subscribed to
|
|
const subscribe = searchParams.get('subscribe') as keyof UserFields | null;
|
|
const main = searchParams.get('main') as keyof TitleFields | null;
|
|
const secondary = searchParams.get('secondary') as keyof TitleFields | null;
|
|
const subscribedAlias = subscribe ? userFields[subscribe] : '';
|
|
const showSeconds = isStringBoolean(searchParams.get('showseconds'));
|
|
|
|
const operatorOptions = getOperatorOptions(userFields);
|
|
let isPast = Boolean(featureData.selectedEventId);
|
|
const hidePast = isStringBoolean(searchParams.get('hidepast'));
|
|
|
|
const firstEvent = getFirstEvent(data);
|
|
const lastEvent = getLastEvent(data);
|
|
|
|
return (
|
|
<div className={style.operatorContainer}>
|
|
<NavigationMenu />
|
|
<ViewParamsEditor paramFields={operatorOptions} />
|
|
|
|
<StatusBar
|
|
projectTitle={projectData.title}
|
|
playback={featureData.playback}
|
|
selectedEventId={featureData.selectedEventId}
|
|
firstStart={firstEvent?.timeStart}
|
|
firstId={firstEvent?.id}
|
|
lastEnd={lastEvent?.timeEnd}
|
|
lastId={lastEvent?.id}
|
|
/>
|
|
|
|
<div className={style.operatorEvents} onScroll={handleScroll} ref={scrollRef}>
|
|
{data.map((entry) => {
|
|
if (isOntimeEvent(entry)) {
|
|
const isSelected = featureData.selectedEventId === entry.id;
|
|
if (isSelected) {
|
|
isPast = false;
|
|
}
|
|
|
|
// hide past events (if setting) and skipped events
|
|
if ((hidePast && isPast) || entry.skip) {
|
|
return null;
|
|
}
|
|
|
|
const mainField = main ? entry?.[main] || entry.title : entry.title;
|
|
const secondaryField = secondary ? entry?.[secondary] || entry.subtitle : entry.subtitle;
|
|
const subscribedData = (subscribe ? entry?.[subscribe] : undefined) || '';
|
|
|
|
return (
|
|
<OperatorEvent
|
|
key={entry.id}
|
|
colour={entry.colour}
|
|
cue={entry.cue}
|
|
main={mainField}
|
|
secondary={secondaryField}
|
|
timeStart={entry.timeStart}
|
|
timeEnd={entry.timeEnd}
|
|
duration={entry.duration}
|
|
delay={entry.delay}
|
|
isSelected={isSelected}
|
|
subscribed={subscribedData}
|
|
subscribedAlias={subscribedAlias}
|
|
showSeconds={showSeconds}
|
|
isPast={isPast}
|
|
selectedRef={isSelected ? selectedRef : undefined}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (entry.type === SupportedEvent.Block) {
|
|
return <OperatorBlock key={entry.id} title={entry.title} />;
|
|
}
|
|
return null;
|
|
})}
|
|
<div className={style.spacer} />
|
|
</div>
|
|
<FollowButton isVisible={lockAutoScroll} onClickHandler={handleOffset} />
|
|
</div>
|
|
);
|
|
}
|