コメントコンポーネントの並べ替え機能について解説します。
並べ替え
コメントコンポーネントは、「投稿日時」「更新日時」「返信数」「リアクション数」での並べ替えを提供しています。デフォルトでは並べ替えを設定しません。
sortInfoインターフェースを利用して、並べ替え項目と昇順/降順を指定できます。
sortByプロパティを利用して、並べ替えの項目を設定できます。sortByプロパティには、GcCommentSortBy列挙体の次の値を設定することができます。
GcCommentSortByの値
説明
PostTime
投稿日時
UpdateTime
更新日時
RepliesCount
返信数
ReactionsCount
リアクション数
Default
並べ替えを設定しない
また、isDescプロパティを利用して、ソート順を指定できます。デフォルトはtrue、降順で並べ替えられます。
設定例は以下の通りです。
並べ替えのドロップダウンリスト
上記、コメントコンポーネントが提供している「デフォルト」「投稿日時」「更新日時」「返信数」「リアクション数」の並べ替えは、ヘッダーに表示されたドロップダウンリストからも実行できます。
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'), {
userInfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/sort/img/avatar1.png',
},
header: [InputMan.GcCommentHeaderFooterItem.Sort],
sortInfo: {
isDesc: true,
sortBy: InputMan.GcCommentSortBy.UpdateTime,
},
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.ForeColor,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.BulList,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.NumList,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Indent,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Outdent,
]
},
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/sort/img/avatar1.png',
},
content: 'このサンプルではコメントを更新日付の降順で並べ替えています。',
postTime: new Date(2024, 7, 18, 8, 1, 50),
updateTime: new Date(2024, 8, 18, 8, 1, 50),
reactions: [
{
reactionChar: '👍',
count: 4,
},
],
},
{
id: '2',
userInfo: {
id: '3',
name: '加藤 泰江',
avatar: '$IMDEMOROOT$/ja/samples/comment/sort/img/avatar3.png',
},
content: 'デフォルトではコメントIDを昇順で並べています。',
postTime: new Date(2024, 6, 20, 8, 1, 1),
updateTime: new Date(2024, 7, 20, 8, 1, 1),
reactions: [
{
reactionChar: '👍',
count: 2,
currentUserReacted: true,
},
],
},
{
id: '3',
userInfo: {
id: '5',
name: '松沢 誠一',
avatar: '$IMDEMOROOT$/ja/samples/comment/sort/img/avatar5.png',
},
content: '必要に応じて、並べ替えの項目を投稿日時/更新日時/返信数/リアクション数に変更できます。',
postTime: new Date(2024, 6, 16, 8, 1, 59),
updateTime: new Date(2024, 5, 16, 8, 1, 59),
},
{
id: '4',
userInfo: {
id: '6',
name: '成宮 真紀',
avatar: '$IMDEMOROOT$/ja/samples/comment/sort/img/avatar6.png',
},
content: 'もちろんヘッダーに表示されたソートダイアログから並べ替えられます。',
postTime: new Date(2024, 4, 1, 8, 0, 0),
updateTime: new Date(2024, 5, 1, 8, 0, 0),
reactions: [
{
reactionChar: '👍',
count: 3,
currentUserReacted: true,
},
],
},
{
id: '5',
userInfo: {
id: '6',
name: '成宮 真紀',
avatar: '$IMDEMOROOT$/ja/samples/comment/sort/img/avatar6.png',
},
content: '昇順または降順にも変更できますね。',
postTime: new Date(2024, 6, 20, 8, 1, 1),
updateTime: new Date(2024, 7, 20, 8, 1, 1),
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'
},
}
});