コメントコンポーネントをチャットモードに設定する場合、コンテキストツールバーの操作項目について解説します。
組込みの項目
コンテキストツールバーの操作項目には「返信」「編集」「削除」「リアクションの追加」「分割線」を表示できます。
contextToolbarインターフェースを使用して、コメントにマウスカーソルを合わせた際に表示する操作項目と配置を設定できます。
オプション
説明
設定値
name
表示項目
GcCommentContextToolbar列挙体
collapse
マウスオーバー時に表示するか「・・・」をクリックする時に表示するかを指定
true/false
GcCommentContextToolbar列挙体の次の値を設定することができます。
GcCommentContextToolbarの値
説明
Reply
返信
Edit
編集
Delete
削除
AddReactions
リアクションの追加
SeparateLine
分割線
設定例は以下の通りです。
カスタム項目
コンテキストツールバーにカスタム項目を追加するには、contextToolbarItemインターフェースで項目を定義し、contextToolbarプロパティに追加します。以下の例では、報告ボタンを追加し、クリック時に確認ダイアログを表示します。
注意事項
チャットモードでは、commentActionプロパティは空の配列 []になります。通常の操作項目を表示するには、commentActionプロパティに表示項目を指定してください。
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'), {
commentMode: InputMan.GcCommentMode.ChatMode,
contextToolbar: [
{
name: InputMan.GcCommentContextToolbar.AddReactions,
collapse: false,
},
{
name: InputMan.GcCommentContextToolbar.Reply,
collapse: true,
},
{
name: InputMan.GcCommentContextToolbar.Edit,
collapse: true,
},
{
name: InputMan.GcCommentContextToolbar.SeparateLine,
collapse: false,
},
{
name: 'report',
collapse: false,
},
],
contextToolbarItem: {
report: {
name: 'report',
getElement: () => {
let container = document.createElement('div');
let buttonElement = document.createElement('button');
buttonElement.innerText = '報告';
buttonElement.style.color = 'red';
buttonElement.style.backgroundColor = '#f0f0f0';
buttonElement.style.border = 'none';
buttonElement.style.cursor = 'pointer';
buttonElement.style.fontSize = '12px';
buttonElement.style.fontFamily = 'Segoe UI, Tahoma, Geneva, sans-serif';
buttonElement.style.padding = '5px 10px';
buttonElement.style.borderRadius = '4px';
buttonElement.classList.add('custom-button');
container.appendChild(buttonElement);
let notification = document.createElement('span');
notification.style.position = 'fixed';
notification.style.top = '20px';
notification.style.left = '50%';
notification.style.transform = 'translateX(-50%)';
notification.style.backgroundColor = 'gray';
notification.style.color = 'white';
notification.style.padding = '10px';
notification.style.borderRadius = '5px';
notification.style.zIndex = '1000';
notification.style.display = 'none';
document.body.appendChild(notification);
buttonElement.addEventListener('click', () => {
notification.innerText = '報告が処理されました。';
notification.style.display = 'block';
setTimeout(() => {
notification.style.display = 'none';
}, 3000);
});
return container;
},
shouldAppendItem: () => {
return true;
},
},
},
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.CharMap,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.ForeColor,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Bold,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Italic,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Strikethrough,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Underline,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Link,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.OpenLink,
RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.UnLink,
]
},
userInfo: {
id: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/chatmode/contextToolbar/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/chatmode/contextToolbar/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: '2',
name: '葛城 孝史',
avatar: '$IMDEMOROOT$/ja/samples/comment/chatmode/contextToolbar/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: '1',
name: '森上 偉久馬',
avatar: '$IMDEMOROOT$/ja/samples/comment/chatmode/contextToolbar/img/avatar1.png',
},
content: 'さらに、・・・をクリックするとさらに非表示の操作項目が表示されますね。',
postTime: new Date(2024, 4, 21, 8, 2, 1),
updateTime: new Date(2024, 4, 21, 8, 2, 1),
parentCommentId: '2',
},
{
id: '4',
userInfo: {
id: '4',
name: '川村 匡',
avatar: '$IMDEMOROOT$/ja/samples/comment/chatmode/contextToolbar/img/avatar4.png',
},
content: '私がよく利用しているチャットツールと似っています。',
postTime: new Date(2024, 4, 21, 8, 2, 1),
updateTime: new Date(2024, 4, 21, 8, 2, 1),
},
{
id: '5',
userInfo: {
id: '5',
name: '松沢 誠一',
avatar: '$IMDEMOROOT$/ja/samples/comment/chatmode/contextToolbar/img/avatar5.png',
},
content: 'こちらにもカスタムアクションとして報告ボタンを追加しました。・・・をクリックして報告できます。',
postTime: new Date(2024, 7, 16, 8, 1, 59),
updateTime: new Date(2024, 7, 16, 8, 1, 59),
reactions: [
{
reactionChar: '🤔',
count: 1,
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'
},
}
});