import React from 'react'; import Timeline from 'Components/Session/Player/ClipPlayer/Timeline'; import { PlayButton, PlayingState } from '@/player-ui'; import { PlayerContext } from 'Components/Session/playerContext'; import { observer } from 'mobx-react-lite'; import { Button } from 'antd'; import { useHistory } from 'react-router-dom'; import { CirclePlay } from 'lucide-react'; import { withSiteId } from '@/routes'; import * as routes from '@/routes'; import { useStore } from '@/mstore'; import Session from 'Types/session'; import { useTranslation } from 'react-i18next'; function ClipPlayerControls({ session, range, isFull, }: { session: Session; range: [number, number]; isFull?: boolean; }) { const { t } = useTranslation(); const { projectsStore } = useStore(); const { player, store } = React.useContext(PlayerContext); const history = useHistory(); const { siteId } = projectsStore; const { playing, completed } = store.get(); const state = completed ? PlayingState.Completed : playing ? PlayingState.Playing : PlayingState.Paused; const togglePlay = () => { player.togglePlay(); }; const showFullSession = () => { const path = withSiteId(routes.session(session.sessionId), siteId); history.push(`${path}?jumpto=${Math.round(range[0])}`); }; return (