feat: make unsaved settings obvious
This commit is contained in:
parent
b26e62e8d9
commit
00813957d6
@ -1,8 +1,8 @@
|
|||||||
import {
|
import {
|
||||||
chakra,
|
|
||||||
Box,
|
Box,
|
||||||
Button,
|
Button,
|
||||||
Center,
|
Center,
|
||||||
|
chakra,
|
||||||
Flex,
|
Flex,
|
||||||
HStack,
|
HStack,
|
||||||
Icon,
|
Icon,
|
||||||
@ -19,9 +19,9 @@ import {
|
|||||||
TabPanels,
|
TabPanels,
|
||||||
Tabs,
|
Tabs,
|
||||||
Text,
|
Text,
|
||||||
VStack,
|
|
||||||
useBreakpointValue,
|
useBreakpointValue,
|
||||||
useToast,
|
useToast,
|
||||||
|
VStack,
|
||||||
} from '@chakra-ui/react';
|
} from '@chakra-ui/react';
|
||||||
import { PanelQMCv2Key } from './panels/PanelQMCv2Key';
|
import { PanelQMCv2Key } from './panels/PanelQMCv2Key';
|
||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
@ -145,7 +145,7 @@ export function Settings() {
|
|||||||
onClick={handleResetSettings}
|
onClick={handleResetSettings}
|
||||||
colorScheme="red"
|
colorScheme="red"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
title="放弃未储存的更改,将设定还原为储存前的状态。"
|
title="放弃未储存的更改,将设定还原未储存前的状态。"
|
||||||
aria-label="放弃未储存的更改"
|
aria-label="放弃未储存的更改"
|
||||||
/>
|
/>
|
||||||
<Button onClick={handleApplySettings}>保存</Button>
|
<Button onClick={handleApplySettings}>保存</Button>
|
||||||
|
@ -1,12 +1,36 @@
|
|||||||
import { Box, VStack } from '@chakra-ui/react';
|
import { Alert, AlertIcon, Box, Button, Flex, Text, VStack } from '@chakra-ui/react';
|
||||||
import { SelectFile } from '../components/SelectFile';
|
import { SelectFile } from '../components/SelectFile';
|
||||||
|
|
||||||
import { FileListing } from '~/features/file-listing/FileListing';
|
import { FileListing } from '~/features/file-listing/FileListing';
|
||||||
|
import { useAppDispatch, useAppSelector } from '~/hooks.ts';
|
||||||
|
import { selectIsSettingsNotSaved } from '~/features/settings/settingsSelector.ts';
|
||||||
|
import { commitStagingChange } from '~/features/settings/settingsSlice.ts';
|
||||||
|
|
||||||
export function MainTab() {
|
export function MainTab() {
|
||||||
|
const dispatch = useAppDispatch();
|
||||||
|
const isSettingsNotSaved = useAppSelector(selectIsSettingsNotSaved);
|
||||||
|
const onClickSaveSettings = () => {
|
||||||
|
dispatch(commitStagingChange());
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box h="full" w="full" pt="4">
|
<Box h="full" w="full" pt="4">
|
||||||
<VStack gap="3">
|
<VStack gap="3">
|
||||||
|
{isSettingsNotSaved && (
|
||||||
|
<Alert borderRadius={7} maxW={400} status="warning">
|
||||||
|
<AlertIcon />
|
||||||
|
<Flex flexDir="row" alignItems="center" flexGrow={1} justifyContent="space-between">
|
||||||
|
<Text m={0}>
|
||||||
|
有尚未储存的设置,
|
||||||
|
<br />
|
||||||
|
设定将在保存后生效
|
||||||
|
</Text>
|
||||||
|
<Button type="button" ml={3} size="md" onClick={onClickSaveSettings}>
|
||||||
|
立即储存
|
||||||
|
</Button>
|
||||||
|
</Flex>
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
<SelectFile />
|
<SelectFile />
|
||||||
|
|
||||||
<Box w="full">
|
<Box w="full">
|
||||||
|
Loading…
Reference in New Issue
Block a user