mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-23 08:38:06 +02:00
Pop open a message when user deletes an annotation
When a user deletes any number of annotations, they are notified of the action by a popup message with an undo button. Besides that, this change reuses the existing messageBar CSS class from the new alt-text dialog as much as possible.
This commit is contained in:
parent
962eb6206a
commit
dd82d78a2d
11 changed files with 321 additions and 3 deletions
|
@ -676,6 +676,7 @@ class DrawingEditor extends AnnotationEditor {
|
|||
signal,
|
||||
});
|
||||
parent.toggleDrawing();
|
||||
uiManager._editorUndoBar?.hide();
|
||||
|
||||
if (this._currentDraw) {
|
||||
parent.drawLayer.updateProperties(
|
||||
|
|
|
@ -1142,6 +1142,8 @@ class AnnotationEditor {
|
|||
|
||||
bindEvents(this, this.div, ["pointerdown"]);
|
||||
|
||||
this._uiManager._editorUndoBar?.hide();
|
||||
|
||||
return this.div;
|
||||
}
|
||||
|
||||
|
|
|
@ -620,6 +620,8 @@ class AnnotationEditorUIManager {
|
|||
|
||||
#editorsToRescale = new Set();
|
||||
|
||||
_editorUndoBar = null;
|
||||
|
||||
#enableHighlightFloatingButton = false;
|
||||
|
||||
#enableUpdatedAddImage = false;
|
||||
|
@ -829,7 +831,8 @@ class AnnotationEditorUIManager {
|
|||
enableHighlightFloatingButton,
|
||||
enableUpdatedAddImage,
|
||||
enableNewAltTextWhenAddingImage,
|
||||
mlManager
|
||||
mlManager,
|
||||
editorUndoBar
|
||||
) {
|
||||
const signal = (this._signal = this.#abortController.signal);
|
||||
this.#container = container;
|
||||
|
@ -864,6 +867,7 @@ class AnnotationEditorUIManager {
|
|||
rotation: 0,
|
||||
};
|
||||
this.isShiftKeyDown = false;
|
||||
this._editorUndoBar = editorUndoBar || null;
|
||||
|
||||
if (typeof PDFJSDev !== "undefined" && PDFJSDev.test("TESTING")) {
|
||||
Object.defineProperty(this, "reset", {
|
||||
|
@ -904,6 +908,7 @@ class AnnotationEditorUIManager {
|
|||
clearTimeout(this.#translationTimeoutId);
|
||||
this.#translationTimeoutId = null;
|
||||
}
|
||||
this._editorUndoBar?.destroy();
|
||||
}
|
||||
|
||||
combinedSignal(ac) {
|
||||
|
@ -1656,6 +1661,8 @@ class AnnotationEditorUIManager {
|
|||
this.setEditingState(false);
|
||||
this.#disableAll();
|
||||
|
||||
this._editorUndoBar?.hide();
|
||||
|
||||
this.#updateModeCapability.resolve();
|
||||
return;
|
||||
}
|
||||
|
@ -2038,6 +2045,7 @@ class AnnotationEditorUIManager {
|
|||
hasSomethingToRedo: true,
|
||||
isEmpty: this.#isEmpty(),
|
||||
});
|
||||
this._editorUndoBar?.hide();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2099,6 +2107,10 @@ class AnnotationEditorUIManager {
|
|||
? [drawingEditor]
|
||||
: [...this.#selectedEditors];
|
||||
const cmd = () => {
|
||||
this._editorUndoBar?.show(
|
||||
undo,
|
||||
editors.length === 1 ? editors[0].editorType : editors.length
|
||||
);
|
||||
for (const editor of editors) {
|
||||
editor.remove();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue