import React from 'react'; import { connect } from 'react-redux'; import { findDOMNode } from 'react-dom'; import cn from 'classnames'; import LiveControls from './LiveControls'; import ConsolePanel from 'Shared/DevTools/ConsolePanel'; import { observer } from 'mobx-react-lite' import Overlay from './Overlay'; import stl from 'Components/Session_/Player/player.module.css'; import { PlayerContext, ILivePlayerContext } from 'App/components/Session/playerContext'; import { CONSOLE } from "Duck/components/player"; interface IProps { closedLive: boolean; fullView: boolean; isMultiview?: boolean; bottomBlock: number; } function Player(props: IProps) { const { closedLive, fullView, isMultiview, bottomBlock, } = props; // @ts-ignore TODO const playerContext = React.useContext(PlayerContext); const screenWrapper = React.useRef(null); const ready = playerContext.store.get().ready React.useEffect(() => { if (!props.closedLive || isMultiview) { const parentElement = findDOMNode(screenWrapper.current) as HTMLDivElement | null; //TODO: good architecture if (parentElement) { playerContext.player.attach(parentElement); playerContext.player.play(); } } }, []); React.useEffect(() => { playerContext.player.scale(); }, [playerContext.player, ready]); if (!playerContext.player) return null; const maxWidth = '100vw'; return (
{bottomBlock === CONSOLE ? (
) : null} {!fullView && !isMultiview ? ( ) : null}
); } export default connect( (state: any) => { const isAssist = window.location.pathname.includes('/assist/'); return { sessionId: state.getIn(['sessions', 'current']).sessionId, bottomBlock: state.getIn(['components', 'player', 'bottomBlock']), closedLive: !!state.getIn(['sessions', 'errors']) || (isAssist && !state.getIn(['sessions', 'current']).live), }; } )(observer(Player));