web-dev-qa-db-ja.com

handlebars.jsテンプレートを使用した配列の最後のアイテムを条件とする

私はテンプレートエンジンにhandlebars.jsを利用しており、テンプレート構成オブジェクトに含まれる配列の最後のアイテムである場合にのみ条件付きセグメントを表示しようとしています。

{
  columns: [{<obj>},{<obj>},{<obj>},{<obj>},{<obj>}]
}

私はすでにいくつかの同等/より大きい/より小さい比較を行うためにヘルパーを引き込んでおり、この方法で最初のアイテムを特定することに成功しましたが、ターゲット配列の長さにアクセスできませんでした。

Handlebars.registerHelper('compare', function(lvalue, rvalue, options) {...})

"{{#each_with_index columns}}"+
"<div class='{{#equal index 0}} first{{/equal}}{{#equal index ../columns.length()}} last{{/equal}}'>"+
"</div>"+
"{{/each_with_index}}"

誰もがショートカット、別のアプローチ、ハンドルバーの良さを知っているので、最良のコースを決定するためにhandlebars.jsエンジンに手を入れる必要はありませんか?

66
techie.brandon

Handlebars v1.1.0では、この問題の各ヘルパーで@firstおよび@lastブール値を使用できるようになりました。

{{#each foo}}
    <div class='{{#if @first}}first{{/if}}
                {{#if @last}} last{{/if}}'>
      {{@key}} - {{@index}}
    </div>
{{/each}}

トリックを行うために書いた簡単なヘルパーは次のとおりです。

Handlebars.registerHelper("foreach",function(arr,options) {
    if(options.inverse && !arr.length)
        return options.inverse(this);

    return arr.map(function(item,index) {
        item.$index = index;
        item.$first = index === 0;
        item.$last  = index === arr.length-1;
        return options.fn(item);
    }).join('');
});

その後、あなたは書くことができます:

{{#foreach foo}}
    <div class='{{#if $first}} first{{/if}}{{#if $last}} last{{/if}}'></div>
{{/foreach}}
97
bren brightwell

Handlebars 1.1.0以降、最初と最後が各ヘルパーのネイティブになりました。チケット #48 を参照してください。

使い方は Eberanov's ヘルパークラスのようです:

{{#each foo}}
    <div class='{{#if @first}}first{{/if}}{{#if @last}} last{{/if}}'>{{@key}} - {{@index}}</div>
{{/each}}
153

配列の最初の項目を処理しようとすると、これが役立つ場合があります

{{#each data-source}}{{#if @index}},{{/if}}"{{this}}"{{/each}}

@indexは各ヘルパーによって提供され、最初の項目についてはゼロに等しいため、ifヘルパーによって処理できます。

26
Yong Qu

解決:

<div class='{{#compare index 1}} first{{/compare}}{{#compare index total}} last{{/compare}}'></div>

次のブログとGistのヘルパーを活用する...

https://Gist.github.com/2889952

http://doginthehat.com.au/2012/02/comparison-block-helper-for-handlebars-templates/

// {{#each_with_index records}}
//  <li class="legend_item{{index}}"><span></span>{{Name}}</li>
// {{/each_with_index}}

Handlebars.registerHelper("each_with_index", function(array, fn) {
  var total = array.length;
  var buffer = "";

  //Better performance: http://jsperf.com/for-vs-foreach/2
  for (var i = 0, j = total; i < j; i++) {
    var item = array[i];

    // stick an index property onto the item, starting with 1, may make configurable later
    item.index = i+1;
    item.total = total;
    // show the inside of the block
    buffer += fn(item);
  }

  // return the finished buffer
  return buffer;

});

Handlebars.registerHelper('compare', function(lvalue, rvalue, options) {

    if (arguments.length < 3)
        throw new Error("Handlerbars Helper 'compare' needs 2 parameters");

    operator = options.hash.operator || "==";

    var operators = {
        '==':       function(l,r) { return l == r; },
        '===':      function(l,r) { return l === r; },
        '!=':       function(l,r) { return l != r; },
        '<':        function(l,r) { return l < r; },
        '>':        function(l,r) { return l > r; },
        '<=':       function(l,r) { return l <= r; },
        '>=':       function(l,r) { return l >= r; },
        'typeof':   function(l,r) { return typeof l == r; }
    }

    if (!operators[operator])
        throw new Error("Handlerbars Helper 'compare' doesn't know the operator "+operator);

    var result = operators[operator](lvalue,rvalue);

    if( result ) {
        return options.fn(this);
    } else {
        return options.inverse(this);
    }

});

開始インデックスが正しく1であることに注意してください

1
techie.brandon

Matt Brennan からヘルパーを少し改善しました。このヘルパーをオブジェクトまたは配列で使用できます。このソリューションには nderscore ライブラリが必要です。

Handlebars.registerHelper("foreach", function(context, options) {
  options = _.clone(options);
  options.data = _.extend({}, options.hash, options.data);

  if (options.inverse && !_.size(context)) {
    return options.inverse(this);
  }

  return _.map(context, function(item, index, list) {
    var intIndex = _.indexOf(_.values(list), item);

    options.data.key = index;
    options.data.index = intIndex;
    options.data.isFirst = intIndex === 0;
    options.data.isLast = intIndex === _.size(list) - 1;

    return options.fn(item, options);
  }).join('');
});

使用法:

{{#foreach foo}}
    <div class='{{#if @first}}first{{/if}}{{#if @last}} last{{/if}}'>{{@key}} - {{@index}}</div>
{{/foreach}}
0
ebaranov