本製品ではコントロールの高さや幅などのサイズのほか、背景色や文字色などを含め、コントロールの外観はすべてCSS(Cascading Style Sheet)により設定します。
コントロールで使用されるCSSクラスの詳細については、以下の製品ヘルプをご参照ください。
コントロールの外観設定
入力コントロールのCSS
新しいスタイルの設定方法
InputManJSは2種類のデザインを提供しています。appearanceStyleプロパティを設定することで、従来のデザインまたは新しいデザインを適用できます。すべてのコントロールを初期化する前に設定する必要があります。
appearanceStyleプロパティの設定できる値は次のとおりで、既定値はClassicです。
値
説明
Classic
従来のデザイン
Modern
新しいデザイン
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
import { orders, products, styles, specRules } from './data';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const SpecPrefix = "$spec:";
class OSpecCssStyleMap {
map = {};
constructor() { }
addRules(key, rules) {
if (!this.map[key]) {
this.map[key] = [];
}
rules.forEach(rule => {
this.map[key].push(rule);
})
}
deleteAllRuleByKey(key) {
this.map[key] = [];
}
getAllRule() {
let arr = [];
Object.keys(this.map).forEach(key => {
this.map[key].forEach((rule) => {
arr.push(rule);
})
});
return arr;
}
}
let styleSheet = createStyleSheet();
let specStyleSheet = createStyleSheet();
let specCssStyleMap = new OSpecCssStyleMap();
initStyleSheet(styleSheet, styles);
initIMControls();
attachEvent();
function initIMControls() {
const gcListBox1 = new InputMan.GcListBox(document.getElementById('gcListBox1'), {
items: products
});
gcListBox1.setSelectedIndex(0);
const gcListBox2 = new InputMan.GcListBox(document.getElementById('gcListBox2'), {
items: products
});
gcListBox2.setSelectedIndex(0);
gcListBox2.setEnabled(false);
const gcListBox3 = new InputMan.GcListBox(document.getElementById('gcListBox3'), {
items: orders,
columns: [
{ name: 'id', label: '商品コード', width: 80 },
{ name: 'product', label: '商品名', width: 200 },
],
footerTemplate: '商品を選択してください'
});
gcListBox3.setSelectedIndex(0);
}
function attachEvent() {
document.getElementById('container').addEventListener('click', (e) => {
if (e.target.tagName == 'INPUT') {
inputBtnClickHandler(e);
} else if (e.target.tagName == 'BUTTON') {
copyStyle()
}
})
}
function inputBtnClickHandler(evt) {
let el = evt.target;
if (startsWith(el.value, SpecPrefix)) {
let key = el.value.slice(SpecPrefix.length, el.value.length);
processSpecKey(key, el.checked);
} else {
processKey(el.value, el.checked);
}
showCssText([styleSheet, specStyleSheet]);
}
function getRulePrefix() {
return InputMan.appearanceStyle === InputMan.AppearanceStyle.Modern ? '[gcim-control-appearance="modern"] ' : '';
}
function initStyleSheet(styleSheet, styles) {
Object.keys(styles).forEach((styleName, index) => styleSheet.insertRule(`${getRulePrefix()}${styleName}{}`, index));
}
function processKey(key, checked) {
let values = key.split(','),
selector = values[0],
propName = values[1];
let cssRules = findCssRule(styleSheet, `${getRulePrefix()}${selector}`);
cssRules.style[propName] = checked ? styles[selector][propName] : '';
}
function processSpecKey(key, checked) {
let specStyle = specRules[key];
if (checked) {
specCssStyleMap.addRules(key, specStyle);
} else {
specCssStyleMap.deleteAllRuleByKey(key);
}
syncSpecStyleMapToStyleSheet(specCssStyleMap, specStyleSheet);
}
//#region helperMethod
function findCssRule(styleSheet, selector) {
for (let i = 0; i < styleSheet.cssRules.length; i++) {
if (styleSheet.cssRules[i].selectorText == selector) {
return styleSheet.cssRules[i];
}
}
return null;
}
function syncSpecStyleMapToStyleSheet(styleMap, styleSheet) {
clearStyleSheet(styleSheet);
let specRules = styleMap.getAllRule();
specRules.forEach((rule) => {
styleSheet.insertRule(`${getRulePrefix()}${rule.selector} { ${rule.style} }`, styleSheet.cssRules.length);
});
}
function showCssText(styleSheets) {
let cssTexts = [];
styleSheets.forEach((styleSheet) => {
appendCssText(styleSheet, cssTexts);
});
document.getElementById('style').value = cssTexts.join('\r\n');
}
function appendCssText(styleSheet, cssTexts) {
for (let i = 0; i < styleSheet.cssRules.length; i++) {
if (styleSheet.cssRules[i].style.length > 0) {
cssTexts.push(styleSheet.cssRules[i].cssText
.replace(/{/g, '{\r\n ')
.replace(/;/g, ';\r\n ')
.replace(/ }/g, '}'));
}
}
}
function clearStyleSheet(cssStyleSheet) {
let len = cssStyleSheet.cssRules.length;
while (len--) {
cssStyleSheet.deleteRule(0);
}
}
function createStyleSheet() {
let element = document.createElement('style');
document.head.appendChild(element);
return element.sheet;
}
function copyStyle() {
document.getElementById('style').select();
document.execCommand('copy');
}
function startsWith(str, searchString) {
return str.slice(0, searchString.length) == searchString;
}
//#endregion
<!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>
<div id="container">
<div class="flexbox">
<div>
通常の状態<br>
<select id="gcListBox1"></select>
</div>
<div>
無効な状態<br>
<select id="gcListBox2"></select>
</div>
<div>
複数列<br>
<select id="gcListBox3"></select>
</div>
</div>
<div class="peoperty-header">コントロール全般のスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim__listbox,backgroundColor">背景色</label>
<label><input type="checkbox" value=".gcim__listbox,borderColor">境界線の色</label>
<label><input type="checkbox" value=".gcim__listbox,borderWidth">境界線の幅</label>
<label><input type="checkbox" value=".gcim__listbox,borderStyle">境界線のスタイル</label>
<label><input type="checkbox" value=".gcim__listbox,borderRadius">境界線の角丸</label>
<label><input type="checkbox" value=".gcim__listbox > .viewport,cursor">カーソルの形</label>
<label><input type="checkbox" value=".gcim__listbox,boxShadow">コントロールの影</label>
</div>
<div class="peoperty-header">テキストのスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim__listbox,color">文字色</label>
<label><input type="checkbox" value=".gcim__listbox,fontSize">フォントのサイズ</label>
<label><input type="checkbox" value=".gcim__listbox,fontWeight">フォントの太さ</label>
<label><input type="checkbox" value=".gcim__listbox,fontStyle">フォントのスタイル</label>
<label><input type="checkbox" value=".gcim__listbox,fontFamily">フォントの種類</label>
<label><input type="checkbox" value="$spec:text_style_align">水平方向の位置</label>
<label><input type="checkbox" value=".gcim__listbox,textShadow">テキストの影</label>
</div>
<div class="peoperty-header">ヘッダのスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim__listbox .column-header,color">文字色</label>
<label><input type="checkbox" value=".gcim__listbox .column-header,fontSize">フォントのサイズ</label>
<label><input type="checkbox" value=".gcim__listbox .column-header,fontWeight">フォントの太さ</label>
<label><input type="checkbox" value=".gcim__listbox .column-header,fontStyle">フォントのスタイル</label>
<label><input type="checkbox" value=".gcim__listbox .column-header,fontFamily">フォントの種類</label>
<label><input type="checkbox" value=".gcim__listbox .column-header,textShadow">テキストの影</label>
</div>
<div class="peoperty-header">フッタのスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim__listbox .footer_style,color">文字色</label>
<label><input type="checkbox" value=".gcim__listbox .footer_style,fontSize">フォントのサイズ</label>
<label><input type="checkbox" value=".gcim__listbox .footer_style,fontWeight">フォントの太さ</label>
<label><input type="checkbox" value=".gcim__listbox .footer_style,fontStyle">フォントのスタイル</label>
<label><input type="checkbox" value=".gcim__listbox .footer_style,fontFamily">フォントの種類</label>
<label><input type="checkbox" value=".gcim__listbox .footer_style,textAlign">水平方向の位置</label>
<label><input type="checkbox" value=".gcim__listbox .footer_style,textShadow">テキストの影</label>
</div>
<div class="peoperty-header">コントロール無効時のスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".list_overlay,opacity">透明度</label>
</div>
<button name="style_copy_btn">CSSコードをコピー</button><br>
<textarea id="style" cols="60" rows="10"></textarea>
</div>
</body>
</html>
export const products = [
'果汁100%オレンジ',
'果汁100%グレープ',
'果汁100%レモン',
'果汁100%ピーチ',
'コーヒーマイルド',
'コーヒービター'
];
export const orders = [
{ id: 15, product: 'ピュアデミグラスソース', date: '2017/01/10', price: 200, amount: 30 },
{ id: 17, product: 'だしこんぶ', date: '2017/01/08', price: 290, amount: 50 },
{ id: 18, product: 'ピリカラタバスコ', date: '2017/01/12', price: 200, amount: 20 },
{ id: 84, product: 'なまわさび', date: '2017/01/21', price: 200, amount: 40 },
{ id: 85, product: 'なまからし', date: '2017/01/13', price: 200, amount: 40 },
{ id: 86, product: 'なましょうが', date: '2017/01/20', price: 200, amount: 40 },
];
export const styles = {
'.gcim__listbox': {
backgroundColor: '#ddffdd',
borderColor: '#009900',
borderWidth: '2px',
borderStyle: 'dashed',
borderRadius: '12px',
boxShadow: '5px 5px 5px rgba(0,0,0,0.5)',
color: '#009900',
fontSize: '20px',
fontWeight: 'bold',
fontStyle: 'italic',
fontFamily: 'serif',
textShadow: '1px 1px 1px rgba(0,0,0,0.5)'
},
'.gcim__listbox > .viewport': {
cursor: 'crosshair'
},
'.gcim__listbox .column-header': {
color: '#009900',
fontSize: '20px',
fontWeight: 'bold',
fontStyle: 'italic',
fontFamily: 'serif',
textShadow: '1px 1px 1px rgba(0,0,0,0.5)'
},
'.gcim__listbox .footer_style': {
color: '#009900',
fontSize: '20px',
fontWeight: 'bold',
fontStyle: 'italic',
fontFamily: 'serif',
textAlign: 'right',
textShadow: '1px 1px 1px rgba(0,0,0,0.5)'
},
'.list_overlay': {
opacity: 0.8
},
}
export const specRules = {
'text_style_align': [
{
selector: '.gcim__listbox .viewport .list-item',
style: 'text-align: right;'
},
{
selector: '.gcim__listbox .text-content',
style: 'text-align: right !important;'
},
{
selector: '.gcim__listbox .footer',
style: 'text-align: right;'
}
]
}
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'
},
}
});