リッチテキストエディタ(GcRichTextEditor)は、ビルドインのショートカットキーを割り当てることができます。
ショートカットキーが押されたときに、リッチテキストエディタのアクション(操作)やカスタムアクションを実行することができます。
ショートカット
リッチテキストエディタのショートカット操作の一覧を以下に示します。
キー
アクション
Ctrl+B
太字にします
Ctrl+I
斜体にします
Ctrl+U
下線を引きます
Ctrl+A
すべて選択
Ctrl+Y
元に戻す
Ctrl+Z
やり直し
Alt+Shift+1
レベル 1 の見出しを表示します
Alt+Shift+2
レベル 2 の見出しを表示します
Alt+Shift+3
レベル 3 の見出しを表示します
Alt+Shift+4
レベル 4 の見出しを表示します
Alt+Shift+5
レベル 5 の見出しを表示します
Alt+Shift+6
レベル 6 の見出しを表示します
Alt+Shift+7
段落を表示します
Ctrl+K
ハイパーリンクの挿入
Ctrl+S
保存
Ctrl+F
検索と置換ダイアログを開きます
Alt+F9
メニューバーにフォーカス
Alt+F10
ツールバーにフォーカス
カスタムショートカット
registerShortcut メソッドを利用して、カスタムショートカットを追加することができます。
以下の例は、Ctrl + Alt + U 押下時に '@username'を挿入する動作を実行するサンプルです。
import "@grapecity/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css";
import "@grapecity/inputman/CSS/gc.inputman-js.css";
import { InputMan } from "@grapecity/inputman.richtexteditor";
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcRichTextEditor = new InputMan.GcRichTextEditor(
document.getElementById("gcRichTextEditor"),
{
watermarkText: "ここに入力してください...",
baseUrl:
window.location.origin +
"/inputmanjs/demos/lib/purejs/node_modules/@grapecity/inputman.richtexteditor/JS",
plugins: [GC.InputMan.GcRichTextEditorPluginItem.All],
saveOnSaveCallBack: () => {},
}
);
gcRichTextEditor.registerShortcut("ctrl+alt+U", "Insert username", () => {
gcRichTextEditor.insertContent(`@username`);
});
gcRichTextEditor.registerShortcut("ctrl+alt+P", "Insert password", () => {
gcRichTextEditor.insertContent(`@password`);
});
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>リッチテキストエディタコントロール - ショートカット</title>
<!-- SystemJS -->
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('./src/app');
</script>
</head>
<body>
<textarea id="gcRichTextEditor"></textarea>
</body>
</html>
System.config({
transpiler: 'plugin-babel',
babelOptions: {
es2015: true
},
meta: {
'*.css': { loader: 'css' }
},
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
'@grapecity/inputman': 'npm:@grapecity/inputman/index.js',
'@grapecity/inputman/CSS': 'npm:@grapecity/inputman/CSS',
'@grapecity/inputman.richtexteditor': 'npm:@grapecity/inputman.richtexteditor/index.js',
'@grapecity/inputman.richtexteditor/CSS': 'npm:@grapecity/inputman.richtexteditor/CSS',
'css': 'npm:systemjs-plugin-css/css.js',
'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
src: {
defaultExtension: 'js'
},
"node_modules": {
defaultExtension: 'js'
},
}
});