* start moving ui to redux tlk * remove unused reducer * changes for gdpr and site types * ui: migrating duck/roles to mobx * ui: drop unreferenced types * ui: drop unreferenced types * ui: move player slice reducer to mobx family * ui: move assignments to issueReportingStore.ts * remove issues store * some fixes after issues store * remove errors reducer, drop old components * finish removing errors reducer * start moving integrations state to mobx * change(ui): funnel duck cleanup * change(ui): custom fields * change(ui): customMetrics cleanup * change(ui): customMetrics cleanup * change(ui): duck/filters minor cleanup * change(ui): duck/filters cleanup * change(ui): duck/customMetrics cleanup and upgrades * fix integrations service, fix babel config to >.25 + not ie * refactoring integrations reducers etc WIP * finish removing integrations state * some fixes for integrated check * start of projects refactoring * move api and "few" files to new project store * new batch for site -> projects * fix setid context * move all critical components, drop site duck * remove all duck/site refs, remove old components * fixup for SessionTags.tsx, remove duck/sources (?) * move session store * init sessionstore outside of context * fix userfilter * replace simple actions for session store * sessions sotre * Rtm temp (#2597) * change(ui): duck/search wip * change(ui): duck/search wip * change(ui): duck/search wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): search states * change(ui): search states * change(ui): search states * change(ui): fix savedSearch store * change(ui): fix savedSearch store * some fixes for session connector * change(ui): fix savedSearch store * change(ui): fix searchLive * change(ui): fix searchLive * fixes for session replay * change(ui): bookmark fetch * last components for sessions * add fetchautoplaylist * finish session reducer, remove deleted reducers * change(ui): fix the search fetch * change(ui): fix the search fetch * fix integrations call ctx * ensure ctx for sessionstore * fix(ui): checking for latest sessions path * start removing user reducer * removing user reducer pt2... * finish user store * remove rand log * fix crashes * tinkering workflow file for tracker test * making sure prefetched sessions work properly * fix conflict * fix router redirects during loading --------- Co-authored-by: Shekar Siri <sshekarsiri@gmail.com>
307 lines
9.7 KiB
TypeScript
307 lines
9.7 KiB
TypeScript
import cn from 'classnames';
|
|
import { observer } from 'mobx-react-lite';
|
|
import React from 'react';
|
|
import { useHistory, useParams } from 'react-router-dom';
|
|
|
|
import { useStore } from 'App/mstore';
|
|
import {
|
|
debounceUpdate,
|
|
getDefaultPanelHeight,
|
|
} from 'Components/Session/Player/ReplayPlayer/PlayerInst';
|
|
import { SpotOverviewPanelCont } from 'Components/Session_/OverviewPanel/OverviewPanel';
|
|
import withPermissions from 'Components/hocs/withPermissions';
|
|
import { EscapeButton, Loader } from 'UI';
|
|
|
|
import AccessError from './components/AccessError';
|
|
import SpotConsole from './components/Panels/SpotConsole';
|
|
import SpotNetwork from './components/Panels/SpotNetwork';
|
|
import SpotLocation from './components/SpotLocation';
|
|
import SpotPlayerControls from './components/SpotPlayerControls';
|
|
import SpotPlayerHeader from './components/SpotPlayerHeader';
|
|
import SpotPlayerSideBar from './components/SpotSideBar';
|
|
import SpotTimeline from './components/SpotTimeline';
|
|
import SpotVideoContainer from './components/SpotVideoContainer';
|
|
// import VideoJS from "./components/Vjs"; backup player
|
|
import { Tab } from './consts';
|
|
import spotPlayerStore, { PANELS } from './spotPlayerStore';
|
|
|
|
function SpotPlayer() {
|
|
const defaultHeight = getDefaultPanelHeight();
|
|
const history = useHistory();
|
|
const [panelHeight, setPanelHeight] = React.useState(defaultHeight);
|
|
const { spotStore, userStore } = useStore();
|
|
const userEmail = userStore.account.name;
|
|
const loggedIn = !!userEmail;
|
|
const { spotId } = useParams<{ spotId: string }>();
|
|
const [activeTab, setActiveTab] = React.useState<Tab | null>(null);
|
|
|
|
React.useEffect(() => {
|
|
if (spotStore.currentSpot) {
|
|
document.title = spotStore.currentSpot.title + ' - OpenReplay';
|
|
}
|
|
}, [spotStore.currentSpot]);
|
|
React.useEffect(() => {
|
|
if (!loggedIn) {
|
|
const query = new URLSearchParams(window.location.search);
|
|
const pubKey = query.get('pub_key');
|
|
if (pubKey) {
|
|
spotStore.setAccessKey(pubKey);
|
|
} else {
|
|
history.push('/');
|
|
}
|
|
}
|
|
}, [loggedIn]);
|
|
|
|
const handleResize = (e: React.MouseEvent<HTMLDivElement>) => {
|
|
e.preventDefault();
|
|
const startY = e.clientY;
|
|
const startHeight = panelHeight;
|
|
|
|
const handleMouseUp = () => {
|
|
document.removeEventListener('mousemove', handleMouseMove);
|
|
document.removeEventListener('mouseup', handleMouseUp);
|
|
};
|
|
|
|
const handleMouseMove = (e: MouseEvent) => {
|
|
const deltaY = e.clientY - startY;
|
|
const diff = startHeight - deltaY;
|
|
const max =
|
|
diff > window.innerHeight / 1.5 ? window.innerHeight / 1.5 : diff;
|
|
const newHeight = Math.max(50, max);
|
|
setPanelHeight(newHeight);
|
|
debounceUpdate(newHeight);
|
|
};
|
|
|
|
document.addEventListener('mousemove', handleMouseMove);
|
|
document.addEventListener('mouseup', handleMouseUp);
|
|
};
|
|
React.useEffect(() => {
|
|
spotStore.fetchSpotById(spotId).then(async (spotInst) => {
|
|
if (spotInst.mobURL) {
|
|
try {
|
|
void spotStore.getPubKey(spotId);
|
|
} catch {
|
|
// ignore
|
|
}
|
|
try {
|
|
const mobResp = await fetch(spotInst.mobURL);
|
|
const {
|
|
clicks = [],
|
|
logs = [],
|
|
network = [],
|
|
locations = [],
|
|
startTs = 0,
|
|
browserVersion,
|
|
resolution,
|
|
platform,
|
|
} = await mobResp.json();
|
|
spotPlayerStore.setStartTs(startTs);
|
|
spotPlayerStore.setDuration(spotInst.duration);
|
|
spotPlayerStore.setDeviceData(browserVersion, resolution, platform);
|
|
spotPlayerStore.setEvents(logs, locations, clicks, network);
|
|
} catch (e) {
|
|
console.error("Couldn't parse mob file", e);
|
|
}
|
|
}
|
|
});
|
|
|
|
const ev = (e: KeyboardEvent) => {
|
|
if (
|
|
e.target instanceof HTMLInputElement ||
|
|
e.target instanceof HTMLTextAreaElement
|
|
) {
|
|
return false;
|
|
}
|
|
if (e.key === 'Escape') {
|
|
spotPlayerStore.setIsFullScreen(false);
|
|
}
|
|
if (e.key === 'F') {
|
|
spotPlayerStore.setIsFullScreen(true);
|
|
}
|
|
if (e.key === ' ') {
|
|
spotPlayerStore.setIsPlaying(!spotPlayerStore.isPlaying);
|
|
}
|
|
if (e.key === 'ArrowDown') {
|
|
const current = spotPlayerStore.playbackRate;
|
|
spotPlayerStore.setPlaybackRate(Math.max(0.5, current / 2));
|
|
}
|
|
if (e.key === 'ArrowUp') {
|
|
const current = spotPlayerStore.playbackRate;
|
|
const highest = 16;
|
|
spotPlayerStore.setPlaybackRate(Math.min(highest, current * 2));
|
|
}
|
|
if (e.key === 'ArrowRight') {
|
|
spotPlayerStore.setTime(
|
|
Math.min(
|
|
spotPlayerStore.duration,
|
|
spotPlayerStore.time + spotPlayerStore.skipInterval
|
|
)
|
|
);
|
|
}
|
|
if (e.key === 'ArrowLeft') {
|
|
spotPlayerStore.setTime(
|
|
Math.max(0, spotPlayerStore.time - spotPlayerStore.skipInterval)
|
|
);
|
|
}
|
|
};
|
|
|
|
document.addEventListener('keydown', ev);
|
|
return () => {
|
|
document.removeEventListener('keydown', ev);
|
|
spotStore.clearCurrent();
|
|
spotPlayerStore.clearData();
|
|
};
|
|
}, []);
|
|
if (!spotStore.currentSpot) {
|
|
return (
|
|
<div
|
|
className={
|
|
'w-screen h-screen flex items-center justify-center flex-col gap-2'
|
|
}
|
|
>
|
|
{spotStore.accessError ? <AccessError /> : <Loader />}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const closeTab = () => {
|
|
setActiveTab(null);
|
|
};
|
|
|
|
const onPanelClose = () => {
|
|
spotPlayerStore.setActivePanel(null);
|
|
};
|
|
|
|
const isFullScreen = spotPlayerStore.isFullScreen;
|
|
// 2nd player option
|
|
// const base64toblob = (str: string) => {
|
|
// const byteCharacters = atob(str);
|
|
// const byteNumbers = new Array(byteCharacters.length);
|
|
// for (let i = 0; i < byteCharacters.length; i++) {
|
|
// byteNumbers[i] = byteCharacters.charCodeAt(i);
|
|
// }
|
|
// const byteArray = new Uint8Array(byteNumbers);
|
|
// return new Blob([byteArray]);
|
|
// };
|
|
//
|
|
// const url = URL.createObjectURL(base64toblob(spotStore.currentSpot.streamFile));
|
|
// const videoJsOptions = {
|
|
// autoplay: true,
|
|
// controls: true,
|
|
// responsive: false,
|
|
// fluid: false,
|
|
// fill: true,
|
|
// sources: [{
|
|
// src: url,
|
|
// type: 'application/x-mpegURL'
|
|
// }]
|
|
// };
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'w-screen h-screen flex flex-col',
|
|
isFullScreen ? 'relative' : ''
|
|
)}
|
|
>
|
|
{isFullScreen ? (
|
|
<EscapeButton onClose={() => spotPlayerStore.setIsFullScreen(false)} />
|
|
) : null}
|
|
<SpotPlayerHeader
|
|
activeTab={activeTab}
|
|
setActiveTab={setActiveTab}
|
|
title={spotStore.currentSpot.title}
|
|
user={spotStore.currentSpot.user}
|
|
date={spotStore.currentSpot.createdAt}
|
|
resolution={spotPlayerStore.resolution}
|
|
platform={spotPlayerStore.platform}
|
|
browserVersion={spotPlayerStore.browserVersion}
|
|
/>
|
|
<div className={'w-full h-full flex'}>
|
|
<div className={'w-full h-full flex flex-col justify-between'}>
|
|
<SpotLocation />
|
|
<div className={cn('w-full h-full', isFullScreen ? '' : 'relative')}>
|
|
{/*<VideoJS backup player */}
|
|
{/* options={videoJsOptions}*/}
|
|
{/*/>*/}
|
|
<SpotVideoContainer
|
|
videoURL={spotStore.currentSpot.videoURL!}
|
|
streamFile={spotStore.currentSpot.streamFile}
|
|
thumbnail={spotStore.currentSpot.thumbnail}
|
|
checkReady={() => spotStore.checkIsProcessed(spotId)}
|
|
/>
|
|
</div>
|
|
{!isFullScreen && spotPlayerStore.activePanel ? (
|
|
<div
|
|
style={{
|
|
height: panelHeight,
|
|
maxWidth: activeTab ? 'calc(100vw - 320px)' : '100vw',
|
|
width: '100%',
|
|
position: 'relative',
|
|
overflow: 'hidden',
|
|
}}
|
|
>
|
|
<div
|
|
onMouseDown={handleResize}
|
|
className={
|
|
'w-full h-2 cursor-ns-resize absolute top-0 left-0 z-20'
|
|
}
|
|
/>
|
|
{spotPlayerStore.activePanel ? (
|
|
<div className={'w-full h-full bg-white'}>
|
|
{spotPlayerStore.activePanel === PANELS.CONSOLE ? (
|
|
<SpotConsole onClose={onPanelClose} />
|
|
) : null}
|
|
{spotPlayerStore.activePanel === PANELS.NETWORK ? (
|
|
<SpotNetwork
|
|
onClose={onPanelClose}
|
|
panelHeight={panelHeight}
|
|
/>
|
|
) : null}
|
|
{spotPlayerStore.activePanel === PANELS.OVERVIEW ? (
|
|
<SpotOverviewConnector />
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
<SpotTimeline />
|
|
{isFullScreen ? null : <SpotPlayerControls />}
|
|
</div>
|
|
<SpotPlayerSideBar
|
|
activeTab={activeTab}
|
|
onClose={closeTab}
|
|
comments={spotStore.currentSpot?.comments ?? []}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const SpotOverviewConnector = observer(() => {
|
|
const endTime = spotPlayerStore.duration * 1000;
|
|
const time = spotPlayerStore.time * 1000;
|
|
const resourceList = spotPlayerStore.network
|
|
.filter((r: any) => r.isRed || r.isYellow || (r.status && r.status >= 400))
|
|
.filter((i: any) => i.type === 'xhr');
|
|
const exceptionsList = spotPlayerStore.logs.filter(
|
|
(l) => l.level === 'error'
|
|
);
|
|
|
|
const onClose = () => {
|
|
spotPlayerStore.setActivePanel(null);
|
|
};
|
|
return (
|
|
<SpotOverviewPanelCont
|
|
exceptionsList={exceptionsList}
|
|
resourceList={resourceList}
|
|
spotTime={time}
|
|
spotEndTime={endTime}
|
|
onClose={onClose}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export default withPermissions(['SPOT'])(
|
|
observer(SpotPlayer)
|
|
);
|