feishin/src/renderer/features/settings/components/settings-header.tsx

57 lines
2 KiB
TypeScript
Raw Normal View History

2023-03-31 05:56:32 -07:00
import { Flex, Group } from '@mantine/core';
import { closeAllModals, openModal } from '@mantine/modals';
import { useTranslation } from 'react-i18next';
import { RiSettings2Fill } from 'react-icons/ri';
2023-03-31 05:56:32 -07:00
import { Button, ConfirmModal, PageHeader } from '/@/renderer/components';
import { LibraryHeaderBar } from '/@/renderer/features/shared';
2023-03-31 05:56:32 -07:00
import { useSettingsStoreActions } from '../../../store/settings.store';
export const SettingsHeader = () => {
const { t } = useTranslation();
2023-07-01 19:10:05 -07:00
const { reset } = useSettingsStoreActions();
2023-03-31 05:56:32 -07:00
2023-07-01 19:10:05 -07:00
const handleResetToDefault = () => {
reset();
closeAllModals();
};
2023-03-31 05:56:32 -07:00
2023-07-01 19:10:05 -07:00
const openResetConfirmModal = () => {
openModal({
children: (
<ConfirmModal onConfirm={handleResetToDefault}>
{t('common.areYouSure', { postProcess: 'sentenceCase' })}
</ConfirmModal>
),
title: t('common.resetToDefault', { postProcess: 'sentenceCase' }),
2023-07-01 19:10:05 -07:00
});
};
2023-03-31 05:56:32 -07:00
2023-07-01 19:10:05 -07:00
return (
<Flex>
<PageHeader>
<LibraryHeaderBar>
<Flex
align="center"
justify="space-between"
w="100%"
>
<Group noWrap>
<RiSettings2Fill size="2rem" />
<LibraryHeaderBar.Title>
{t('common.setting', { count: 2, postProcess: 'titleCase' })}
</LibraryHeaderBar.Title>
2023-07-01 19:10:05 -07:00
</Group>
<Button
compact
variant="default"
onClick={openResetConfirmModal}
>
{t('common.resetToDefault', { postProcess: 'sentenceCase' })}
2023-07-01 19:10:05 -07:00
</Button>
</Flex>
</LibraryHeaderBar>
</PageHeader>
</Flex>
);
};