ヘッダー

このサンプルではコメントコンポーネントのヘッダーに表示項目を設定しています。組み込み機能以外にカスタム項目を追加できることを確認できます。

コメントコンポーネントのヘッダーについて解説します。 既定の項目 headerプロパティを利用して、ヘッダーの表示項目に、「並べ替え」、「検索」、「コメント数」、「リアクション数」の表示を設定できます。headerロパティには、GcCommentHeaderFooterItem列挙体の次の値を引数として設定することができます。 GcCommentHeaderFooterItemの値 説明 Search 検索 Sort 並べ替え CommentCount コメント数 ReactionCount リアクション数 HeaderFooterItemConfigインターフェースを利用して、ヘッダーの表示項目と配置位置を設定することができます。以下は設定できるプロパティになります。 オプション 説明 name 表示項目 align 配置 設定例は以下の通りです。 カスタム項目 headerFooterItemsプロパティを利用して、ヘッダーの表示項目にカスタム項目を追加できます。例えば、新規コメント投稿時にカウント数を表示する項目を追加する使用例は以下の通りです。
import "./styles.css"; import "@mescius/inputman.comment/CSS/gc.inputman.comment.css"; import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import { InputMan } from "@mescius/inputman.comment"; import * as RichTextEditorControl from "@mescius/inputman.richtexteditor"; import { postedComments } from './data'; const gcComment = new InputMan.GcComment(document.getElementById('gcComment'), { header: [ [ { name: InputMan.GcCommentHeaderFooterItem.Search, align: 'left', }, { name: InputMan.GcCommentHeaderFooterItem.Sort, align: 'right', }, ], [InputMan.GcCommentHeaderFooterItem.CommentCount, InputMan.GcCommentHeaderFooterItem.ReactionCount, 'post_counter'], ], loadCommentCount: async () => { return postedComments.length; }, loadReactionCount: async () => { let totalReactions = 0; postedComments.forEach((comment) => { if (comment.reactions) { comment.reactions.forEach((reaction) => { totalReactions += reaction.count; }); } }); return totalReactions; }, headerFooterItems: { post_counter: (gcComment) => { let div = document.createElement('div'); div.innerText = ''; let counter = 0; div.classList.add('counter'); return { getElement: () => { return div; }, resetState: () => { div.innerHTML = '0'; }, onSetup: () => { gcComment.addEventListener(GC.InputMan.GcCommentEvent.AfterExecuteCommand, (args) => { if (args.command === 'postcomment') { counter++; div.innerHTML = `新規投稿件数:${counter}件`; } }); }, }; }, }, editorConfig: { editorType: InputMan.GcCommentEditorType.GcRichTextEditor, baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', plugins: [RichTextEditorControl.InputMan.GcRichTextEditorPluginItem.All], height: 150, menubar: [], toolbar: [ RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Emoticons, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.BlockQuote, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Bold, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Italic, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Strikethrough, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Underline, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Subscript, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.AlignCenter, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.HTMLCode, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.CharMap, ] }, userInfo: { id: '1', name: '森上 偉久馬', avatar: '$IMDEMOROOT$/ja/samples/comment/header/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/header/img/avatar1.png', }, content: 'このサンプルではヘッダーの表示項目に並べ替えや検索、コメント数、リアクション数の表示を設定しています。', 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: '3', name: '加藤 泰江', avatar: '$IMDEMOROOT$/ja/samples/comment/header/img/avatar3.png', }, content: 'デフォルトでは並べ替えと検索のみ表示されていますが、カスタマイズ設定でさらにこのような便利な情報を表示できますね。', postTime: new Date(2024, 4, 20, 8, 1, 1), updateTime: new Date(2024, 4, 20, 8, 1, 1), reactions: [ { reactionChar: '😯', count: 1, currentUserReacted: true, }, { reactionChar: '👍', count: 3, currentUserReacted: true, }, ], }, { id: '3', userInfo: { id: '5', name: '松沢 誠一', avatar: '$IMDEMOROOT$/ja/samples/comment/header/img/avatar5.png', }, content: '人気度の動向を把握しやすい!', postTime: new Date(2024, 7, 16, 8, 1, 59), updateTime: new Date(2024, 7, 16, 8, 1, 59), parentCommentId: '2', }, { id: '4', userInfo: { id: '6', name: '成宮 真紀', avatar: '$IMDEMOROOT$/ja/samples/comment/header/img/avatar6.png', }, content: 'カスタム項目の表示も設定可能です。このサンプルでは新しいコメントが追加されるたびにカウントされ、その数がヘッダーに表示されるようになっています。', postTime: new Date(2024, 7, 18, 8, 1, 50), updateTime: new Date(2024, 7, 18, 8, 1, 50), reactions: [ { reactionChar: '👍', count: 3, currentUserReacted: true, }, ], }, ];
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' }, } });