Web Components Grid 検索フィルター

    Web Components Grid の Ignite UI for Web Components 検索フィルター機能を使用すると、データのコレクション内の値を検索するプロセスが可能になります。この機能のセットアップが簡単になり、検索入力ボックス、ボタン、キーボード ナビゲーション、その他の便利な機能を使用して実装できるため、ユーザー エクスペリエンスがさらに向上します。ブラウザーにはネイティブなコンテンツ検索機能がありますが、ほとんどの場合で IgcGridComponent は表示範囲外の行列を仮想化します。そのため、ネイティブ ブラウザー検索は DOM の一部でないため仮想化セルでデータを検索できません。IgcGrid では、Web Components Material テーブル ベースのグリッドの拡張により、検索 API を使用した仮想コンテンツの検索が可能です。

    Web Components 検索の例

    次の例は、すべての列と行を検索できる検索入力ボックスと、各列の特定のフィルタリング オプションを備えた IgcGridComponent を表しています。

    Web Components 検索の使用

    Grid のセットアップ

    グリッドを作成してからデータをバインドします。コンポーネントにカスタム スタイルも追加しました。

    <igc-grid id="grid1" auto-generate="false" allow-filtering="true">
        <igc-column field="IndustrySector" data-type="string" sortable="true"></igc-column>
        <igc-column field="IndustryGroup" data-type="string" sortable="true"></igc-column>
        <igc-column field="SectorType" data-type="string" sortable="true"></igc-column>
        <igc-column field="KRD" data-type="number" sortable="true"></igc-column>
        <igc-column field="MarketNotion" data-type="number" sortable="true"></igc-column>
        <igc-column field="Date" data-type="date" sortable="true"></igc-column>
    </igc-grid>
    

    では、IgcGridComponent の検索 API の準備をしましょう。検索したテキストの保存、また大文字小文字の区別や完全一致 (またはそのいずれか) に使用するプロパティを作成できます。

        private grid: IgcGridComponent;    
    
        private searchBox: IgcInputComponent;
        
        private clearIcon: IgcIconComponent;
        private nextIconButton: IgcIconButtonComponent;
        private prevIconButton: IgcIconButtonComponent;
    
        private caseSensitiveChip: IgcChipComponent;
        private exactMatchChip: IgcChipComponent;
    

    Web Components 検索ボックス入力

    検索入力を作成します。input 要素を取得することで、その現在の値を取得できます。これにより、IgcGridComponentfindNext メソッドと findPrev メソッドを使用して、SearchText が出現するすべての箇所をハイライト表示し、(呼び出したメソッドに応じて) 次 / 前の箇所にスクロールできるようになります。

    findNextfindPrev メソッドの両方に 3 つの引数があります。

    • Text: string (検索テキスト)
    • (オプション) CaseSensitive: boolean (検索で完全一致するかどうか、デフォルト値は false)。
    • (オプション) ExactMatch: boolean (検索で完全一致するかどうか、デフォルト値は false)。

    完全一致で検索した場合、検索 API は SearchText と完全一致 (大文字小文字の区別を含む) するセル値のみ結果としてハイライト表示します。たとえば、文字列 'software' と 'Software' は大文字小文字を区別しない場合は完全一致となります。

    上記のメソッドは number 値を返します (IgcGridComponent で指定した文字列が含まれる回数)。

    <igc-input id="searchBox" name="searchBox">
    </igc-input>
    
    constructor() {
        var grid = this.grid = document.getElementById('grid') as IgcGridComponent;
        this.searchBox = document.getElementById('searchBox') as IgcInputComponent;
        grid.data = new MarketData();
    }
    
    public nextSearch(){
        this.grid.findNext(this.searchBox.value, false, false);
    }
    

    検索ボタンの追加

    ボタンの各クリック イベント ハンドラー内で findNextfindPrev メソッドを呼び出して検索や検索結果をナビゲーションするためのボタンを作成します。

    <igc-icon-button id="prevIconBtn" variant="flat" name="prev" collection="material" ></igc-icon-button>
    <igc-icon-button id="nextIconBtn" variant="flat" name="next" collection="material"></igc-icon-button>
    
    constructor() {
        var nextIconButton = document.getElementById('nextIconBtn') as IgcIconButtonComponent;
        var prevIconButton = document.getElementById('prevIconBtn') as IgcIconButtonComponent;
        nextIconButton.addEventListener("click", this.nextSearch);
        prevIconButton.addEventListener("click", this.prevSearch);
    }
    public prevSearch() {
        const grid = document.getElementById('grid') as IgcGridComponent;
        const searchBox = document.getElementById('searchBox') as IgcInputComponent;
        grid.findPrev(searchBox.value, false, false);
    }
    
    public nextSearch() {
        const grid = document.getElementById('grid') as IgcGridComponent;
        const searchBox = document.getElementById('searchBox') as IgcInputComponent;
        grid.findNext(searchBox.value, false, false);
    }
    

    キーボード検索の追加

    ユーザーは矢印キーと Enter キーで結果を移動できます。PreventDefault メソッドのデフォルト キャレットの移動を防止する検索入力の keydown イベントを処理し、ユーザーが押したキーに基づいて findNext/findPrev メソッドを呼び出します。

    <input id="search1"/>
    
    constructor() {
        const search1 = document.getElementById('search1') as HtmlInputElement;
        search1.addEventListener('keydown', this.searchKeyDown);
        search1.addEventListener('change', this.findNext);
    }
    
    public findNext(e) {
        const searchText = e.target.value;
        const caseSensitive = false;
        const exactMatch = false;
        const grid = document.getElementById('grid') as IgcGridComponent;
        grid.findNext(searchText, caseSensitive, exactMatch)
    }
    
    public searchKeyDown(ev) {
        const search1 = document.getElementById('search1') as HtmlInputElement;
        const grid = document.getElementById('grid') as IgcGridComponent;
        if (ev.key === 'Enter') {
            ev.preventDefault();
            grid.findNext(search1.value, false, false);
        } else if (ev.key === 'ArrowUp' || ev.key === 'ArrowLeft') {
            ev.preventDefault();
            grid.findPrev(search1.value, false, false);
        }
    }
    

    大文字と小文字の区別と完全一致

    次に完全一致の検索で大文字と小文字を区別するかどうかをユーザーが選択できるようにします。この目的のために、単純なチェックボックス入力を使用し、その change イベントにバインドして、チェックボックスの checked 状態を使用できます。

    <span>Case sensitive</span>
    <input id="case" type="checkbox">
    
    <span>Exact match</span>
    <input id="exact" type="checkbox">
    
    constructor() {
        const case = document.getElementById("case") as HTMLInputElement;
        const exact = document.getElementById("exact") as HTMLInputElement;
        case.addEventListener("change", this.updateSearch);
        exact.addEventListener("change", this.updateSearch);
    }
    
    public updateSearch() {
        const search1 = document.getElementById("search1") as HTMLInputElement;
        const case = document.getElementById("case") as HTMLInputElement;
        const exact = document.getElementById("exact") as HTMLInputElement;
        const grid = document.getElementById("grid") as IgcGridComponent;
        grid.findNext(search1.value, case.checked, exact.checked);
    }
    

    保持

    IgcGridComponent のフィルターやソート、レコードの追加や削除をする場合を想定します。そのような処理の後、現在の検索が自動的に更新されて SearchText に一致するテキストが保持されます。更に検索がページングで動作し、IgcGridComponentPerPage プロパティの変更時もハイライト表示が保持されます。

    アイコンの追加

    その他のコンポーネントを使用するためにユーザー インターフェイスを作成し、検索バー全体のデザインを向上します。検索入力の左側に検索または削除アイコン、検索オプションのチップ、右側にはマテリアル デザイン アイコンと Ripple スタイルのボタンを組み合わせたナビゲーションを表示できます。入力グループ内のコンポーネントをラップしてより洗練されたデザインにすることができます。

    import { defineComponents, IgcInputComponent, IgcChipComponent, IgcIconComponent, IgcIconButtonComponent, registerIconFromText } from "igniteui-webcomponents";
    
    defineComponents(IgcInputComponent, IgcChipComponent, IgcIconComponent, IgcIconButtonComponent);
    

    テンプレートを新しいコンポーネントで更新します。

    <igc-input id="searchBox" name="searchBox">
        <igc-icon id="clearIcon" slot="prefix" name="clear" collection="material"></igc-icon>
        <div slot="suffix">
            <igc-chip selectable="true" id="caseSensitiveChip">Case Sensitive</igc-chip>
            <igc-chip selectable="true" id="exactMatchChip">Exact Match</igc-chip>
        </div>
        <div slot="suffix">
            <igc-icon-button id="prevIconBtn" variant="flat" name="prev" collection="material" ></igc-icon-button>
            <igc-icon-button id="nextIconBtn" variant="flat" name="next" collection="material"></igc-icon-button>
        </div>
    </igc-input>
    
    constructor() {
        const prevIconText = "<svg width='24' height='24' viewBox='0 0 24 24'><path d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'></path></svg>";
        const nextIconText = "<svg width='24' height='24' viewBox='0 0 24 24'><path d='M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'></path></svg>";
        const clearIconText = "<svg width='24' height='24' viewBox='0 0 24 24' title='Clear'><path d='M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'></path></svg>";
    
        registerIconFromText("prev", prevIconText, "material");
        registerIconFromText("next", nextIconText, "material");
        registerIconFromText("clear", clearIconText, "material");
    }
    

    右側の入力グループに以下の目的で別のコンテナーを作成します。

    • 以下は CaseSensitiveExactMatch を切り替えるチップを表示する方法です。プロパティに基づいて色が変わる 2 つのチップでチェックボックスを 置き換えます。チップをクリックすると、どちらのチップがクリックされたかによって各ハンドラーを呼び出します。
    <div slot="suffix">
        <igc-chip selectable="true" id="caseSensitiveChip">Case Sensitive</igc-chip>
        <igc-chip selectable="true" id="exactMatchChip">Exact Match</igc-chip>
    </div>
    
    constructor() {
        const input = document.getElementById("searchBox") as IgcInputComponent;
        input.addEventListener("change", this.updateSearch);
    }
    public updateSearch() {
        const grid = document.getElementById('grid') as IgcGridComponent;
        const caseSensitiveChip = document.getElementById('caseSensitiveChip') as IgcChipComponent;
        const exactMatchChip = document.getElementById('exactMatchChip') as IgcChipComponent;
        grid.findNext(input.value, caseSensitiveChip.selected, exactMatchChip.selected);
    }
    
    • 検索ナビゲーション ボタンは、マテリアルアイコンを使用して入力を Ripple スタイルボタンにします。click イベントのハンドラーはそのままで findNext/findPrev メソッドを呼び出します。
    <div slot="suffix">
        <igc-icon-button id="prevIconBtn" variant="flat" name="prev" collection="material" ></igc-icon-button>
        <igc-icon-button id="nextIconBtn" variant="flat" name="next" collection="material"></igc-icon-button>
    </div>
    
    constructor() {
        const nextIconButton = this.nextIconButton = document.getElementById('nextIconBtn') as IgcIconButtonComponent;
        const prevIconButton = this.prevIconButton = document.getElementById('prevIconBtn') as IgcIconButtonComponent;
        nextIconButton.addEventListener("click", this.nextSearch);
        prevIconButton.addEventListener("click", this.prevSearch);
    }
    
    public nextSearch() {
        const grid = document.getElementById('grid') as IgcGridComponent;
        const caseSensitiveChip = document.getElementById('caseSensitiveChip') as IgcChipComponent;
        const exactMatchChip = document.getElementById('exactMatchChip') as IgcChipComponent;
        grid.findNext(input.value, caseSensitiveChip.selected, exactMatchChip.selected);
    }
    
    public prevSearch() {
        const grid = document.getElementById('grid') as IgcGridComponent;
        const caseSensitiveChip = document.getElementById('caseSensitiveChip') as IgcChipComponent;
        const exactMatchChip = document.getElementById('exactMatchChip') as IgcChipComponent;
        grid.findPrev(input.value, caseSensitiveChip.selected, exactMatchChip.selected);
    }
    

    既知の問題と制限

    制限 説明
    テンプレートを使用したセル内の検索 検索機能のハイライト表示が、デフォルトのセルテンプレートに対してのみ機能する問題。カスタム セル テンプレートを含む列がある場合、ハイライト表示が機能しないため、列フォーマッタなどの代替アプローチを使用するか、searchable (検索可能な) プロパティを false に設定します。
    セル テキストが切れる問題 セル内のテキストが長すぎるために検索テキストが省略記号によって切れている場合も、セルまでスクロールして一致カウントに含まれますが、ハイライト表示はされません。

    API リファレンス

    このトピックでは、IgcGridComponent にカスタム検索バーを実装し、更に検索結果を移動する際の機能を追加しました。アイコン、チップ、入力などその他の Ignite UI for Web Components も使用しています。以下は検索 API です。

    IgcGridComponent メソッド:

    IgcColumn プロパティ:

    その他のコンポーネント (またはそのいずれか) で使用した API:

    その他のリソース

    コミュニティに参加して新しいアイデアをご提案ください。