RWKV-Runner/frontend/src/App.tsx

110 lines
4.0 KiB
TypeScript
Raw Normal View History

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-22 02:52:06 +00:00
import { FluentProvider, Tab, TabList, webDarkTheme, webLightTheme } from '@fluentui/react-components';
import { FC, useEffect, useState } from 'react';
import { Route, Routes, useLocation, useNavigate } from 'react-router';
import { pages } from './pages';
import { useMediaQuery } from 'usehooks-ts';
import { ToastContainer } from 'react-toastify';
2023-05-17 15:27:52 +00:00
import commonStore from './stores/commonStore';
2023-05-22 02:52:06 +00:00
import { observer } from 'mobx-react-lite';
import { useTranslation } from 'react-i18next';
2023-05-03 15:38:54 +00:00
2023-05-17 15:27:52 +00:00
const App: FC = observer(() => {
2023-05-22 02:52:06 +00:00
const { t } = useTranslation();
2023-05-04 15:55:24 +00:00
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) =>
2023-05-22 02:52:06 +00:00
typeof selectedPath === 'string' ? navigate({ pathname: selectedPath }) : null;
2023-05-04 15:55:24 +00:00
useEffect(() => setPath(location.pathname), [location]);
return (
2023-05-19 07:40:17 +00:00
<FluentProvider className="h-screen"
2023-05-22 02:52:06 +00:00
theme={commonStore.settings.darkMode ? webDarkTheme : webLightTheme}
data-theme={commonStore.settings.darkMode ? 'dark' : 'light'}>
2023-05-04 15:55:24 +00:00
<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}
2023-05-22 02:52:06 +00:00
onTabSelect={(_, { value }) => selectTab(value)}
2023-05-04 15:55:24 +00:00
vertical
>
2023-05-22 02:52:06 +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-18 12:48:53 +00:00
{mq && t(label)}
2023-05-04 15:55:24 +00:00
</Tab>
))}
</TabList>
<TabList
size="large"
appearance="subtle"
selectedValue={path}
2023-05-22 02:52:06 +00:00
onTabSelect={(_, { value }) => selectTab(value)}
2023-05-04 15:55:24 +00:00
vertical
>
2023-05-22 02:52:06 +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-18 12:48:53 +00:00
{mq && t(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>
2023-05-22 02:52:06 +00:00
{pages.map(({ path, element }, index) => (
<Route key={`${path}-${index}`} path={path} element={element} />
2023-05-04 15:55:24 +00:00
))}
</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={{
2023-05-18 13:19:13 +00:00
width: '350px'
2023-05-15 13:55:57 +00:00
}}
2023-05-17 03:39:00 +00:00
position="top-center"
2023-05-15 13:55:57 +00:00
autoClose={4000}
2023-05-20 07:22:46 +00:00
pauseOnHover={true}
2023-05-17 03:39:00 +00:00
hideProgressBar={true}
2023-05-15 13:55:57 +00:00
newestOnTop={true}
closeOnClick={false}
rtl={false}
pauseOnFocusLoss={false}
draggable={false}
2023-05-17 15:27:52 +00:00
theme={commonStore.settings.darkMode ? 'dark' : 'light'}
2023-05-15 13:55:57 +00:00
/>
2023-05-04 15:55:24 +00:00
</FluentProvider>
);
2023-05-17 15:27:52 +00:00
});
2023-05-03 15:38:54 +00:00
2023-05-04 15:55:24 +00:00
export default App;