openreplay/frontend/app/components/Session_/QueueControls/QueueControls.tsx
Delirium 96453e96e5
feat ui: change in player controls, move ai summary button, refactor old code etc (#1978)
* feat(ui): rework for player look

* remove unused code

* move summary button and block inside xray

* move class

* fixup mobile controls panel

* change notes, change xray feat selection
2024-03-21 10:40:36 +01:00

116 lines
3.5 KiB
TypeScript

import React, { useEffect } from 'react';
import { connect } from 'react-redux';
import { setAutoplayValues } from 'Duck/sessions';
import { withSiteId, session as sessionRoute } from 'App/routes';
import AutoplayToggle from "Shared/AutoplayToggle/AutoplayToggle";
import { withRouter, RouteComponentProps } from 'react-router-dom';
import cn from 'classnames';
import { fetchAutoplaySessions } from 'Duck/search';
import { LeftOutlined, RightOutlined } from '@ant-design/icons';
import { Button, Popover } from 'antd'
const PER_PAGE = 10;
interface Props extends RouteComponentProps {
siteId: string;
previousId: string;
nextId: string;
defaultList: any;
currentPage: number;
total: number;
setAutoplayValues: () => void;
latestRequestTime: any;
sessionIds: any;
fetchAutoplaySessions: (page: number) => Promise<void>;
}
function QueueControls(props: Props) {
const {
siteId,
previousId,
nextId,
currentPage,
total,
sessionIds,
latestRequestTime,
match: {
// @ts-ignore
params: { sessionId },
},
} = props;
const disabled = sessionIds.length === 0;
useEffect(() => {
if (latestRequestTime) {
props.setAutoplayValues();
const totalPages = Math.ceil(total / PER_PAGE);
const index = sessionIds.indexOf(sessionId);
// check for the last page and load the next
if (currentPage !== totalPages && index === sessionIds.length - 1) {
props.fetchAutoplaySessions(currentPage + 1).then(props.setAutoplayValues);
}
}
}, []);
const nextHandler = () => {
props.history.push(withSiteId(sessionRoute(nextId), siteId));
};
const prevHandler = () => {
props.history.push(withSiteId(sessionRoute(previousId), siteId));
};
return (
<div className="flex items-center gap-1">
<div
onClick={prevHandler}
className={cn('p-1 group rounded-full', {
'pointer-events-none opacity-50': !previousId,
'cursor-pointer': !!previousId,
})}
>
<Popover
placement="bottom"
content={<div className="whitespace-nowrap">Play Previous Session</div>}
open={previousId ? undefined : false}
>
<Button size={'small'} shape={'circle'} disabled={!previousId} className={'flex items-center justify-center'}>
<LeftOutlined />
</Button>
</Popover>
</div>
<AutoplayToggle />
<div
onClick={nextHandler}
className={cn('p-1 group ml-1 rounded-full', {
'pointer-events-none opacity-50': !nextId,
'cursor-pointer': !!nextId,
})}
>
<Popover
placement="bottom"
content={<div className="whitespace-nowrap">Play Next Session</div>}
open={nextId ? undefined : false}
>
<Button size={'small'} shape={'circle'} disabled={!previousId} className={'flex items-center justify-center'}>
<RightOutlined />
</Button>
</Popover>
</div>
</div>
);
}
export default connect(
(state: any) => ({
previousId: state.getIn(['sessions', 'previousId']),
nextId: state.getIn(['sessions', 'nextId']),
siteId: state.getIn(['site', 'siteId']),
currentPage: state.getIn(['search', 'currentPage']) || 1,
total: state.getIn(['sessions', 'total']) || 0,
sessionIds: state.getIn(['sessions', 'sessionIds']) || [],
latestRequestTime: state.getIn(['search', 'latestRequestTime']),
}),
{ setAutoplayValues, fetchAutoplaySessions }
)(withRouter(QueueControls));