匿名投稿

このサンプルではコメントコンポーネントの匿名投稿を有効にしています。コメントエディタの匿名にチェックして投稿すると、コメントのユーザー情報に設定した匿名情報が表示されることを確認することができます。

コメントコンポーネントの匿名投稿機能について解説します。 匿名投稿 allowAnonymousプロパティを利用して、匿名投稿を有効にするかどうかを設定できます。デフォルトではfalseで、trueに設定すると匿名投稿ができます。 匿名情報の設定 anonymousUserInfoインターフェースを利用して、匿名ユーザー情報を設定することができます。以下は設定できるプロパティになります。 オプション 説明 id ユーザーID name ユーザー名 avatar アカウント画像 設定例は以下の通りです。 補足 userInfoが設定されていない場合、匿名投稿を有効にすると、コメントエディタのユーザー情報には匿名ユーザーの画像が表示されます。また、匿名のチェックボックスはチェックされ、変更することができません。
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'), { allowAnonymous: true, commentMode: InputMan.GcCommentMode.ListMode, 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, ] }, anonymousUserInfo: { id: 'tokumei', name: '匿名ユーザー', avatar: '$IMDEMOROOT$/ja/samples/comment/anonymous/img/anonymousavatar.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/anonymous/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/anonymous/img/avatar2.png', }, content: '自由に意見を交換できる場として最高ですね。', postTime: new Date(2024, 4, 20, 8, 1, 1), updateTime: new Date(2024, 4, 20, 8, 1, 1), reactions: [ { reactionChar: '👍', count: 3, }, ], }, { id: '3', userInfo: { id: '3', name: '加藤 泰江', avatar: '$IMDEMOROOT$/ja/samples/comment/anonymous/img/avatar3.png', }, content: '匿名で投稿する際は、コメントエディタの下にあるチェックボックスを忘れずにチェックしてくださいね。', postTime: new Date(2024, 6, 15, 8, 1, 59), updateTime: new Date(2024, 6, 15, 8, 1, 59), reactions: [ { reactionChar: '👍', count: 5, }, ], } ];
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' }, } });