リッチテキストエディタコントロールが提供する入力を制御する機能について解説します。
最大文字数の指定
maxLengthプロパティを設定することで、リッチテキストエディタコントロールへの入力可能文字数を設定できます。コマンドから最大文字数を指定する場合は、ChangeMaxLengthコマンドを使用します。
リッチテキストエディタに最大文字数を指定した場合、最大文字数以上を入力不可となります。また、コピーペーストやテンプレート挿入を行う場合は、最大文字数以上の内容が削除されます。
設定例は以下の通りです。
maxLengthプロパティを使用する
ChangeMaxLengthコマンドを使用する
また、getContentLengthメソッドとgetSelectionLengthメソッドを使用して、それぞれ改行を除いた全ての文字数と選択中の文字数を取得できます。
改行コードの取り扱い
リッチテキストエディタからクリップボードへ改行を含む文字列をコピー、または貼り付けた場合の改行コードを削除することを設定できます。ツールバーの項目をONに設定するか、filterCrlfプロパティをtrueに設定します。また、コマンドの使用で設定することができます。
filterCrlfプロパティを使用する
ToggleFilterCrlfコマンドを使用する
注意事項
filterCrlfプロパティをtrueに適用するには、リッチテキストエディタの貼り付ける形式がテキストに設定する必要があります。そのため、filterCrlfプロパティをtrueに設定すると貼り付ける形式が自動的にテキストに変更されます。
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"),
{
baseUrl:
'$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS',
plugins: ["all"],
toolbar: [
GC.InputMan.GcRichTextEditorToolbarItem.FilterCrlf,
GC.InputMan.GcRichTextEditorToolbarItem.PasteText,
],
filterCrlf: true,
maxLength: 5,
}
);
document.getElementById("maxLength").addEventListener("change", (e) => {
gcRichTextEditor.maxLength = parseInt(e.target.value);
});
document
.getElementById("setLengthByTextElement")
.addEventListener("change", (e) => {
gcRichTextEditor.lengthUnit = GC.InputMan.LengthUnitType.TextElement;
});
document.getElementById("setLengthByByte").addEventListener("change", (e) => {
gcRichTextEditor.lengthUnit = GC.InputMan.LengthUnitType.Byte;
});
document.getElementById("filterCrlf").addEventListener("change", (e) => {
e.target.selectedIndex == 0
? (gcRichTextEditor.filterCrlf = true)
: (gcRichTextEditor.filterCrlf = 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>
<table class="sample">
<tr>
<th>最大文字数</th>
<td>
<input type="number" value="5" min="0" id="maxLength">
<label><input type="radio" name="setLengthByByte" onchange="setLengthByByte" id="setLengthByTextElement"
checked>文字単位</label>
<label><input type="radio" name="setLengthByByte" onchange="setLengthByByte"
id="setLengthByByte">バイト単位</label>
</td>
</tr>
<tr>
<th>改行コードの扱い</th>
<td>
<select id="filterCrlf">
<option selected>すべての改行コードを削除</option>
<option>そのまま使用</option>
</select>
</td>
</tr>
</table>
</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'
},
}
});