openreplay/frontend/app/components/Session_/Player/Overlay/AutoplayTimer.tsx
Shekar Siri d0bcae82f2
change(ui) - player improvements (#1164)
* change(ui) - player - back button spacing

* change(ui) - onboarding - changes

* change(ui) - onboarding - changes

* change(ui) - integrations gap-4

* change(ui) - install script copy button styles

* change(ui) - copy button in account settings

* fix(ui) - error details modal loader position

* change(ui) - share popup styles

* change(ui) - player improvements

* change(ui) - player improvements - playback speed with menu

* change(ui) - player improvements - current timezone

* change(ui) - player improvements - autoplay options
2023-04-13 17:53:36 +02:00

76 lines
2.2 KiB
TypeScript

import React, { useEffect, useState } from 'react';
import cn from 'classnames';
import { connect } from 'react-redux';
import { withRouter, RouteComponentProps } from 'react-router-dom';
import { Button, Link, Icon } from 'UI';
import { session as sessionRoute, withSiteId } from 'App/routes';
import stl from './AutoplayTimer.module.css';
import clsOv from './overlay.module.css';
import AutoplayToggle from 'Shared/AutoplayToggle';
interface IProps extends RouteComponentProps {
nextId: number;
siteId: string;
}
function AutoplayTimer({ nextId, siteId, history }: IProps) {
let timer: NodeJS.Timer;
const [cancelled, setCancelled] = useState(false);
const [counter, setCounter] = useState(5);
useEffect(() => {
if (counter > 0) {
timer = setTimeout(() => {
setCounter(counter - 1);
}, 1000);
}
if (counter === 0) {
history.push(withSiteId(sessionRoute(nextId), siteId));
}
return () => clearTimeout(timer);
}, [counter]);
const cancel = () => {
clearTimeout(timer);
setCancelled(true);
};
if (cancelled) return null;
return (
<div className={cn(clsOv.overlay, stl.overlayBg)}>
<div className="border p-5 shadow-lg bg-white rounded">
<div className="mb-5">
Autoplaying next session in <span className="font-medium">{counter}</span> seconds
</div>
<div className="flex items-center justify-between">
<div className="mr-10">
<AutoplayToggle />
</div>
<div className="flex items-center">
<Button variant="text-primary" onClick={cancel}>
Cancel
</Button>
<div className="px-2" />
<Link to={sessionRoute(nextId)} disabled={!nextId}>
<Button variant="outline">Play Now</Button>
</Link>
</div>
</div>
{/* <div className="mt-2 flex items-center color-gray-dark">
Turn on/off auto-replay in <Icon name="ellipsis-v" className="mx-1" /> More options
</div> */}
</div>
</div>
);
}
export default withRouter(
connect((state: any) => ({
siteId: state.getIn(['site', 'siteId']),
nextId: parseInt(state.getIn(['sessions', 'nextId'])),
}))(AutoplayTimer)
);