ポリマー2.0でifをあまりにも多く持つために、より最適化されたソリューションを探しています。例えば、私はテーブルオブジェクトを構築しています。ここでは、各セルはテキスト、ボタン、リンク、オブジェクトなどです。ユーザーが2D配列を入力し、Polymer 2.0オブジェクトで使用するマークアップを選択できるようにします。私の現在の解決法(下記)は単純なif文をいくつか持っていますが、これはすべてのセルが各文を呼び出すことを意味します。これを処理するより良い方法はありますか? matchCellType
への呼び出しのポリマー2.0があまりにも多くifs
<template is="dom-if" if="[[matchCellType(cell, 'button')]]">
<UI-Button id='[[cell.button.ID]]' class$='[[cell.button.class]]'>[[cell.button.text]]</UI-Button>
</template>
<template is="dom-if" if="[[matchCellType(cell, 'object')]]">
<span class="object-toggle"></span>[[cell.title]]
<div class="properties">
<template is="dom-repeat" items="[[getProps(cell)]]">
<div class="properties_row"><div class="properties_cell"><b>[[item.title]]:</b></div><div style="display: table-cell">[[item.val]]</div></div>
</template>
</div>
</template>
<template is="dom-if" if="[[matchCellType(cell, 'link')]]">
<a target="_blank" href='[[cell.link.href]]'>[[cell.link.text]]</a>
</template>
<template is="dom-if" if="[[matchCellType(cell, 'cell')]]">
[[cell]]
</template>
<template is="dom-if" if="[[matchCellType(cell, 'textArea')]]">
<ui-text-area rows="[[cell.textArea.rows]]" cols="[[cell.textArea.cols]]" id='[[cell.textArea.id]]' class$='[[cell.textArea.class]]' text= [[cell.textArea.text]]></ui-text-area>
</template>
おかげでノードを削除することもできます! 元々行とセルにサブコンポーネントを使用しようとしましたが、テーブル全体が間違って見えましたが、私はまだ実装を計画しています。 matchCellTypeはifの単純なセットです。 すべてをレンダリングして隠すことは、私が思っていたとは思わないものです。それはちょっとしたアイデアです。 私の主な関心事は、このような構造が遅く、非効率的であるということです。大規模なデータセットであっても、実際にはパフォーマンスは賢明です。私はちょっとこれを追加したいのですが、これは悪い解決策のように思えます。 – mpavlis
..慎重に実行したときに動作する
Markus