openreplay/frontend/app/components/Session/Player/ClipPlayer/AutoplayToggle.tsx
2025-04-16 15:07:37 +02:00

39 lines
1.1 KiB
TypeScript

import React, { useContext } from 'react';
import { observer } from 'mobx-react-lite';
import {
IPlayerContext,
PlayerContext,
} from 'Components/Session/playerContext';
import { useStore } from '@/mstore';
import { Switch, Tooltip } from 'antd';
import {
CaretRightOutlined,
PauseOutlined,
} from '@ant-design/icons';
import { useTranslation } from 'react-i18next';
function AutoplayToggle() {
const { t } = useTranslation();
const { clipStore } = useStore();
const playerContext = React.useContext<IPlayerContext>(PlayerContext);
// const { player, store } = playerContext;
const { autoplay } = playerContext.store.get();
const handleToggle = () => {
clipStore.toggleAutoplay();
};
return (
<Tooltip title={t('Toggle Autoplay')} placement="bottom">
<Switch
className="custom-switch"
onChange={handleToggle}
checked={clipStore.autoplay}
checkedChildren={<CaretRightOutlined className="switch-icon" />}
unCheckedChildren={<PauseOutlined className="switch-icon" />}
/>
</Tooltip>
);
}
export default observer(AutoplayToggle);