Fix data reset and deletion issues

- Ensure complete cloud data deletion during data reset.
- Resolve app freeze issue when deleting transactions on the transaction history page.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-17 23:01:50 +00:00
parent 88cc1af139
commit d3e8119f24
6 changed files with 184 additions and 56 deletions

View File

@@ -79,19 +79,42 @@ const TransactionEditDialog: React.FC<TransactionEditDialogProps> = ({
};
const handleDelete = () => {
// 다이얼로그 닫기를 먼저 수행 (UI 블로킹 방지)
onOpenChange(false);
// 약간의 지연 후 삭제 작업 수행 (안정성 향상)
setTimeout(() => {
// 컨텍스트를 통해 트랜잭션 삭제
deleteTransaction(transaction.id);
try {
// 다이얼로그 닫기를 먼저 수행 (UI 블로킹 방지)
onOpenChange(false);
// 부모 컴포넌트의 onDelete 콜백이 있다면 호출
if (onDelete) {
onDelete(transaction.id);
}
}, 100);
// 잠시 지연 후 삭제 작업 수행 (안정성 향상)
setTimeout(() => {
try {
// 트랜잭션 ID 임시 저장 (안전성 확보)
const transactionId = transaction.id;
// 부모 컴포넌트의 onDelete 콜백이 있다면 호출
if (onDelete) {
onDelete(transactionId);
}
// 컨텍스트를 통해 트랜잭션 삭제
deleteTransaction(transactionId);
console.log('트랜잭션 삭제 완료:', transactionId);
} catch (innerError) {
console.error('트랜잭션 삭제 중 내부 오류:', innerError);
toast({
title: "삭제 실패",
description: "지출 항목을 삭제하는데 문제가 발생했습니다.",
variant: "destructive"
});
}
}, 100);
} catch (outerError) {
console.error('트랜잭션 삭제 처리 중 오류:', outerError);
toast({
title: "시스템 오류",
description: "처리 중 문제가 발생했습니다. 다시 시도해주세요.",
variant: "destructive"
});
}
};
return (