1 | import { useState, useCallback } from 'react';
|
---|
2 | // @mui
|
---|
3 | import { alpha } from '@mui/material/styles';
|
---|
4 | import Box from '@mui/material/Box';
|
---|
5 | import ButtonBase from '@mui/material/ButtonBase';
|
---|
6 | //
|
---|
7 | import SvgColor from '../../svg-color';
|
---|
8 |
|
---|
9 | // ----------------------------------------------------------------------
|
---|
10 |
|
---|
11 | export default function FullScreenOption() {
|
---|
12 | const [fullscreen, setFullscreen] = useState(false);
|
---|
13 |
|
---|
14 | const onToggleFullScreen = useCallback(() => {
|
---|
15 | if (!document.fullscreenElement) {
|
---|
16 | document.documentElement.requestFullscreen();
|
---|
17 | setFullscreen(true);
|
---|
18 | } else if (document.exitFullscreen) {
|
---|
19 | document.exitFullscreen();
|
---|
20 | setFullscreen(false);
|
---|
21 | }
|
---|
22 | }, []);
|
---|
23 |
|
---|
24 | return (
|
---|
25 | <Box sx={{ p: 2.5 }}>
|
---|
26 | <ButtonBase
|
---|
27 | onClick={onToggleFullScreen}
|
---|
28 | sx={{
|
---|
29 | width: 1,
|
---|
30 | height: 48,
|
---|
31 | borderRadius: 1,
|
---|
32 | color: 'text.disabled',
|
---|
33 | typography: 'subtitle2',
|
---|
34 | border: (theme) => `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
---|
35 | ...(fullscreen && {
|
---|
36 | color: 'text.primary',
|
---|
37 | }),
|
---|
38 | '& .svg-color': {
|
---|
39 | background: (theme) =>
|
---|
40 | `linear-gradient(135deg, ${theme.palette.grey[500]} 0%, ${theme.palette.grey[600]} 100%)`,
|
---|
41 | ...(fullscreen && {
|
---|
42 | background: (theme) =>
|
---|
43 | `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
---|
44 | }),
|
---|
45 | },
|
---|
46 | }}
|
---|
47 | >
|
---|
48 | <SvgColor
|
---|
49 | src={`/assets/icons/setting/${fullscreen ? 'ic_exit_full_screen' : 'ic_full_screen'}.svg`}
|
---|
50 | sx={{ width: 16, height: 16, mr: 1 }}
|
---|
51 | />
|
---|
52 |
|
---|
53 | {fullscreen ? 'Exit Fullscreen' : 'Fullscreen'}
|
---|
54 | </ButtonBase>
|
---|
55 | </Box>
|
---|
56 | );
|
---|
57 | }
|
---|