mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 16:30:10 -07:00
178 lines
5.4 KiB
TypeScript
178 lines
5.4 KiB
TypeScript
/* eslint-disable react/destructuring-assignment */
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
/* eslint-disable react-hooks/rules-of-hooks */
|
|
import React, { useCallback, useContext } from 'react';
|
|
import { Button, Icon, Position, Tooltip } from '@blueprintjs/core';
|
|
import { createStyles, makeStyles } from '@material-ui/core/styles';
|
|
import SettingsOverlay from './SettingsOverlay/SettingsOverlay';
|
|
import ConnectedDevicesListDrawer from './ConnectedDevicesListDrawer';
|
|
import { SettingsContext } from '../containers/SettingsProvider';
|
|
import isProduction from '../utils/isProduction';
|
|
|
|
const Zoom = require('react-reveal/Zoom');
|
|
const Fade = require('react-reveal/Fade');
|
|
|
|
const useStylesWithTheme = (isDarkTheme: boolean) =>
|
|
makeStyles(() =>
|
|
createStyles({
|
|
topPanelRoot: {
|
|
display: 'flex',
|
|
paddingTop: '15px',
|
|
marginBottom: '20px',
|
|
},
|
|
logoWithAppName: { margin: '0 auto' },
|
|
appNameHeader: {
|
|
margin: '0 auto',
|
|
paddingTop: '5px',
|
|
fontFamily: 'Lexend Peta',
|
|
fontSize: '20px',
|
|
color: isDarkTheme ? '#48AFF0' : '#1F4B99',
|
|
cursor: 'default !important',
|
|
},
|
|
topPanelControlButtonsRoot: {
|
|
position: 'absolute',
|
|
right: '15px',
|
|
display: 'flex',
|
|
},
|
|
topPanelControlButton: {
|
|
width: '40px',
|
|
height: '40px',
|
|
borderRadius: '50px',
|
|
cursor: 'default !important',
|
|
},
|
|
topPanelControlButtonMargin: {
|
|
marginRight: '20px',
|
|
cursor: 'default !important',
|
|
},
|
|
topPanelIconOfControlButton: {
|
|
cursor: 'default !important',
|
|
},
|
|
})
|
|
);
|
|
|
|
export default function TopPanel(props: any) {
|
|
const { isDarkTheme } = useContext(SettingsContext);
|
|
|
|
const getClassesCallback = useCallback(() => {
|
|
return useStylesWithTheme(isDarkTheme)();
|
|
}, [isDarkTheme]);
|
|
|
|
const [isSettingsOpen, setIsSettingsOpen] = React.useState(false);
|
|
const [isDrawersOpen, setIsDrawerOpen] = React.useState(false);
|
|
|
|
const handleSettingsOpen = useCallback(() => {
|
|
setIsSettingsOpen(true);
|
|
}, []);
|
|
|
|
const handleSettingsClose = useCallback(() => {
|
|
setIsSettingsOpen(false);
|
|
}, []);
|
|
|
|
const handleToggleConnectedDevicesListDrawer = useCallback(() => {
|
|
setIsDrawerOpen(!isDrawersOpen);
|
|
}, [isDrawersOpen]);
|
|
|
|
const renderConnectedDevicesListButton = useCallback(() => {
|
|
return (
|
|
<div className={getClassesCallback().topPanelControlButtonMargin}>
|
|
<Tooltip content="Connected Devices" position={Position.BOTTOM}>
|
|
<Button
|
|
id="top-panel-connected-devices-list-button"
|
|
intent="none"
|
|
className={getClassesCallback().topPanelControlButton}
|
|
onClick={handleToggleConnectedDevicesListDrawer}
|
|
>
|
|
<Icon
|
|
className={getClassesCallback().topPanelIconOfControlButton}
|
|
icon="th-list"
|
|
iconSize={20}
|
|
/>
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
}, [getClassesCallback, handleToggleConnectedDevicesListDrawer]);
|
|
|
|
const renderHelpButton = useCallback(() => {
|
|
return (
|
|
<div className={getClassesCallback().topPanelControlButtonMargin}>
|
|
<Tooltip content="Help" position={Position.BOTTOM}>
|
|
<Button
|
|
id="top-panel-help-button"
|
|
intent="none"
|
|
className={getClassesCallback().topPanelControlButton}
|
|
>
|
|
<Icon
|
|
className={getClassesCallback().topPanelIconOfControlButton}
|
|
icon="help"
|
|
iconSize={22}
|
|
/>
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
}, [getClassesCallback]);
|
|
|
|
const renderSettingsButton = useCallback(() => {
|
|
return (
|
|
<div className={getClassesCallback().topPanelControlButtonMargin}>
|
|
<Tooltip content="Settings" position={Position.BOTTOM}>
|
|
<Button
|
|
id="top-panel-settings-button"
|
|
onClick={handleSettingsOpen}
|
|
className={getClassesCallback().topPanelControlButton}
|
|
>
|
|
<Icon
|
|
className={getClassesCallback().topPanelIconOfControlButton}
|
|
icon="cog"
|
|
iconSize={22}
|
|
/>
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
}, [getClassesCallback, handleSettingsOpen]);
|
|
|
|
const renderLogoWithAppName = useCallback(() => {
|
|
return (
|
|
<Zoom top duration={isProduction() ? 3000 : 0}>
|
|
<div
|
|
id="logo-with-popover-visit-website"
|
|
className={getClassesCallback().logoWithAppName}
|
|
>
|
|
<h4
|
|
id="deskreen-top-app-name-header"
|
|
className={getClassesCallback().appNameHeader}
|
|
>
|
|
Deskreen
|
|
</h4>
|
|
</div>
|
|
</Zoom>
|
|
);
|
|
}, [getClassesCallback]);
|
|
|
|
return (
|
|
<>
|
|
<div className={getClassesCallback().topPanelRoot}>
|
|
{renderLogoWithAppName()}
|
|
<div className={getClassesCallback().topPanelControlButtonsRoot}>
|
|
<Fade right duration={isProduction() ? 2000 : 0}>
|
|
{renderConnectedDevicesListButton()}
|
|
{renderHelpButton()}
|
|
{renderSettingsButton()}
|
|
</Fade>
|
|
</div>
|
|
</div>
|
|
<SettingsOverlay
|
|
isSettingsOpen={isSettingsOpen}
|
|
handleClose={handleSettingsClose}
|
|
/>
|
|
<ConnectedDevicesListDrawer
|
|
isOpen={isDrawersOpen}
|
|
handleToggle={handleToggleConnectedDevicesListDrawer}
|
|
stepperRef={props.stepperRef}
|
|
/>
|
|
</>
|
|
);
|
|
}
|