mirror of https://github.com/TriliumNext/Notes
chore(ckeditor5/plugins): integrate indent block shortcut
parent
afb987d4dd
commit
2f09411c0d
@ -1,37 +0,0 @@
|
||||
/**
|
||||
* https://github.com/zadam/trilium/issues/978
|
||||
*/
|
||||
export default function indentBlockShortcutPlugin(editor) {
|
||||
editor.keystrokes.set( 'Tab', ( data, cancel ) => {
|
||||
const command = editor.commands.get( 'indentBlock' );
|
||||
|
||||
if ( command.isEnabled && !isInTable() ) {
|
||||
command.execute();
|
||||
cancel();
|
||||
}
|
||||
} );
|
||||
|
||||
editor.keystrokes.set( 'Shift+Tab', ( data, cancel ) => {
|
||||
const command = editor.commands.get( 'outdentBlock' );
|
||||
|
||||
if ( command.isEnabled && !isInTable() ) {
|
||||
command.execute();
|
||||
cancel();
|
||||
}
|
||||
} );
|
||||
|
||||
// in table TAB should switch cells
|
||||
function isInTable() {
|
||||
let el = editor.model.document.selection.getFirstPosition();
|
||||
|
||||
while (el) {
|
||||
if (el.name === 'tableCell') {
|
||||
return true;
|
||||
}
|
||||
|
||||
el = el.parent;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue