本製品ではコントロールの高さや幅などのサイズのほか、背景色や文字色などを含め、コントロールの外観はすべて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 { 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 gcTagBox1 = new InputMan.GcTagBox(document.getElementById('gcTagBox1'), {
items: products,
dropDownWidth: 'auto',
});
const gcTagBox2 = new InputMan.GcTagBox(document.getElementById('gcTagBox2'), {
items: products,
value: ['果汁100%ピーチ', 'コーヒーマイルド'],
readOnly: true
});
const gcTagBox3 = new InputMan.GcTagBox(document.getElementById('gcTagBox3'), {
items: products,
value: ['果汁100%オレンジ', 'コーヒーマイルド'],
enabled: false
});
const gcTagBox4 = new InputMan.GcTagBox(document.getElementById('gcTagBox4'), {
items: products,
watermarkDisplayNullText: '希望商品をお選びください',
watermarkNullText: 'ジュースとコーヒーを用意しました',
});
const gcTagBox5 = new InputMan.GcTagBox(document.getElementById('gcTagBox5'), {
items: products,
value: ['果汁100%レモン', 'コーヒービター'],
showDropDown: false
});
const gcTagBox6 = new InputMan.GcTagBox(document.getElementById('gcTagBox6'), {
items: products,
showDropDown: false,
allowResize: true
});
}
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.replace(/['"]/g, "'") == selector.replace(/['"]/g, "'")) {
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>
<div id="gcTagBox1"></div>
</div>
<div>
読み取り専用の状態<br>
<div id="gcTagBox2"></div>
</div>
<div>
無効な状態<br>
<div id="gcTagBox3"></div>
</div>
</div>
<div class="flexbox">
<div>
ウォーターマーク<br>
<div id="gcTagBox4"></div>
</div>
<div>
ドロップダウンリスト非表示<br>
<div id="gcTagBox5"></div>
</div>
<div>
サイズ変更可能<br>
<div id="gcTagBox6"></div>
</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=".tag-content,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=".tag-content,color">文字色</label>
<label><input type="checkbox" value=".tag-content,fontSize">フォントのサイズ</label>
<label><input type="checkbox" value=".tag-content,fontWeight">フォントの太さ</label>
<label><input type="checkbox" value=".tag-content,fontStyle">フォントのスタイル</label>
<label><input type="checkbox" value=".tag-content,fontFamily">フォントの種類</label>
<label><input type="checkbox" value=".tag-content,textShadow">テキストの影</label>
</div>
<div class="peoperty-header">コントロール無効時のスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim__tagboxeditor .gcim__tagboxeditor-wrapper[disabled='true'] .tag,opacity">透明度</label>
<label><input type="checkbox" value=".gcim__tagboxeditor .gcim__tagboxeditor-wrapper[disabled='true'] .tag,backgroundColor">背景色</label>
<label><input type="checkbox" value=".gcim__tagboxeditor .gcim__tagboxeditor-wrapper[disabled='true'] .tag,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 .tag-input,color">文字色</label>
</div>
<div class="peoperty-header">ウォーターマークのスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim:has(.tag-watermark:not([im-tagbox-placeholder=''])),backgroundColor">背景色</label>
<label><input type="checkbox" value=".gcim:has(.tag-watermark:not([im-tagbox-placeholder=''])),borderColor">境界線の色</label>
<label><input type="checkbox" value=".gcim__tagboxeditor .tag-watermark:empty::before,color">文字色</label>
</div>
<div class="peoperty-header">ウォーターマークのフォーカス時のスタイル</div>
<div class="peoperty-panel">
<label><input type="checkbox" value=".gcim_focused:has(.tag-watermark:not([im-tagbox-placeholder=''])),backgroundColor">背景色</label>
<label><input type="checkbox" value=".gcim_focused:has(.tag-watermark:not([im-tagbox-placeholder=''])),borderColor">境界線の色</label>
<label><input type="checkbox" value=".gcim__tagboxeditor.gcim_focused .tag-watermark:empty::before,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=".gctagbox_dropdown,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__tagboxeditor .resize-corner,backgroundColor">背景色</label>
</div>
<button>CSSコードをコピー</button><br>
<textarea id="style" cols="60" rows="10"></textarea>
</div>
</body>
</html>
export const products = ['果汁100%オレンジ', '果汁100%グレープ', '果汁100%レモン', '果汁100%ピーチ', 'コーヒーマイルド', 'コーヒービター'];
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)',
},
'.tag-content': {
color: '#009900',
cursor: 'crosshair',
fontSize: '20px',
fontWeight: 'bold',
fontStyle: 'italic',
fontFamily: 'serif',
textShadow: '1px 1px 1px rgba(0,0,0,0.5)'
},
".gcim__tagboxeditor .gcim__tagboxeditor-wrapper[disabled='true'] .tag": {
opacity: 0.5,
backgroundColor: '#666666',
color: 'rgb(210, 210, 210)'
},
'.gcim_focused': {
backgroundColor: '#ddddff',
borderColor: '#0000ff',
},
'.gcim_focused .tag-input': {
color: '#0000ff'
},
".gcim:has(.tag-watermark:not([im-tagbox-placeholder='']))": {
backgroundColor: '#ffdddd',
borderColor: '#ff0000',
},
".gcim__tagboxeditor .tag-watermark:empty::before": {
color: '#ff0000'
},
".gcim_focused:has(.tag-watermark:not([im-tagbox-placeholder='']))": {
backgroundColor: '#ffddff',
borderColor: '#990099',
},
".gcim__tagboxeditor.gcim_focused .tag-watermark:empty::before": {
color: '#990099'
},
'.gcim__listbox': {
backgroundColor: '#ddffdd',
borderColor: '#009900',
borderWidth: '2px',
borderStyle: 'dashed',
borderRadius: '12px',
color: '#009900',
fontSize: '20px',
fontWeight: 'bold',
fontStyle: 'italic',
fontFamily: 'serif',
textShadow: '1px 1px 1px rgba(0,0,0,0.5)'
},
'.gctagbox_dropdown':{
boxShadow: '5px 5px 5px rgba(0,0,0,0.5)',
},
'.gcim__listbox > .viewport': {
cursor: 'crosshair'
},
'.gcim__tagboxeditor .resize-corner': {
width: '180px',
height: '40px',
backgroundColor: '#ffff00',
color: '#696969',
cursor: 'wait'
}
}
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;'
},
]
};
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'
},
}
});