スレッドモードの場合、階層として表示されるコメントの最大階層数を指定できます。
最大階層数
replyLevelプロパティを利用して、最大階層数を指定できます。replyLevelロパティには、次の値を設定することができます。
replyLevelプロパティの値
説明
number
最大階層数
0
無限
例えば、最大階層数を1に設定すると、コメントに対して1階層までの返信の表示が許可され、それ以降のコメントはネストされずに「ユーザーD > ユーザーC」の形式で表示されます。
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, users } from './data';
const gcComment = new InputMan.GcComment(document.getElementById('gcComment'), {
commentMode: InputMan.GcCommentMode.ThreadMode,
replyLevel: 1,
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.FontFamily,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Bold,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Italic,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Strikethrough,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Underline,
]
},
userInfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar1.png',
},
loadComments: (args) => {
return {
comments: postedComments,
};
},
loadUsersInfoHandler: (context) => {
if (context.loadType === InputMan.LoadUserType.FilterText) {
return users.filter((u) => u.name.includes(context.value));
} else if (context.loadType === InputMan.LoadUserType.ById) {
return users.filter((u) => u.id === context.value);
}
},
});
<!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/replies/replyLevel/img/avatar1.png',
},
content: 'このサンプルでは子コメントの階層を1に設定しています。',
postTime: new Date(2024, 1, 1, 8, 0, 0),
updateTime: new Date(2024, 1, 1, 8, 0, 0),
},
{
id: '2',
userInfo: {
id: '2',
name: '葛城 孝史',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/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/replies/replyLevel/img/avatar3.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: '2',
name: '葛城 孝史',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar2.png',
},
content: 'スレッドモードのみ階層数を設定可能です。',
postTime: new Date(2024, 7, 21, 8, 1, 59),
updateTime: new Date(2024, 7, 21, 8, 1, 59),
parentCommentId: '3',
reactions: [
{
reactionChar: '👍',
count: 2,
currentUserReacted: true,
},
],
},
{
id: '5',
userInfo: {
id: '6',
name: '成宮 真紀',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar6.png',
},
content: '誰が誰に返信しているのかなどの会話の流れがわかりやすくなります。',
postTime: new Date(2024, 6, 15, 8, 1, 59),
updateTime: new Date(2024, 6, 15, 8, 1, 59),
parentCommentId: '4',
reactions: [
{
reactionChar: '👍',
count: 6,
currentUserReacted: true,
},
],
},
{
id: '6',
userInfo: {
id: '5',
name: '松沢 誠一',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar5.png',
},
content: 'なるほど、効率的ですね。',
postTime: new Date(2024, 7, 23, 8, 1, 59),
updateTime: new Date(2024, 7, 23, 8, 1, 59),
parentCommentId: '2',
},
{
id: '7',
userInfo: {
id: '6',
name: '成宮 真紀',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar6.png',
},
content: '早速松沢君に返信してみました。',
postTime: new Date(2024, 7, 20, 7, 18, 52),
updateTime: new Date(2024, 7, 20, 8, 1, 59),
parentCommentId: '6',
reactions: [
{
reactionChar: '👍',
count: 1,
currentUserReacted: true,
},
],
},
{
id: '8',
userInfo: {
id: '4',
name: '川村 匡',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar4.png',
},
content: '川村です。第一層でコメントさせていただきます。私にもコメントしてみていただけますか',
postTime: new Date(2024, 6, 25, 8, 3, 59),
updateTime: new Date(2024, 6, 25, 8, 3, 59),
parentCommentId: '2',
reactions: [
{
reactionChar: '👍',
count: 2,
},
],
},
];
export const users = [
{
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar1.png',
},
{
id: '2',
name: '葛城 孝史',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar2.png',
},
{
id: '3',
name: '加藤 泰江',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar3.png',
},
{
id: '4',
name: '川村 匡',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar4.png',
},
{
id: '5',
name: '松沢 誠一',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar5.png',
},
{
id: '6',
name: '成宮 真紀',
avatar: '$IMDEMOROOT$/ja/samples/comment/replies/replyLevel/img/avatar6.png',
},
];
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'
},
}
});