fix: workspace setting state

This commit is contained in:
johnnyjoy 2024-10-23 13:46:07 +08:00
parent 4fcc682a15
commit 7e48d13834

View File

@ -1,7 +1,7 @@
import { Button, Select, Textarea, Option, Divider, Switch } from "@mui/joy";
import { isEqual } from "lodash-es";
import { ExternalLinkIcon } from "lucide-react";
import { useState } from "react";
import { useEffect, useState } from "react";
import { toast } from "react-hot-toast";
import { Link } from "react-router-dom";
import { workspaceSettingNamePrefix, useWorkspaceSettingStore } from "@/store/v1";
@ -18,16 +18,21 @@ const WorkspaceSection = () => {
);
const [workspaceGeneralSetting, setWorkspaceGeneralSetting] = useState<WorkspaceGeneralSetting>(originalSetting);
useEffect(() => {
setWorkspaceGeneralSetting(originalSetting);
}, [workspaceSettingStore.getWorkspaceSettingByKey(WorkspaceSettingKey.GENERAL)]);
const handleUpdateCustomizedProfileButtonClick = () => {
showUpdateCustomizedProfileDialog();
};
const updatePartialSetting = (partial: Partial<WorkspaceGeneralSetting>) => {
const newWorkspaceGeneralSetting = WorkspaceGeneralSetting.fromPartial({
setWorkspaceGeneralSetting(
WorkspaceGeneralSetting.fromPartial({
...workspaceGeneralSetting,
...partial,
});
setWorkspaceGeneralSetting(newWorkspaceGeneralSetting);
}),
);
};
const handleSaveGeneralSetting = async () => {