source: src/components/settings/drawer/fullscreen-option.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.7 KB
Line 
1import { useState, useCallback } from 'react';
2// @mui
3import { alpha } from '@mui/material/styles';
4import Box from '@mui/material/Box';
5import ButtonBase from '@mui/material/ButtonBase';
6//
7import SvgColor from '../../svg-color';
8
9// ----------------------------------------------------------------------
10
11export 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}
Note: See TracBrowser for help on using the repository browser.