ソートとフィルタ

このサンプルではコンボコントロールで任意のソート処理とフィルタ処理を実行する方法を紹介します。ソート条件/関数またはフィルタ条件/関数を利用して処理を実行する方法を確認できます。

コンボコントロールで任意のソート処理とフィルタ処理を実行する方法について紹介します。 ソート コンボコントロールのsortメソットでは、ソート条件(並び替える列と並び替えの方法)を指定して、ドロップダウンリストをソートすることができます。 isAscをtrueにすると昇順で、falseにすると降順でソートされます。 また、sortメソットの引数にソート関数を指定して、任意のソート処理を実行することができます。 以下はソート実行時にName列とValue列を昇順にソートするサンプルです。 上記のサンプルのように、ソート関数では複数列をソートしたい場合に有効です。 フィルタ コンボコントロールのfilterメソットでは、フィルタ条件(フィルタリングする列、フィルタする値の比較方法、フィルタで使用する値)を指定して、ドロップダウンリストをフィルタすることができます。 また、filterメソットの引数にはフィルタ関数を指定することで、任意のフィルタ処理を実行することができます。 以下のサンプルは任意の入力要素に入力された値より大きい値のみを表示するサンプルです。
import '@grapecity/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@grapecity/inputman'; import orders from './data'; import './styles.css'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const columns = [ { name: 'id', label: '商品コード', width: 80 }, { name: 'product', label: '商品名', width: 200 }, { name: 'date', label: '受注日', width: 120 }, { name: 'price', label: '単価', width: 80 }, { name: 'amount', label: '数量', width: 80 }, ]; const gcComboBox = new InputMan.GcComboBox(document.getElementById('gcComboBox'), { items: orders, columns: columns, displayMemberPath: 'product', valueMemberPath: 'product', dropDownWidth: 'auto', }); const gcComboBox2 = new InputMan.GcComboBox(document.getElementById('gcComboBox2'), { items: orders, columns: columns, displayMemberPath: 'product', valueMemberPath: 'product', dropDownWidth: 'auto', }); const gcNumber = new InputMan.GcNumber(document.getElementById('filterValue'), { minValue: 0, }); //ソート条件によるソート(昇順) document.getElementById('ascId').addEventListener('change', (e) => { let sortIdInfo = { name: 'id', isAsc: true }; e.target.checked ? gcComboBox.sort(sortIdInfo) : gcComboBox.sort(null); }); //フィルタ条件によるフィルタ document.getElementById('filterinfo').addEventListener('change', (e) => { if (e.target.checked === true) { gcComboBox.filter(filterIdInfo); } else { gcComboBox.filter(null); } }); //ソート関数によるソート document.getElementById('customSort').addEventListener('change', (e) => { if (e.target.checked === true) { gcComboBox2.sort(ascFunc); } else { gcComboBox2.sort(null); } }); let filterIdInfo = [{ name: 'product', comparator: GC.InputMan.FilterComparator.Contains, filterString: 'なま' }]; //フィルタ関数によるフィルタ document.getElementById('fliterBtn').addEventListener('click', () => { gcComboBox2.filter((v) => { //売上がフィルタ値より大きければ表示する return v.price * v.amount > gcNumber.value; }); }); //昇順関数 const ascFunc = (first, second) => { if (first.item.id == second.item.id) { return first.item.price - second.item.price; } return first.item.id - second.item.id; }
<!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> System.import('./src/app'); </script> </head> <body> <h3>ソート条件、フィルタ条件を利用したサンプル</h3> <div id="gcComboBox"></div> <table class="sample"> <tr> <th>ソート条件によるソート</th> <td> <label><input type="checkbox" id="ascId">商品コードを昇順にする</label> </td> </tr> <tr> <th>フィルタ条件によるフィルタ</th> <td> <label><input type="checkbox" id="filterinfo">「なま」を含む商品名でフィルタする</label> </td> </tr> </table> <br> <h3>ソート関数、フィルタ関数を利用したサンプル</h3> <div id="gcComboBox2"></div> <table class="sample"> <tr> <th>ソート関数によるソート</th> <td> <label><input type="checkbox" id="customSort" >商品コードと単価を昇順にする</label> </td> </tr> <tr> <th>フィルタ関数によるフィルタ<br>※入力した売上以上の項目を表示する</th> <td> <input id="filterValue"><button id="fliterBtn">実行</button> </td> </tr> </table> </body> </html>
module.exports = [ { id: 18, product: 'ピリカラタバスコ', date: '2020/01/07', price: 200, amount: 20 }, { id: 17, product: 'だしこんぶ', date: '2020/01/08', price: 80, amount: 50 }, { id: 15, product: 'ピュアデミグラスソース', date: '2020/01/10', price: 300, amount: 30 }, { id: 17, product: 'だしこんぶ', date: '2020/01/10', price: 100, amount: 100 }, { id: 17, product: 'だしこんぶ', date: '2020/01/12', price: 70, amount: 100 }, { id: 15, product: 'ピュアデミグラスソース', date: '2020/01/12', price: 450, amount: 30 }, { id: 18, product: 'ピリカラタバスコ', date: '2020/01/12', price: 180, amount: 20 }, { id: 85, product: 'なまからし', date: '2020/01/13', price: 150, amount: 40 }, { id: 84, product: 'なまわさび', date: '2020/01/21', price: 150, amount: 40 }, { id: 86, product: 'なましょうが', date: '2020/01/20', price: 150, amount: 40 }, ];
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: { '@grapecity/inputman': 'npm:@grapecity/inputman/index.js', '@grapecity/inputman/CSS': 'npm:@grapecity/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' }, } });