コンボコントロールでは、ドロップダウンリストのレンダリングモードを設定することが可能です。
概要
virtualModeプロパティをtrueに設定することで、ドロップダウンリストのレンダリングモードを「仮想モード」に設定することができます。「仮想モード」に設定することで、現在表示されているリストアイテムのDOMのみを生成するような動作となり、リストアイテムの表示を高速化してメモリ使用量を削減できます。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const update = () => {
let container = document.getElementById('container');
container.innerHTML = '';
let gcComboBox = new InputMan.GcComboBox(container, {
items: generateItems(Number(document.getElementById('length').value)),
virtualMode: document.getElementById('virtualMode').checked
});
}
const generateItems = (length) => {
var items = [];
for (var i = 0; i < length; i++) {
items.push('項目' + i);
}
return items;
}
update();
document.getElementById('length').addEventListener('change', (e) => {
update();
});
document.getElementById('virtualMode').addEventListener('change', (e) => {
update();
});
<!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>
<table class="sample">
<tr>
<th>仮想化</th>
<td>
<label><input type="checkbox" id="virtualMode" checked>仮想化を有効にする</label>
</td>
</tr>
<tr>
<th>項目数</th>
<td>
<select id="length">
<option value=1000>1000</option>
<option value=10000>10000</option>
<option value=100000>100000</option>
</select>
</td>
</tr>
</table>
</body>
</html>
body {
min-height: 220px;
}
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'
},
}
});