1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Desktop, Mobile: Fixes #12097: Add ability to delete all history for individual notes (#12381)

This commit is contained in:
mrjo118
2025-06-07 12:52:55 +01:00
committed by GitHub
parent 73ed17e851
commit a47d7906af
6 changed files with 94 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
import { _ } from '../../../locale';
import Revision from '../../../models/Revision';
import shim, { MessageBoxType } from '../../../shim';
const { useCallback } = shim.react();
interface Props {
noteId?: string;
setDeleting(deleting: boolean): void;
resetScreenState(): void;
}
const useDeleteHistoryClick = ({
noteId, setDeleting, resetScreenState,
}: Props) => {
return useCallback(async () => {
if (!noteId) return;
const response = await shim.showMessageBox(_('Are you sure you want to delete all history for this note? This cannot be undone.'), {
title: _('Warning'),
buttons: [_('Yes'), _('No')],
type: MessageBoxType.Confirm,
});
if (response === 0) {
setDeleting(true);
try {
await Revision.deleteHistoryForNote(noteId);
await shim.showMessageBox(_('Note history has been deleted.'), { type: MessageBoxType.Info });
} finally {
setDeleting(false);
}
resetScreenState();
}
}, [noteId, setDeleting, resetScreenState]);
};
export default useDeleteHistoryClick;