fix(web): 规则删除按操作隔离 busy(deletingId/adding) + 全空规则页折叠为单一引导

This commit is contained in:
Yaojia Wang
2026-06-30 08:56:23 +02:00
parent 9d67f237a2
commit 6bb3559e25
3 changed files with 110 additions and 68 deletions

View File

@@ -9,7 +9,10 @@ import { buildRuleCreateRequest, hasUsableContent, type RuleLevel } from "./rule
export interface UseRules {
items: RuleView[];
busy: boolean;
// 正在新增(仅冻结新增表单,不影响删除)。
adding: boolean;
// 正在删除的那一条 id仅冻结该行删除按钮整页其余照常可操作
deletingId: string | null;
// 新增一条规则(乐观追加 + 失败回滚 + Toast
add: (
projectId: string,
@@ -21,9 +24,11 @@ export interface UseRules {
}
// 规则页UX §7列出 + 新增规则。乐观追加,失败回滚(仿 useForeshadow
// add 与 remove 用各自独立的进行中标志,避免删一条就冻结整页。
export function useRules(initial: RuleView[]): UseRules {
const [items, setItems] = useState<RuleView[]>(initial);
const [busy, setBusy] = useState(false);
const [adding, setAdding] = useState(false);
const [deletingId, setDeletingId] = useState<string | null>(null);
const toast = useToast();
const add = useCallback<UseRules["add"]>(
@@ -40,7 +45,7 @@ export function useRules(initial: RuleView[]): UseRules {
content: content.trim(),
};
setItems((prev) => [...prev, optimistic]);
setBusy(true);
setAdding(true);
try {
const { data, error } = await api.POST(
"/projects/{project_id}/rules",
@@ -59,7 +64,7 @@ export function useRules(initial: RuleView[]): UseRules {
toast("已新增规则", "success");
return true;
} finally {
setBusy(false);
setAdding(false);
}
},
[items, toast],
@@ -69,7 +74,7 @@ export function useRules(initial: RuleView[]): UseRules {
async (projectId, ruleId) => {
const snapshot = items;
setItems((prev) => prev.filter((r) => r.id !== ruleId));
setBusy(true);
setDeletingId(ruleId);
try {
const { error } = await api.DELETE(
"/projects/{project_id}/rules/{rule_id}",
@@ -83,11 +88,11 @@ export function useRules(initial: RuleView[]): UseRules {
toast("已删除规则", "success");
return true;
} finally {
setBusy(false);
setDeletingId(null);
}
},
[items, toast],
);
return { items, busy, add, remove };
return { items, adding, deletingId, add, remove };
}