mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
174 lines
5.6 KiB
TypeScript
174 lines
5.6 KiB
TypeScript
import { memo, useEffect, useState } from 'react';
|
|
import { Tooltip } from '@chakra-ui/react';
|
|
import { IoArrowDown } from '@react-icons/all-files/io5/IoArrowDown';
|
|
import { IoArrowUp } from '@react-icons/all-files/io5/IoArrowUp';
|
|
import { IoBan } from '@react-icons/all-files/io5/IoBan';
|
|
import { IoFlag } from '@react-icons/all-files/io5/IoFlag';
|
|
import { IoPeople } from '@react-icons/all-files/io5/IoPeople';
|
|
import { IoPlay } from '@react-icons/all-files/io5/IoPlay';
|
|
import { IoPlayForward } from '@react-icons/all-files/io5/IoPlayForward';
|
|
import { IoPlaySkipForward } from '@react-icons/all-files/io5/IoPlaySkipForward';
|
|
import { IoStop } from '@react-icons/all-files/io5/IoStop';
|
|
import { IoTime } from '@react-icons/all-files/io5/IoTime';
|
|
import { EndAction, MaybeString, Playback, TimerType, TimeStrategy } from 'ontime-types';
|
|
|
|
import { cx } from '../../../common/utils/styleUtils';
|
|
import { tooltipDelayMid } from '../../../ontimeConfig';
|
|
import EditableBlockTitle from '../common/EditableBlockTitle';
|
|
import TimeInputFlow from '../time-input-flow/TimeInputFlow';
|
|
|
|
import EventBlockPlayback from './composite/EventBlockPlayback';
|
|
import EventBlockProgressBar from './composite/EventBlockProgressBar';
|
|
|
|
import style from './EventBlock.module.scss';
|
|
|
|
interface EventBlockInnerProps {
|
|
eventId: string;
|
|
timeStart: number;
|
|
timeEnd: number;
|
|
duration: number;
|
|
timeStrategy: TimeStrategy;
|
|
linkStart: MaybeString;
|
|
countToEnd: boolean;
|
|
eventIndex: number;
|
|
isPublic: boolean;
|
|
endAction: EndAction;
|
|
timerType: TimerType;
|
|
title: string;
|
|
note: string;
|
|
delay: number;
|
|
isNext: boolean;
|
|
skip: boolean;
|
|
loaded: boolean;
|
|
playback?: Playback;
|
|
isRolling: boolean;
|
|
}
|
|
|
|
function EventBlockInner(props: EventBlockInnerProps) {
|
|
const {
|
|
eventId,
|
|
timeStart,
|
|
timeEnd,
|
|
duration,
|
|
timeStrategy,
|
|
linkStart,
|
|
countToEnd,
|
|
isPublic = true,
|
|
endAction,
|
|
timerType,
|
|
title,
|
|
note,
|
|
delay,
|
|
isNext,
|
|
skip = false,
|
|
loaded,
|
|
playback,
|
|
isRolling,
|
|
} = props;
|
|
|
|
const [renderInner, setRenderInner] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setRenderInner(true);
|
|
}, []);
|
|
|
|
const eventIsPlaying = playback === Playback.Play;
|
|
const eventIsPaused = playback === Playback.Pause;
|
|
|
|
const playBtnStyles = { _hover: {} };
|
|
if (!skip && eventIsPlaying) {
|
|
playBtnStyles._hover = { bg: '#c05621' }; // $ontime-paused
|
|
} else if (!skip && !eventIsPlaying) {
|
|
playBtnStyles._hover = {};
|
|
}
|
|
|
|
return !renderInner ? null : (
|
|
<>
|
|
<div className={style.eventTimers}>
|
|
<TimeInputFlow
|
|
eventId={eventId}
|
|
timeStart={timeStart}
|
|
timeEnd={timeEnd}
|
|
duration={duration}
|
|
delay={delay}
|
|
timeStrategy={timeStrategy}
|
|
linkStart={linkStart}
|
|
countToEnd={countToEnd}
|
|
/>
|
|
</div>
|
|
<div className={style.titleSection}>
|
|
<EditableBlockTitle title={title} eventId={eventId} placeholder='Event title' className={style.eventTitle} />
|
|
{isNext && <span className={style.nextTag}>UP NEXT</span>}
|
|
</div>
|
|
<EventBlockPlayback
|
|
eventId={eventId}
|
|
skip={skip}
|
|
isPlaying={eventIsPlaying}
|
|
isPaused={eventIsPaused}
|
|
loaded={loaded}
|
|
disablePlayback={skip || isRolling}
|
|
/>
|
|
<div className={style.statusElements} id='block-status' data-ispublic={isPublic}>
|
|
<span className={style.eventNote}>{note}</span>
|
|
<div className={loaded ? style.progressBg : `${style.progressBg} ${style.hidden}`}>
|
|
{loaded && <EventBlockProgressBar />}
|
|
</div>
|
|
<div className={style.eventStatus} tabIndex={-1}>
|
|
<Tooltip label={`Time type: ${timerType}`} openDelay={tooltipDelayMid}>
|
|
<span>
|
|
<TimerIcon type={timerType} className={style.statusIcon} />
|
|
</span>
|
|
</Tooltip>
|
|
<Tooltip label={`End action: ${endAction}`} openDelay={tooltipDelayMid}>
|
|
<span>
|
|
<EndActionIcon action={endAction} className={style.statusIcon} />
|
|
</span>
|
|
</Tooltip>
|
|
<Tooltip label={`${countToEnd ? 'Count to End' : 'Count duration'}`} openDelay={tooltipDelayMid}>
|
|
<span>
|
|
<IoFlag className={`${style.statusIcon} ${countToEnd ? style.active : style.disabled}`} />
|
|
</span>
|
|
</Tooltip>
|
|
<Tooltip label={`${isPublic ? 'Event is public' : 'Event is private'}`} openDelay={tooltipDelayMid}>
|
|
<span>
|
|
<IoPeople className={`${style.statusIcon} ${isPublic ? style.active : style.disabled}`} />
|
|
</span>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default memo(EventBlockInner);
|
|
|
|
function EndActionIcon(props: { action: EndAction; className: string }) {
|
|
const { action, className } = props;
|
|
const maybeActiveClasses = cx([action !== EndAction.None && style.active, className]);
|
|
|
|
if (action === EndAction.LoadNext) {
|
|
return <IoPlaySkipForward className={maybeActiveClasses} />;
|
|
}
|
|
if (action === EndAction.PlayNext) {
|
|
return <IoPlayForward className={maybeActiveClasses} />;
|
|
}
|
|
if (action === EndAction.Stop) {
|
|
return <IoStop className={maybeActiveClasses} />;
|
|
}
|
|
return <IoPlay className={className} />;
|
|
}
|
|
|
|
function TimerIcon(props: { type: TimerType; className: string }) {
|
|
const { type, className } = props;
|
|
if (type === TimerType.CountUp) {
|
|
return <IoArrowUp className={className} />;
|
|
}
|
|
if (type === TimerType.Clock) {
|
|
return <IoTime className={className} />;
|
|
}
|
|
if (type === TimerType.None) {
|
|
return <IoBan className={className} />;
|
|
}
|
|
return <IoArrowDown className={className} />;
|
|
}
|