スタイルの設定

このサンプルではコンボコントロールの背景色や幅、高さなどのスタイルをCSSに設定する場合のソースコードを確認することができます。

本製品ではコントロールの高さや幅などのサイズのほか、背景色や文字色などを含め、コントロールの外観はすべて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, 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 gcComboBox1 = new InputMan.GcComboBox(document.getElementById('gcComboBox1'), { items: orders, displayMemberPath: 'product', valueMemberPath: 'product', dropDownWidth: 'auto', columns: [ { name: 'id', label: '商品コード', width: 80 }, { name: 'product', label: '商品名', width: 200 }, ], footerTemplate: '商品を選択してください' }); gcComboBox1.setSelectedIndex(0); const gcComboBox2 = new InputMan.GcComboBox(document.getElementById('gcComboBox2'), { items: orders, displayMemberPath: 'product', valueMemberPath: 'product', dropDownWidth: 'auto', columns: [ { name: 'id', label: '商品コード', width: 80 }, { name: 'product', label: '商品名', width: 200 }, ], footerTemplate: '商品を選択してください' }); gcComboBox2.setSelectedIndex(0); gcComboBox2.setEnabled(false); const gcComboBox3 = new InputMan.GcComboBox(document.getElementById('gcComboBox3'), { items: orders, displayMemberPath: 'product', valueMemberPath: 'product', dropDownWidth: 'auto', columns: [ { name: 'id', label: '商品コード', width: 80 }, { name: 'product', label: '商品名', width: 200 }, ], footerTemplate: '商品を選択してください' }); gcComboBox3.setWatermarkDisplayNullText('商品'); gcComboBox3.setWatermarkNullText('商品を選択'); } 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}`); if (cssRules == null) { return; } 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="gcComboBox1"></select> </div> <div> 無効な状態<br> <select id="gcComboBox2"></select> </div> <div> ウォーターマーク<br> <select id="gcComboBox3"></select> </div> </div> <div class="peoperty-header">コントロール全般のスタイル</div> <div class="peoperty-panel"> <label><input type="checkbox" value=".gcim,width">コントロールの幅</label> <label><input type="checkbox" value=".gcim,height">コントロールの高さ</label> <label><input type="checkbox" value=".gcim,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim,borderWidth">境界線の幅</label> <label><input type="checkbox" value=".gcim,borderStyle">境界線のスタイル</label> <label><input type="checkbox" value=".gcim,borderRadius">境界線の角丸</label> <label><input type="checkbox" value=".gcim__input,cursor">カーソルの形</label> <label><input type="checkbox" value=".gcim,boxShadow">コントロールの影</label> </div> <div class="peoperty-header">テキストのスタイル</div> <div class="peoperty-panel"> <label><input type="checkbox" value=".gcim,color">文字色</label> <label><input type="checkbox" value=".gcim__input,fontSize">フォントのサイズ</label> <label><input type="checkbox" value=".gcim__input,fontWeight">フォントの太さ</label> <label><input type="checkbox" value=".gcim__input,fontStyle">フォントのスタイル</label> <label><input type="checkbox" value=".gcim__input,fontFamily">フォントの種類</label> <label><input type="checkbox" value=".gcim__input,textAlign">水平方向の位置</label> <label><input type="checkbox" value=".gcim__input,textShadow">テキストの影</label> </div> <div class="peoperty-header">コントロール無効時のスタイル</div> <div class="peoperty-panel"> <label><input type="checkbox" value=".gcim__input:disabled,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim__input:disabled,color">文字色</label> </div> <div class="peoperty-header">フォーカス時のスタイル</div> <div class="peoperty-panel"> <label><input type="checkbox" value=".gcim_focused,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim_focused,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim_focused,color">文字色</label> </div> <div class="peoperty-header">ウォーターマークのスタイル</div> <div class="peoperty-panel"> <label><input type="checkbox" value=".gcim_watermark_null,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim_watermark_null,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim_watermark_null,color">文字色</label> </div> <div class="peoperty-header">ウォーターマークのフォーカス時のスタイル</div> <div class="peoperty-panel"> <label><input type="checkbox" value=".gcim_focused.gcim_watermark_null,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim_focused.gcim_watermark_null,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim_focused.gcim_watermark_null,color">文字色</label> </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> <button>CSSコードをコピー</button><br> <textarea id="style" cols="60" rows="10"></textarea> </div> </body> </html>
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': { width: '180px', height: '40px', backgroundColor: '#ddffdd', borderColor: '#009900', borderWidth: '2px', borderStyle: 'dashed', borderRadius: '12px', boxShadow: '5px 5px 5px rgba(0,0,0,0.5)', color: '#009900' }, '.gcim__input': { cursor: 'crosshair', fontSize: '20px', fontWeight: 'bold', fontStyle: 'italic', fontFamily: 'serif', textAlign: 'right', textShadow: '1px 1px 1px rgba(0,0,0,0.5)' }, '.gcim__input:disabled': { backgroundColor: '#666666', color: '#cccccc', cursor: 'wait' }, '.gcim_focused': { backgroundColor: '#ddddff', borderColor: '#0000ff', color: '#0000ff' }, '.gcim_watermark_null': { backgroundColor: '#ffdddd', borderColor: '#ff0000', color: '#ff0000' }, '.gcim_focused.gcim_watermark_null': { backgroundColor: '#ffddff', borderColor: '#990099', color: '#990099' }, '.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)' }, }; 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' }, } });