日付時刻コントロールでは和暦の年号をカスタマイズすることができます。
年号をカスタマイズするには、コントロールを生成する前に、GC.InputMan.updateCustomEraメソッドを実行して、引数に以下の要素を指定した配列データを指定します。
名前
説明
name
年号を表すキーワード 'ggg'で表示される正式名称を示します。
abbreviation
年号を表すキーワード 'gg'で表示される正式名称を示します。
symbol
年号を表すキーワード 'g'で表示される正式名称を示します。
startDate
年号の開始日です。'yyyy/MM/dd'の書式で指定します。
shortcuts
年号をキーワードにより入力するためのショートカットを設定します。キーワードは数字、アルファベットの2つをカンマ','で区切って指定します。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
// 年号をカスタマイズします。
InputMan.updateCustomEra([
{ name: '明治', abbreviation: '明', symbol: 'M', startDate: '1868/09/08', shortcuts: '1,M', },
{ name: '大正', abbreviation: '大', symbol: 'T', startDate: '1912/07/30', shortcuts: '2,T', },
{ name: '昭和', abbreviation: '昭', symbol: 'S', startDate: '1926/12/25', shortcuts: '3,S', },
{ name: '平成', abbreviation: '平', symbol: 'H', startDate: '1989/01/08', shortcuts: '4,H', },
{ name: '令和', abbreviation: '令', symbol: 'R', startDate: '2019/05/01', shortcuts: '5,R', },
// 2100/1/1から「新規」という年号が開始される場合の例
{ name: '新規', abbreviation: '新', symbol: 'N', startDate: '2100/01/01', shortcuts: '6,N', }
]);
const gcDateTime1 = new InputMan.GcDateTime(document.getElementById('gcDateTime1'), {
value: new Date(2100, 0, 1),
displayFormatPattern: 'gggE年M月d日',
formatPattern: 'ggge年MM月dd日'
});
const gcDateTime2 = new InputMan.GcDateTime(document.getElementById('gcDateTime2'), {
value: new Date(2100, 0, 1),
displayFormatPattern: 'ggE年M月d日',
formatPattern: 'gge年MM月dd日'
});
const gcDateTime3 = new InputMan.GcDateTime(document.getElementById('gcDateTime3'), {
value: new Date(2100, 0, 1),
displayFormatPattern: 'g.e/M/d',
formatPattern: 'g.e/MM/dd'
});
<!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">
<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>
<input id="gcDateTime1"><br>
<input id="gcDateTime2"><br>
<input id="gcDateTime3">
</body>
</html>
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',
'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'
},
}
});