コマンド

このサンプルではコマンド機能を有効にして、コンボボックスから任意の操作をコマンドから実行できるようにしています。

リッチテキストエディタ(GcRichTextEditor)コントロールは、コマンドを実行することでUI以外からも操作を実行することが可能です。 コマンド処理 execCommandメソッド利用して、ビルドインの操作を実行することができます。 実行できるコマンドはGcRichTextEditorCommand列挙体から確認することができます。 以下の例は、任意のボタン押下時にJustifyCenter操作を実行するサンプルです。
import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import "@mescius/inputman/CSS/gc.inputman-js.css"; import { InputMan } from "@mescius/inputman.richtexteditor"; import * as GcCommon from "@mescius/inputman"; GcCommon.InputMan.appearanceStyle = GcCommon.InputMan.AppearanceStyle.Modern; const gcRichTextEditor = new InputMan.GcRichTextEditor( document.getElementById("gcRichTextEditor"), { watermarkText: "ここに入力してください...", baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', } ); gcRichTextEditor.text = "テストテキスト"; const gcComboBox = new GcCommon.InputMan.GcComboBox( document.getElementById("gcComboBoxObjects"), { items: [ { name: "すべて選択", command: InputMan.GcRichTextEditorCommand.SelectAll, }, { name: "Bold", command: InputMan.GcRichTextEditorCommand.Bold }, { name: "Italic", command: InputMan.GcRichTextEditorCommand.Italic }, { name: "Underline", command: InputMan.GcRichTextEditorCommand.Underline, }, { name: "コピー", command: InputMan.GcRichTextEditorCommand.Copy }, { name: "ペースト", command: InputMan.GcRichTextEditorCommand.Paste }, ], displayMemberPath: "name", valueMemberPath: "command", isEditable: false, } ); gcComboBox.selectedIndex = 0; document.getElementById("executeBtn").addEventListener("click", () => { gcRichTextEditor.execCommand(gcComboBox.selectedValue, false); });
<!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> window.onload = function() { System.import('./src/app'); } </script> </head> <body> <textarea id="gcRichTextEditor"></textarea> <div> 実行するコマンド<br> <select id="gcComboBoxObjects"></select> <button id="executeBtn">コマンドを実行する</button> </div> </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: { '@mescius/inputman': 'npm:@mescius/inputman/index.js', '@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS', '@mescius/inputman.richtexteditor': 'npm:@mescius/inputman.richtexteditor/index.js', '@mescius/inputman.richtexteditor/CSS': 'npm:@mescius/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' }, } });