リスト

Litでは標準のJavaScriptを使って繰り返し処理をするテンプレートを作成することができます。 また、Litは特定の条件を満たすリストからテンプレートをより効率的に生成するためのrepeatディレクティブを用意しています。

配列をレンダリングする

child expressionの位置に配列やiterableを置くと、Litは下記のように配列内のすべての要素をレンダリングします。

@property() colors = ['red', 'green', 'blue'];

render() {
  return html`<p>Colors: ${this.colors}</p>`;
}
// Colors: redgreenblue

ほとんどの場合、上記のようにそのまま使うことはないでしょう。

mapを使って繰り返しテンプレートを作成する

リストをレンダリングする際に、下記のようにmapを使って、データのリストをテンプレートのリストに変更することができます。

@property() colors = ['red', 'green', 'blue'];

render() {
  return html`
    <ul>
      ${this.colors.map((color) =>
        html`<li style="color: ${color}">${color}</li>`
      )}
    </ul>
  `;
}
// ・ red
// ・ green
// ・ blue

上記のエクスプレッションがTemplateResultオブジェクトの配列を返していることに注目してください。 Litはサブテンプレートやそれ以外の値を値に持つ配列やiterableをレンダリングします。

ループを使って繰り返しテンプレートを作成する

下記のようにテンプレートの配列を作成して、それをエクスプレッション内に配置することができます。

render() {
  const itemTemplates = [];
  for (const i of this.items) {
    itemTemplates.push(html`<li>${i}</li>`);
  }

  return html`
    <ul>
      ${itemTemplates}
    </ul>
  `;
}

repeatディレクティブ

ほとんどの場合、ループやmapを使って繰り返しテンプレートを作成することは効率的です。 しかし、大きなリストの順番を入れ替える、要素を追加する、要素を削除する場合では、 このアプローチは多数のDOM Nodeの更新を引き起こす可能性があります。

そんな時はrepeatディレクティブの出番です。

repeatディレクティブは渡されたキーに基づいてリストを効率的に更新します。

repeat(items, keyFunction, itemTemplate)

例:

import {repeat} from 'lit/directives/repeat.js';
// ...
render() {
  return html`
    <ul>
      ${repeat(this.employees, (employee) => employee.id, (employee, index) => html`
        <li>${index}: ${employee.familyName}, ${employee.givenName}</li>
      `)}
    </ul>
    <button @click=${this.toggleSort}>Toggle sort</button>
  `;
}
// ...

配列のemployeesを再ソートすると、repeatディレクティブは既存のNodeを並び変えます。

上記の名前の<li>をリバースすると仮定して、repeatディレクティブとmapを使った処理内容を比べます。

mapとrepeatの使い分け

mapとrepeat、どちらが効率的かはユースケースによります。

上記2つの場合に該当しない場合はmapかループを使います。


License

Japanese part

Creative Commons Attribution-NonCommercial 4.0 International Public License

Copyright (c) 2022 38elements

Other

Creative Commons Attribution 3.0 Unported

Copyright (c) 2020 Google LLC. All rights reserved.

BSD 3-Clause License

Copyright (c) 2020 Google LLC. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.