コメント日時の書式

このサンプルではコメントの投稿日時と更新日時の表示書式の設定方法を確認することができます。

コメントコンポーネントの投稿日時と更新日時の書式設定ついて解説します。 投稿日時の表示書式設定 postTimeFormatterプロパティを利用して、表示する投稿日時の書式を設定することができます。postTimeFormatterプロパティにコールバック関数を利用し、投稿日時をフォーマットする処理を定義します。 設定例は以下の通りです。 更新日時の表示書式設定 updateTimeFormatterプロパティを利用して、表示する更新日時の書式を設定することができます。updateTimeFormatterプロパティにコールバック関数を利用し、更新日時をフォーマットする処理を定義します。 設定例は以下の通りです。
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'), { postTimeFormatter: (date) => { const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, '0'); const day = String(date.getDate()).padStart(2, '0'); const formattedDate = `${year}年${month}月${day}日`; return `投稿日: ${formattedDate}`; }, updateTimeFormatter: (date) => { const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, '0'); const day = String(date.getDate()).padStart(2, '0'); const hours = String(date.getHours()).padStart(2, '0'); const minutes = String(date.getMinutes()).padStart(2, '0'); const seconds = String(date.getSeconds()).padStart(2, '0'); const formattedDate = `${year}年${month}月${day}日 ${hours}時${minutes}分${seconds}秒`; return `最終更新: ${formattedDate}`; }, commentInfoAction: [InputMan.GcCommentCommentInfoActionItem.UpdateTime, InputMan.GcCommentCommentInfoActionItem.PostTime], editorConfig: { editorType: InputMan.GcCommentEditorType.GcRichTextEditor, baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', plugins: [RichTextEditorControl.InputMan.GcRichTextEditorPluginItem.All], height: 150, menubar: [RichTextEditorControl.InputMan.GcRichTextEditorMenuBarItem.Format], toolbar: [ RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Copy, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Cut, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Paste, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.SeparateLine, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.Styles, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.AlignCenter, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.H1, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.H2, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.H3, RichTextEditorControl.InputMan.GcRichTextEditorToolbarItem.H4, ] }, userInfo: { id: '1', name: '森上 偉久馬', avatar: '$IMDEMOROOT$/ja/samples/comment/commentTimeFormat/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/commentTimeFormat/img/avatar1.png', }, content: `このサンプルではコメントの投稿日時と更新日時の書式を設定しています。`, postTime: new Date(2024, 1, 1, 8, 0, 0), updateTime: new Date(2024, 2, 1, 18, 20, 25), }, { id: '2', userInfo: { id: '4', name: '川村 匡', avatar: '$IMDEMOROOT$/ja/samples/comment/commentTimeFormat/img/avatar4.png', }, content: 'ユーザーの地域に合わせて様々な日付書式を設定できます👍', postTime: new Date(2024, 4, 20, 8, 1, 1), updateTime: new Date(2024, 8, 20, 10, 3, 12), reactions: [ { reactionChar: '👍', count: 1, }, ], } ];
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' }, } });