アカウントの画像

このサンプルではユーザーアカウントの画像を設定する方法を確認することができます。

コメントコンポーネントのユーザーアカウント画像の表示機能について解説します。 アカウント画像の表示 showIconプロパティを利用して、コメントのユーザー情報に画像を表示するかどうかを設定できます。デフォルトではtrueで、falseに設定するとユーザーの画像が表示されません。 アカウント画像の形 showIconプロパティをtrueに設定する場合、表示されるアカウント画像のアイコンの形を設定できます。avatarTypeプロパティにGcCommentUserIconType列挙体の次の値を設定することができます。 GcCommentUserIconTypeの値 説明 Circle 円形のアイコン Square 四角形のアイコン RoundedCorner 角が丸い四角形のアイコン 設定例は以下の通りです。 
import '@mescius/inputman.comment/CSS/gc.inputman.comment.css'; import './styles.css'; import { InputMan } from '@mescius/inputman.comment'; import { postedComments, postedComments2 } from './data'; const gcComment = new InputMan.GcComment(document.getElementById('gcComment'), { avatarType: InputMan.GcCommentUserIconType.Square, commentMode: InputMan.GcCommentMode.ListMode, loadComments: (args) => { return { comments: postedComments, }; }, header: [], }); const gcComment2 = new InputMan.GcComment(document.getElementById('gcComment2'), { avatarType: InputMan.GcCommentUserIconType.RoundedCorner, commentMode: InputMan.GcCommentMode.ListMode, loadComments: (args) => { return { comments: postedComments2, }; }, header: [], });
<!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> <h3>四角形のアイコン</h3> <div id="gcComment"></div> <h3>角が丸い四角形のアイコン</h3> <div id="gcComment2"></div> </body> </html>
body { box-sizing: content-box !important; height: 551px !important; } .gcim__gccomment { border: 1px solid #ccc; border-radius: 4px; padding: 10px; box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); background-color: #fafdff; }
export const postedComments = [ { id: '1', userInfo: { id: '1', name: '森上 偉久馬', avatar: '$IMDEMOROOT$/ja/samples/comment/userInfo/avatar/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/userInfo/avatar/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, }, ], }, ]; export const postedComments2 = [ { id: '1', userInfo: { id: '1', name: '森上 偉久馬', avatar: '$IMDEMOROOT$/ja/samples/comment/userInfo/avatar/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: '3', name: '加藤 泰江', avatar: '$IMDEMOROOT$/ja/samples/comment/userInfo/avatar/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' }, } });