2023-05-04 15:55:24 +00:00
|
|
|
// reference: https://github.com/oliverschwendener/electron-fluent-ui
|
|
|
|
//
|
|
|
|
// MIT License
|
|
|
|
//
|
|
|
|
// Copyright (c) 2023 josStorer
|
|
|
|
// Copyright (c) 2023 oliverschwendener
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
2023-05-03 15:38:54 +00:00
|
|
|
|
2023-05-04 15:55:24 +00:00
|
|
|
import {FluentProvider, Tab, TabList, webDarkTheme} from '@fluentui/react-components';
|
|
|
|
import {FC, useEffect, useState} from 'react';
|
|
|
|
import {Route, Routes, useLocation, useNavigate} from 'react-router';
|
2023-05-07 13:27:13 +00:00
|
|
|
import {pages} from './pages';
|
2023-05-06 12:17:39 +00:00
|
|
|
import {useMediaQuery} from 'usehooks-ts';
|
2023-05-15 13:55:57 +00:00
|
|
|
import {ToastContainer} from 'react-toastify';
|
2023-05-03 15:38:54 +00:00
|
|
|
|
2023-05-04 15:55:24 +00:00
|
|
|
const App: FC = () => {
|
|
|
|
const navigate = useNavigate();
|
|
|
|
const location = useLocation();
|
2023-05-06 12:17:39 +00:00
|
|
|
const mq = useMediaQuery('(min-width: 640px)');
|
2023-05-03 15:38:54 +00:00
|
|
|
|
2023-05-04 15:55:24 +00:00
|
|
|
const [path, setPath] = useState<string>(pages[0].path);
|
|
|
|
|
|
|
|
const selectTab = (selectedPath: unknown) =>
|
|
|
|
typeof selectedPath === 'string' ? navigate({pathname: selectedPath}) : null;
|
|
|
|
|
|
|
|
useEffect(() => setPath(location.pathname), [location]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FluentProvider theme={webDarkTheme} className="h-screen">
|
|
|
|
<div className="flex h-full">
|
2023-05-06 12:17:39 +00:00
|
|
|
<div className="flex flex-col w-16 sm:w-48 p-2 justify-between">
|
2023-05-04 15:55:24 +00:00
|
|
|
<TabList
|
|
|
|
size="large"
|
|
|
|
appearance="subtle"
|
|
|
|
selectedValue={path}
|
|
|
|
onTabSelect={(_, {value}) => selectTab(value)}
|
|
|
|
vertical
|
|
|
|
>
|
2023-05-06 12:17:39 +00:00
|
|
|
{pages.filter(page => page.top).map(({label, path, icon}, index) => (
|
2023-05-04 15:55:24 +00:00
|
|
|
<Tab icon={icon} key={`${path}-${index}`} value={path}>
|
2023-05-06 12:17:39 +00:00
|
|
|
{mq && label}
|
2023-05-04 15:55:24 +00:00
|
|
|
</Tab>
|
|
|
|
))}
|
|
|
|
</TabList>
|
|
|
|
<TabList
|
|
|
|
size="large"
|
|
|
|
appearance="subtle"
|
|
|
|
selectedValue={path}
|
|
|
|
onTabSelect={(_, {value}) => selectTab(value)}
|
|
|
|
vertical
|
|
|
|
>
|
2023-05-06 12:17:39 +00:00
|
|
|
{pages.filter(page => !page.top).map(({label, path, icon}, index) => (
|
2023-05-04 15:55:24 +00:00
|
|
|
<Tab icon={icon} key={`${path}-${index}`} value={path}>
|
2023-05-06 12:17:39 +00:00
|
|
|
{mq && label}
|
2023-05-04 15:55:24 +00:00
|
|
|
</Tab>
|
|
|
|
))}
|
|
|
|
</TabList>
|
|
|
|
</div>
|
|
|
|
<div className="h-full w-full p-2 box-border overflow-y-hidden">
|
|
|
|
<Routes>
|
|
|
|
{pages.map(({path, element}, index) => (
|
|
|
|
<Route key={`${path}-${index}`} path={path} element={element}/>
|
|
|
|
))}
|
|
|
|
</Routes>
|
2023-05-03 15:38:54 +00:00
|
|
|
</div>
|
2023-05-04 15:55:24 +00:00
|
|
|
</div>
|
2023-05-15 13:55:57 +00:00
|
|
|
<ToastContainer
|
|
|
|
style={{
|
|
|
|
width: '250px'
|
|
|
|
}}
|
|
|
|
position="top-right"
|
|
|
|
autoClose={4000}
|
|
|
|
newestOnTop={true}
|
|
|
|
closeOnClick={false}
|
|
|
|
rtl={false}
|
|
|
|
pauseOnFocusLoss={false}
|
|
|
|
draggable={false}
|
|
|
|
theme={'dark'}
|
|
|
|
/>
|
2023-05-04 15:55:24 +00:00
|
|
|
</FluentProvider>
|
|
|
|
);
|
|
|
|
};
|
2023-05-03 15:38:54 +00:00
|
|
|
|
2023-05-04 15:55:24 +00:00
|
|
|
export default App;
|