コメントコンポーネントのコメントの情報について解説します。
組込みの項目
コメントコンポーネントのコメント情報には「投稿日時」「更新日時」を提供しています。デフォルトでは、「更新日時」のみが表示されます。
commentInfoActionプロパティを利用して、表示するコメント情報を設定することができます。commentInfoActionプロパティには、GcCommentCommentInfoActionItem列挙体の次の値を設定することができます。
GcCommentCommentInfoActionItemの値
説明
PostTime
投稿日時
UpdateTime
更新日時
設定例は以下の通りです。
カスタム項目
コメントの情報にカスタム項目を追加することができます。commentInfoActionItemインターフェースでカスタム項目を定義し、commentInfoActionプロパティに追加します。
例えば、現在時刻より30日以内の新規コメントに new タグを表示するには、次の処理を追加します。
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'), {
commentInfoAction: [
InputMan.GcCommentCommentInfoActionItem.PostTime,
'new',
],
commentInfoActionItem: {
new: {
name: 'new',
getElement: () => {
let span = document.createElement('span');
span.innerText = 'new';
span.classList.add('new');
return span;
},
shouldAppendItem: (gccomment, comment) => {
const currentDate = new Date();
const date = comment.postTime;
const timeDiff = Math.abs(currentDate - date);
const diffDays = timeDiff / (1000 * 60 * 60 * 24);
return diffDays <= 30;
},
},
},
editorConfig: {
editorType: InputMan.GcCommentEditorType.GcRichTextEditor,
baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS',
plugins: [RichTextEditorControl.InputMan.GcRichTextEditorPluginItem.All],
height: 200,
menubar: [],
toolbar: [
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Redo,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Undo,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.FontFamily,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.FontSize,
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.SeparateLine,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Paste,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.PasteText,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.HTMLCode,
],
fontFamilyList: [
"Serif",
"Sans-serif",
"Monospace",
"Cursive",
"Arial",
"Times New Roman",
],
toolbarMode: RichTextEditorControl.InputMan.GcRichTextEditorToolbarMode.Wrap,
},
userInfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/commentInfoAction/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;
}
.new {
display: inline-block;
font-weight: bold;
height: 1.5em;
margin-left: 10px;
line-height: 1.5em;
padding: 0 8px;
border-radius: 5px;
color: white;
background-color: var(--gcim__gccomment-theme-color);
}
export const postedComments = [
{
id: '1',
userInfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/commentInfoAction/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/commentInfoAction/img/avatar3.png',
},
content: 'コメントの情報はデフォルトで「更新日時」「ピン留め」「リンクのコピー」が表示されますが、カスタム項目も追加できます。',
postTime: new Date(2024, 9, 15, 8, 1, 50),
updateTime: new Date(2024, 9, 15, 8, 1, 50),
reactions: [
{
reactionChar: '👍',
count: 3,
currentUserReacted: true,
},
],
},
{
id: '3',
userInfo: {
id: '5',
name: '松沢 誠一',
avatar: '$IMDEMOROOT$/ja/samples/comment/commentInfoAction/img/avatar5.png',
},
content: 'カスタム項目として「NEW」タグの表示を追加しました。30日以内の新規投稿にNEWをコメントの情報に表示するように設定しています。',
postTime: new Date(2024, 9, 16, 8, 1, 5),
updateTime: new Date(2024, 9, 16, 8, 1, 20),
reactions: [
{
reactionChar: '👍',
count: 1,
},
],
},
{
id: '4',
userInfo: {
id: '6',
name: '成宮 真紀',
avatar: '$IMDEMOROOT$/ja/samples/comment/commentInfoAction/img/avatar6.png',
},
content: '投稿日時を表示することも設定できますよ。',
postTime: new Date(2024, 9, 17, 8, 1, 50),
updateTime: new Date(2024, 9, 17, 9, 1, 53),
parentCommentId: '2',
},
];
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'
},
}
});