[Editor] Allow to change the editor mode when selecting the corresponding editor (bug 1975538)
For example, selecting an ink editor just after having created a freetext will switch to ink mode.
This commit is contained in:
parent
ad31385792
commit
6d2c6cfc9f
@ -730,6 +730,7 @@ class AnnotationElement {
|
|||||||
source: this,
|
source: this,
|
||||||
mode,
|
mode,
|
||||||
editId,
|
editId,
|
||||||
|
mustEnterInEditMode: true,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -205,6 +205,10 @@ class AnnotationEditor {
|
|||||||
return Object.getPrototypeOf(this).constructor._type;
|
return Object.getPrototypeOf(this).constructor._type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get mode() {
|
||||||
|
return Object.getPrototypeOf(this).constructor._editorType;
|
||||||
|
}
|
||||||
|
|
||||||
static get isDrawer() {
|
static get isDrawer() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1684,8 +1684,15 @@ class AnnotationEditorUIManager {
|
|||||||
* @param {string|null} editId
|
* @param {string|null} editId
|
||||||
* @param {boolean} [isFromKeyboard] - true if the mode change is due to a
|
* @param {boolean} [isFromKeyboard] - true if the mode change is due to a
|
||||||
* keyboard action.
|
* keyboard action.
|
||||||
|
* @param {boolean} [mustEnterInEditMode] - true if the editor must enter in
|
||||||
|
* edit mode.
|
||||||
*/
|
*/
|
||||||
async updateMode(mode, editId = null, isFromKeyboard = false) {
|
async updateMode(
|
||||||
|
mode,
|
||||||
|
editId = null,
|
||||||
|
isFromKeyboard = false,
|
||||||
|
mustEnterInEditMode = false
|
||||||
|
) {
|
||||||
if (this.#mode === mode) {
|
if (this.#mode === mode) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1732,7 +1739,9 @@ class AnnotationEditorUIManager {
|
|||||||
for (const editor of this.#allEditors.values()) {
|
for (const editor of this.#allEditors.values()) {
|
||||||
if (editor.annotationElementId === editId || editor.id === editId) {
|
if (editor.annotationElementId === editId || editor.id === editId) {
|
||||||
this.setSelected(editor);
|
this.setSelected(editor);
|
||||||
|
if (mustEnterInEditMode) {
|
||||||
editor.enterInEditMode();
|
editor.enterInEditMode();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
editor.unselect();
|
editor.unselect();
|
||||||
}
|
}
|
||||||
@ -2036,6 +2045,11 @@ class AnnotationEditorUIManager {
|
|||||||
* @param {AnnotationEditor} editor
|
* @param {AnnotationEditor} editor
|
||||||
*/
|
*/
|
||||||
setSelected(editor) {
|
setSelected(editor) {
|
||||||
|
this.updateToolbar({
|
||||||
|
mode: editor.mode,
|
||||||
|
editId: editor.id,
|
||||||
|
});
|
||||||
|
|
||||||
this.#currentDrawingSession?.commitOrRemove();
|
this.#currentDrawingSession?.commitOrRemove();
|
||||||
for (const ed of this.#selectedEditors) {
|
for (const ed of this.#selectedEditors) {
|
||||||
if (ed !== editor) {
|
if (ed !== editor) {
|
||||||
|
|||||||
@ -49,6 +49,7 @@ import {
|
|||||||
unselectEditor,
|
unselectEditor,
|
||||||
waitForAnnotationEditorLayer,
|
waitForAnnotationEditorLayer,
|
||||||
waitForAnnotationModeChanged,
|
waitForAnnotationModeChanged,
|
||||||
|
waitForPointerUp,
|
||||||
waitForSelectedEditor,
|
waitForSelectedEditor,
|
||||||
waitForSerialized,
|
waitForSerialized,
|
||||||
waitForStorageEntries,
|
waitForStorageEntries,
|
||||||
@ -3392,5 +3393,58 @@ describe("FreeText Editor", () => {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("must check that we switch to FreeText in clicking on a FreeText annotation", async () => {
|
||||||
|
await Promise.all(
|
||||||
|
pages.map(async ([browserName, page]) => {
|
||||||
|
await switchToFreeText(page);
|
||||||
|
|
||||||
|
const rect = await getRect(page, ".annotationEditorLayer");
|
||||||
|
const editorSelector = getEditorSelector(0);
|
||||||
|
|
||||||
|
const data = "Hello PDF.js World !!";
|
||||||
|
await page.mouse.click(
|
||||||
|
rect.x + rect.width / 2,
|
||||||
|
rect.y + rect.height / 2
|
||||||
|
);
|
||||||
|
await page.waitForSelector(editorSelector, { visible: true });
|
||||||
|
await page.type(`${editorSelector} .internal`, data);
|
||||||
|
await commit(page);
|
||||||
|
await waitForSerialized(page, 1);
|
||||||
|
|
||||||
|
await switchToFreeText(page, /* disable */ true);
|
||||||
|
await switchToEditor("Ink", page);
|
||||||
|
|
||||||
|
const x = rect.x + 100;
|
||||||
|
const y = rect.y + 100;
|
||||||
|
const clickHandle = await waitForPointerUp(page);
|
||||||
|
await page.mouse.move(x, y);
|
||||||
|
await page.mouse.down();
|
||||||
|
await page.mouse.move(x + 50, y + 50);
|
||||||
|
await page.mouse.up();
|
||||||
|
await awaitPromise(clickHandle);
|
||||||
|
await page.keyboard.press("Escape");
|
||||||
|
await page.waitForSelector(
|
||||||
|
".inkEditor.selectedEditor.draggable.disabled"
|
||||||
|
);
|
||||||
|
await waitForSerialized(page, 2);
|
||||||
|
|
||||||
|
const modeChangedHandle = await createPromise(page, resolve => {
|
||||||
|
window.PDFViewerApplication.eventBus.on(
|
||||||
|
"annotationeditormodechanged",
|
||||||
|
resolve,
|
||||||
|
{ once: true }
|
||||||
|
);
|
||||||
|
});
|
||||||
|
const editorRect = await getRect(page, editorSelector);
|
||||||
|
await page.mouse.click(
|
||||||
|
editorRect.x + editorRect.width / 2,
|
||||||
|
editorRect.y + editorRect.height / 2
|
||||||
|
);
|
||||||
|
await page.waitForSelector(".annotationEditorLayer.freetextEditing");
|
||||||
|
await awaitPromise(modeChangedHandle);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@ -2401,12 +2401,19 @@ class PDFViewer {
|
|||||||
* @property {string|null} [editId] - ID of the existing annotation to edit.
|
* @property {string|null} [editId] - ID of the existing annotation to edit.
|
||||||
* @property {boolean} [isFromKeyboard] - True if the mode change is due to a
|
* @property {boolean} [isFromKeyboard] - True if the mode change is due to a
|
||||||
* keyboard action.
|
* keyboard action.
|
||||||
|
* @property {boolean} [mustEnterInEditMode] - True if the editor must enter
|
||||||
|
* edit mode.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {AnnotationEditorModeOptions} options
|
* @param {AnnotationEditorModeOptions} options
|
||||||
*/
|
*/
|
||||||
set annotationEditorMode({ mode, editId = null, isFromKeyboard = false }) {
|
set annotationEditorMode({
|
||||||
|
mode,
|
||||||
|
editId = null,
|
||||||
|
isFromKeyboard = false,
|
||||||
|
mustEnterInEditMode = false,
|
||||||
|
}) {
|
||||||
if (!this.#annotationEditorUIManager) {
|
if (!this.#annotationEditorUIManager) {
|
||||||
throw new Error(`The AnnotationEditor is not enabled.`);
|
throw new Error(`The AnnotationEditor is not enabled.`);
|
||||||
}
|
}
|
||||||
@ -2428,7 +2435,8 @@ class PDFViewer {
|
|||||||
await this.#annotationEditorUIManager.updateMode(
|
await this.#annotationEditorUIManager.updateMode(
|
||||||
mode,
|
mode,
|
||||||
editId,
|
editId,
|
||||||
isFromKeyboard
|
isFromKeyboard,
|
||||||
|
mustEnterInEditMode
|
||||||
);
|
);
|
||||||
if (
|
if (
|
||||||
mode !== this.#annotationEditorMode ||
|
mode !== this.#annotationEditorMode ||
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user