fix: settings dirty state tracking + toast on save/discard (#38)

This commit is contained in:
鲁树人 2023-07-02 15:38:52 +01:00
parent 7a363d1dc5
commit 48b8932a1d
3 changed files with 54 additions and 6 deletions

View File

@ -1,4 +1,5 @@
import { import {
chakra,
Box, Box,
Button, Button,
Center, Center,
@ -20,13 +21,15 @@ import {
Text, Text,
VStack, VStack,
useBreakpointValue, useBreakpointValue,
useToast,
} 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';
import { MdExpandMore, MdMenu, MdOutlineSettingsBackupRestore } from 'react-icons/md'; import { MdExpandMore, MdMenu, MdOutlineSettingsBackupRestore } from 'react-icons/md';
import { useAppDispatch } from '~/hooks'; import { useAppDispatch, useAppSelector } from '~/hooks';
import { commitStagingChange, discardStagingChanges } from './settingsSlice'; import { commitStagingChange, discardStagingChanges } from './settingsSlice';
import { PanelKWMv2Key } from './panels/PanelKWMv2Key'; import { PanelKWMv2Key } from './panels/PanelKWMv2Key';
import { selectIsSettingsNotSaved } from './settingsSelector';
const TABS: { name: string; Tab: () => JSX.Element }[] = [ const TABS: { name: string; Tab: () => JSX.Element }[] = [
{ name: 'QMCv2 密钥', Tab: PanelQMCv2Key }, { name: 'QMCv2 密钥', Tab: PanelQMCv2Key },
@ -38,6 +41,7 @@ const TABS: { name: string; Tab: () => JSX.Element }[] = [
]; ];
export function Settings() { export function Settings() {
const toast = useToast();
const dispatch = useAppDispatch(); const dispatch = useAppDispatch();
const isLargeWidthDevice = const isLargeWidthDevice =
useBreakpointValue({ useBreakpointValue({
@ -49,8 +53,25 @@ export function Settings() {
const handleTabChange = (idx: number) => { const handleTabChange = (idx: number) => {
setTabIndex(idx); setTabIndex(idx);
}; };
const handleResetSettings = () => dispatch(discardStagingChanges()); const handleResetSettings = () => {
const handleApplySettings = () => dispatch(commitStagingChange()); dispatch(discardStagingChanges());
toast({
status: 'info',
title: '未储存的设定已舍弃',
description: '已还原到更改前的状态。',
isClosable: true,
});
};
const handleApplySettings = () => {
dispatch(commitStagingChange());
toast({
status: 'success',
title: '设定已应用',
isClosable: true,
});
};
const isSettingsNotSaved = useAppSelector(selectIsSettingsNotSaved);
return ( return (
<Flex flexDir="column" flex={1}> <Flex flexDir="column" flex={1}>
@ -104,7 +125,16 @@ export function Settings() {
<VStack mt="4" alignItems="flex-start" w="full"> <VStack mt="4" alignItems="flex-start" w="full">
<Flex flexDir="row" gap="2" w="full"> <Flex flexDir="row" gap="2" w="full">
<Center> <Center>
<Box color="gray"></Box> {isSettingsNotSaved ? (
<Box color="gray">
{' '}
<chakra.span color="red" wordBreak="keep-all">
</chakra.span>
</Box>
) : (
<Box color="gray"></Box>
)}
</Center> </Center>
<Spacer /> <Spacer />
<HStack gap="2" justifyContent="flex-end"> <HStack gap="2" justifyContent="flex-end">

View File

@ -4,6 +4,8 @@ import { closestByLevenshtein } from '~/util/levenshtein';
import { hasOwn } from '~/util/objects'; import { hasOwn } from '~/util/objects';
import { kwm2StagingToProductionKey } from './keyFormats'; import { kwm2StagingToProductionKey } from './keyFormats';
export const selectIsSettingsNotSaved = (state: RootState) => state.settings.dirty;
export const selectStagingQMCv2Settings = (state: RootState) => state.settings.staging.qmc2; export const selectStagingQMCv2Settings = (state: RootState) => state.settings.staging.qmc2;
export const selectFinalQMCv2Settings = (state: RootState) => state.settings.production.qmc2; export const selectFinalQMCv2Settings = (state: RootState) => state.settings.production.qmc2;

View File

@ -37,16 +37,18 @@ export interface ProductionSettings {
} }
export interface SettingsState { export interface SettingsState {
dirty: boolean;
staging: StagingSettings; staging: StagingSettings;
production: ProductionSettings; production: ProductionSettings;
} }
const initialState: SettingsState = { const initialState: SettingsState = {
dirty: false,
staging: { staging: {
qmc2: { allowFuzzyNameSearch: false, keys: [] }, qmc2: { allowFuzzyNameSearch: true, keys: [] },
kwm2: { keys: [] }, kwm2: { keys: [] },
}, },
production: { production: {
qmc2: { allowFuzzyNameSearch: false, keys: {} }, qmc2: { allowFuzzyNameSearch: true, keys: {} },
kwm2: { keys: {} }, kwm2: { keys: {} },
}, },
}; };
@ -77,6 +79,7 @@ export const settingsSlice = createSlice({
reducers: { reducers: {
setProductionChanges: (_state, { payload }: PayloadAction<ProductionSettings>) => { setProductionChanges: (_state, { payload }: PayloadAction<ProductionSettings>) => {
return { return {
dirty: false,
production: payload, production: payload,
staging: productionToStaging(payload), staging: productionToStaging(payload),
}; };
@ -84,14 +87,17 @@ export const settingsSlice = createSlice({
// //
qmc2AddKey(state) { qmc2AddKey(state) {
state.staging.qmc2.keys.push({ id: nanoid(), name: '', ekey: '' }); state.staging.qmc2.keys.push({ id: nanoid(), name: '', ekey: '' });
state.dirty = true;
}, },
qmc2ImportKeys(state, { payload }: PayloadAction<Omit<StagingQMCv2Key, 'id'>[]>) { qmc2ImportKeys(state, { payload }: PayloadAction<Omit<StagingQMCv2Key, 'id'>[]>) {
const newItems = payload.map((item) => ({ id: nanoid(), ...item })); const newItems = payload.map((item) => ({ id: nanoid(), ...item }));
state.staging.qmc2.keys.push(...newItems); state.staging.qmc2.keys.push(...newItems);
state.dirty = true;
}, },
qmc2DeleteKey(state, { payload: { id } }: PayloadAction<{ id: string }>) { qmc2DeleteKey(state, { payload: { id } }: PayloadAction<{ id: string }>) {
const qmc2 = state.staging.qmc2; const qmc2 = state.staging.qmc2;
qmc2.keys = qmc2.keys.filter((item) => item.id !== id); qmc2.keys = qmc2.keys.filter((item) => item.id !== id);
state.dirty = true;
}, },
qmc2UpdateKey( qmc2UpdateKey(
state, state,
@ -100,25 +106,31 @@ export const settingsSlice = createSlice({
const keyItem = state.staging.qmc2.keys.find((item) => item.id === id); const keyItem = state.staging.qmc2.keys.find((item) => item.id === id);
if (keyItem) { if (keyItem) {
keyItem[field] = value; keyItem[field] = value;
state.dirty = true;
} }
}, },
qmc2ClearKeys(state) { qmc2ClearKeys(state) {
state.staging.qmc2.keys = []; state.staging.qmc2.keys = [];
state.dirty = true;
}, },
qmc2AllowFuzzyNameSearch(state, { payload: { enable } }: PayloadAction<{ enable: boolean }>) { qmc2AllowFuzzyNameSearch(state, { payload: { enable } }: PayloadAction<{ enable: boolean }>) {
state.staging.qmc2.allowFuzzyNameSearch = enable; state.staging.qmc2.allowFuzzyNameSearch = enable;
state.dirty = true;
}, },
// TODO: reuse the logic somehow? // TODO: reuse the logic somehow?
kwm2AddKey(state) { kwm2AddKey(state) {
state.staging.kwm2.keys.push({ id: nanoid(), ekey: '', quality: '', rid: '' }); state.staging.kwm2.keys.push({ id: nanoid(), ekey: '', quality: '', rid: '' });
state.dirty = true;
}, },
kwm2ImportKeys(state, { payload }: PayloadAction<Omit<StagingKWMv2Key, 'id'>[]>) { kwm2ImportKeys(state, { payload }: PayloadAction<Omit<StagingKWMv2Key, 'id'>[]>) {
const newItems = payload.map((item) => ({ id: nanoid(), ...item })); const newItems = payload.map((item) => ({ id: nanoid(), ...item }));
state.staging.kwm2.keys.push(...newItems); state.staging.kwm2.keys.push(...newItems);
state.dirty = true;
}, },
kwm2DeleteKey(state, { payload: { id } }: PayloadAction<{ id: string }>) { kwm2DeleteKey(state, { payload: { id } }: PayloadAction<{ id: string }>) {
const kwm2 = state.staging.kwm2; const kwm2 = state.staging.kwm2;
kwm2.keys = kwm2.keys.filter((item) => item.id !== id); kwm2.keys = kwm2.keys.filter((item) => item.id !== id);
state.dirty = true;
}, },
kwm2UpdateKey( kwm2UpdateKey(
state, state,
@ -127,18 +139,22 @@ export const settingsSlice = createSlice({
const keyItem = state.staging.kwm2.keys.find((item) => item.id === id); const keyItem = state.staging.kwm2.keys.find((item) => item.id === id);
if (keyItem) { if (keyItem) {
keyItem[field] = value; keyItem[field] = value;
state.dirty = true;
} }
}, },
kwm2ClearKeys(state) { kwm2ClearKeys(state) {
state.staging.kwm2.keys = []; state.staging.kwm2.keys = [];
state.dirty = true;
}, },
// //
discardStagingChanges: (state) => { discardStagingChanges: (state) => {
state.dirty = false;
state.staging = productionToStaging(state.production); state.staging = productionToStaging(state.production);
}, },
commitStagingChange: (state) => { commitStagingChange: (state) => {
const production = stagingToProduction(state.staging); const production = stagingToProduction(state.staging);
return { return {
dirty: false,
// Sync back to staging // Sync back to staging
staging: productionToStaging(production), staging: productionToStaging(production),
production, production,