編集時のツールバー

このサンプルでは、編集時に入力した内容を選択するとコンテキストにてツールバーが表示することができます。

リッチテキストエディタ(GcRichTextEditor)コントロールでは、編集時のツールバーを設定することができます。 addContextToolbar メソッドを使用して選択した内容のコンテキストツールバーを設定します。 以下のプロパティを使用して編集時のツールバーを構成します。 プロパティ 説明 predicate 編集時のツールバーが表示される前に実行するコールバック関数。この関数には、現在選択されたコンテンツに関連する DOM 要素を示すパラメータがある。戻り値は boolean 型で編集時のツールバーを表示するかどうかを意味する items 編集時のツールバーの表示項目を設定する。 position 編集時のツールバーの表示位置を設定する。次の値が設定することができる。・selection: 選択内容の上/下に表示する・node: すべての入力内容の上/下に表示する・line: 選択内容の左/右に表示する
import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import { InputMan } from "@mescius/inputman.richtexteditor"; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcRichTextEditor = new InputMan.GcRichTextEditor( document.getElementById("gcRichTextEditor"), { watermarkText: "ここに入力してください...", toolbar: [ InputMan.GcRichTextEditorToolbarItem.Redo, InputMan.GcRichTextEditorToolbarItem.Undo, InputMan.GcRichTextEditorToolbarItem.SeparateLine, InputMan.GcRichTextEditorToolbarItem.Bold, InputMan.GcRichTextEditorToolbarItem.Italic, InputMan.GcRichTextEditorToolbarItem.Underline, ], setup: (gcRichTextEditor) => { gcRichTextEditor.addContextToolbar("textselection", { items: [ InputMan.GcRichTextEditorToolbarItem.Bold, InputMan.GcRichTextEditorToolbarItem.Italic, InputMan.GcRichTextEditorToolbarItem.SeparateLine, InputMan.GcRichTextEditorToolbarItem.BlockQuote, ], predicate: (node) => gcRichTextEditor.getSelection(), position: "selection", }); }, baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', } ); gcRichTextEditor.text = "テストテキスト";
<!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> </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' }, } });