chore(ckeditor5/plugins): integrate indent block shortcut

This commit is contained in:
Elian Doran
2025-05-03 17:20:14 +03:00
parent afb987d4dd
commit 2f09411c0d
3 changed files with 47 additions and 39 deletions

View File

@@ -0,0 +1,44 @@
/**
* https://github.com/zadam/trilium/issues/978
*/
import { DocumentFragment, Element, Plugin, Position } from "ckeditor5";
export default class IndentBlockShortcutPlugin extends Plugin {
init() {
this.editor.keystrokes.set( 'Tab', ( _, cancel ) => {
const command = this.editor.commands.get( 'indentBlock' );
if (command && command.isEnabled && !this.isInTable() ) {
command.execute();
cancel();
}
} );
this.editor.keystrokes.set( 'Shift+Tab', ( _, cancel ) => {
const command = this.editor.commands.get( 'outdentBlock' );
if (command && command.isEnabled && !this.isInTable() ) {
command.execute();
cancel();
}
} );
}
// in table TAB should switch cells
isInTable() {
let el: Position | Element | DocumentFragment | null = this.editor.model.document.selection.getFirstPosition();
while (el) {
if ("name" in el && el.name === 'tableCell') {
return true;
}
el = "parent" in el ? el.parent : null;
}
return false;
}
}