コメントコンポーネントは、コマンドを実行することでUI以外からも操作を実行することが可能です。
コマンド処理
execCommandメソッド利用して、ビルドインの操作を実行することができます。
実行できるコマンドはGcCommentCommand列挙体から確認することができます。
以下の例は、任意のボタン押下時に更新日時の降順で並べ替える処理を実行するサンプルです。
import "@mescius/inputman.comment/CSS/gc.inputman.comment.css";
import "@mescius/inputman/CSS/gc.inputman-js.css";
import "./styles.css";
import { InputMan } from "@mescius/inputman.comment";
import * as GcCommon from "@mescius/inputman";
import { postedComments } from './data';
const gcComment = new InputMan.GcComment(document.getElementById('gcComment'), {
addCommentEditorPosition: InputMan.GcCommentEditorPosition.Top,
editorConfig: {
editorType: InputMan.GcCommentEditorType.Common
},
commentMode: InputMan.GcCommentMode.ThreadMode,
commentInfoAction: [
InputMan.GcCommentCommentInfoActionItem.PostTime,
InputMan.GcCommentCommentInfoActionItem.UpdateTime,
],
userInfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/commentEditor/overview/img/avatar1.png',
},
loadComments: (args) => {
return {
comments: postedComments
};
},
});
const gcComboBox = new GcCommon.InputMan.GcComboBox(
document.getElementById("gcComboBoxObjects"),
{
items: [
{
name: "コメントを投稿する",
command: InputMan.GcCommentCommand.PostComment,
},
{
name: "コメントをクリアする",
command: InputMan.GcCommentCommand.Clear
},
{
name: "コメントを読み込む",
command: InputMan.GcCommentCommand.Load
},
{
name: "更新日時の降順で並べ替える",
command: InputMan.GcCommentCommand.Sort
},
{
name: "'こ'で検索する",
command: InputMan.GcCommentCommand.Search,
}
],
displayMemberPath: "name",
valueMemberPath: "command",
isEditable: false,
}
);
gcComboBox.selectedIndex = 0;
const postComment = {
userinfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/chatmode/contextToolbar/img/avatar1.png',
},
commentContent: 'コマンドでコメントを投稿しました。',
isAnonymous: false,
};
document.getElementById("executeBtn").addEventListener("click", () => {
switch (gcComboBox.getSelectedIndex()) {
case 0:
gcComment.execCommand(gcComboBox.selectedValue, postComment)
break;
case 1:
gcComment.execCommand(gcComboBox.selectedValue);
break;
case 2:
gcComment.execCommand(gcComboBox.selectedValue);
break;
case 3:
gcComment.execCommand(gcComboBox.selectedValue, { sortInfo: { isDesc: true, sortBy: InputMan.GcCommentSortBy.UpdateTime } })
break;
case 4:
gcComment.execCommand(gcComboBox.selectedValue, { text: 'こ' })
break;
default:
break;
}
});
<!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><br><br>
<div>
実行するコマンド<br>
<select id="gcComboBoxObjects"></select>
<button id="executeBtn">コマンドを実行する</button>
</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/command/img/avatar1.png',
},
content: 'このサンプルではコマンド機能を有効にして、コンボボックスから任意の操作をコマンドから実行できるようにしています。',
postTime: new Date(2024, 9, 3, 8, 0, 0),
updateTime: new Date(2024, 9, 4, 9, 0, 0),
reactions: [
{
reactionChar: '👍',
count: 2,
}
]
},
{
id: '2',
userInfo: {
id: '2',
name: '葛城 孝史',
avatar: '$IMDEMOROOT$/ja/samples/comment/command/img/avatar2.png'
},
content: 'コメントの投稿や並べ替えをコマンドから試すことができます。',
postTime: new Date(2024, 9, 2, 8, 0, 0),
updateTime: new Date(2024, 9, 5, 8, 0, 0),
},
];
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'
},
}
});