概要と基本的な使い方

このサンプルではコメントエディタにHTMLのtextarea要素を使用しています。コメントエディタにフォーカスするとコメントを入力するためのテキストエリアが表示されます。

コメントコンポーネントのコメントエディタ機能について解説します。 コメントエディタの設定 editorConfigインターフェースを利用して、コメントエディタを設定することができます。コマンドからコメントエディタを設定する場合は、CreateEditorコマンドを使用します。 editorTypeプロパティGcCommentEditorType.Commonに設定すると、コメントエディタにHTMLのtextarea要素が適用されます。この場合は他のモジュールをインポートする必要がありません。 設定例は以下の通りです。 editorConfigインターフェースを使用する CreateEditorコマンドを使用する 注意事項 CreateEditorコマンドを利用する場合、editorConfigインターフェースの設定が無効になります。
import "@mescius/inputman.comment/CSS/gc.inputman.comment.css"; import "./styles.css"; import { InputMan } from "@mescius/inputman.comment"; import { postedComments } from './data'; const gcComment = new InputMan.GcComment(document.getElementById('gcComment'), { editorConfig: { editorType: InputMan.GcCommentEditorType.Common }, commentMode: InputMan.GcCommentMode.ListMode, userInfo: { id: '1', name: '森上 偉久馬', avatar: '$IMDEMOROOT$/ja/samples/comment/commentEditor/overview/img/avatar1.png', }, loadComments: (args) => { return { comments: postedComments }; }, });
<!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"> <meta name="description" content="コメントコンポーネント 使い方" lang="ja" xml:lang="ja" /> <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> <div id="gcComment"></div> </body> </html>
body { box-sizing: content-box !important; height: 551px !important; }
export const postedComments = [ { id: '1', userInfo: { id: '1', name: '森上 偉久馬', avatar: '$IMDEMOROOT$/ja/samples/comment/commentEditor/overview/img/avatar1.png', }, content: `このサンプルではコメントエディタにHTMLのtextarea要素を設定しています。デフォルトの設定になります。`, postTime: new Date(2024, 1, 1, 8, 0, 0), updateTime: new Date(2024, 1, 1, 8, 0, 0), reactions: [ { reactionChar: '👍', count: 2, }, ], }, { id: '2', userInfo: { id: '2', name: '葛城 孝史', avatar: '$IMDEMOROOT$/ja/samples/comment/commentEditor/overview/img/avatar2.png', }, content: '特に他のモジュールをインポートする必要がなく、軽量化のアプリケーションに最適です。', postTime: new Date(2024, 4, 20, 8, 1, 1), updateTime: new Date(2024, 4, 20, 8, 1, 1), }, { id: '3', userInfo: { id: '3', name: '加藤 泰江', avatar: '$IMDEMOROOT$/ja/samples/comment/commentEditor/overview/img/avatar3.png', }, content: 'シンプルなコメントエディタですね。', postTime: new Date(2024, 4, 25, 8, 1, 1), updateTime: new Date(2024, 4, 25, 8, 1, 1), }, ];
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', '@mescius/inputman.comment': 'npm:@mescius/inputman.comment/index.js', '@mescius/inputman.comment/CSS': 'npm:@mescius/inputman.comment/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' }, } });