mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
63 lines
2.2 KiB
JavaScript
63 lines
2.2 KiB
JavaScript
/**
|
|
* Provide shortcuts for the editor instance.
|
|
* @param {MarkdownEditor} editor
|
|
* @returns {Object<String, Function>}
|
|
*/
|
|
function provide(editor) {
|
|
const shortcuts = {};
|
|
|
|
// Insert Image shortcut
|
|
shortcuts['Shift-Mod-i'] = () => editor.actions.insertImage();
|
|
|
|
// Save draft
|
|
shortcuts['Mod-s'] = () => window.$events.emit('editor-save-draft');
|
|
|
|
// Save page
|
|
shortcuts['Mod-Enter'] = () => window.$events.emit('editor-save-page');
|
|
|
|
// Show link selector
|
|
shortcuts['Shift-Mod-k'] = () => editor.actions.showLinkSelector();
|
|
|
|
// Insert Link
|
|
shortcuts['Mod-k'] = () => editor.actions.insertLink();
|
|
|
|
// FormatShortcuts
|
|
shortcuts['Mod-1'] = () => editor.actions.replaceLineStart('##');
|
|
shortcuts['Mod-2'] = () => editor.actions.replaceLineStart('###');
|
|
shortcuts['Mod-3'] = () => editor.actions.replaceLineStart('####');
|
|
shortcuts['Mod-4'] = () => editor.actions.replaceLineStart('#####');
|
|
shortcuts['Mod-5'] = () => editor.actions.replaceLineStart('');
|
|
shortcuts['Mod-d'] = () => editor.actions.replaceLineStart('');
|
|
shortcuts['Mod-6'] = () => editor.actions.replaceLineStart('>');
|
|
shortcuts['Mod-q'] = () => editor.actions.replaceLineStart('>');
|
|
shortcuts['Mod-7'] = () => editor.actions.wrapSelection('\n```\n', '\n```');
|
|
shortcuts['Mod-8'] = () => editor.actions.wrapSelection('`', '`');
|
|
shortcuts['Shift-Mod-e'] = () => editor.actions.wrapSelection('`', '`');
|
|
shortcuts['Mod-9'] = () => editor.actions.cycleCalloutTypeAtSelection();
|
|
shortcuts['Mod-p'] = () => editor.actions.replaceLineStart('-');
|
|
shortcuts['Mod-o'] = () => editor.actions.replaceLineStartForOrderedList();
|
|
|
|
return shortcuts;
|
|
}
|
|
|
|
/**
|
|
* Get the editor shortcuts in CodeMirror keybinding format.
|
|
* @param {MarkdownEditor} editor
|
|
* @return {{key: String, run: function, preventDefault: boolean}[]}
|
|
*/
|
|
export function provideKeyBindings(editor) {
|
|
const shortcuts = provide(editor);
|
|
const keyBindings = [];
|
|
|
|
const wrapAction = action => () => {
|
|
action();
|
|
return true;
|
|
};
|
|
|
|
for (const [shortcut, action] of Object.entries(shortcuts)) {
|
|
keyBindings.push({key: shortcut, run: wrapAction(action), preventDefault: true});
|
|
}
|
|
|
|
return keyBindings;
|
|
}
|