mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { getCurrent } from '@tauri-apps/api/webviewWindow';
|
|
import React from 'react';
|
|
import { createGlobalState, useKeyPressEvent } from 'react-use';
|
|
import { capitalize } from '../../lib/capitalize';
|
|
import { HStack } from '../core/Stacks';
|
|
import { TabContent, Tabs } from '../core/Tabs/Tabs';
|
|
import { HeaderSize } from '../HeaderSize';
|
|
import { WindowControls } from '../WindowControls';
|
|
import { SettingsAppearance } from './SettingsAppearance';
|
|
import { SettingsGeneral } from './SettingsGeneral';
|
|
|
|
enum Tab {
|
|
General = 'general',
|
|
Appearance = 'appearance',
|
|
}
|
|
|
|
const tabs = [Tab.General, Tab.Appearance];
|
|
const useTabState = createGlobalState<string>(tabs[0]!);
|
|
|
|
export const Settings = () => {
|
|
const [tab, setTab] = useTabState();
|
|
|
|
// Close settings window on escape
|
|
// TODO: Could this be put in a better place? Eg. in Rust key listener when creating the window
|
|
useKeyPressEvent('Escape', () => getCurrent().close());
|
|
|
|
return (
|
|
<>
|
|
<HeaderSize
|
|
data-tauri-drag-region
|
|
size="md"
|
|
className="x-theme-appHeader bg-background text-fg-subtle flex items-center justify-center border-b border-background-highlight text-sm font-semibold"
|
|
>
|
|
<HStack
|
|
space={2}
|
|
justifyContent="center"
|
|
className="w-full h-full grid grid-cols-[1fr_auto]"
|
|
>
|
|
<div className="text-center">Settings</div>
|
|
<WindowControls className="ml-auto" />
|
|
</HStack>
|
|
</HeaderSize>
|
|
<Tabs
|
|
value={tab}
|
|
addBorders
|
|
label="Settings"
|
|
onChangeValue={setTab}
|
|
tabs={tabs.map((value) => ({ value, label: capitalize(value) }))}
|
|
>
|
|
<TabContent value={Tab.General} className="pt-3 overflow-y-auto h-full px-4">
|
|
<SettingsGeneral />
|
|
</TabContent>
|
|
<TabContent value={Tab.Appearance} className="pt-3 overflow-y-auto h-full px-4">
|
|
<SettingsAppearance />
|
|
</TabContent>
|
|
</Tabs>
|
|
</>
|
|
);
|
|
};
|