Frequently one wants to treat the first and/or last items in a list differently from the others. is there a way to do that using mustache? what about row striping?

(Obviously, one could always use jquery or whatever to apply a css class after the template has been processed, or whatever, but I'm wondering about something more at the template level.)

link|improve this question

67% accept rate
feedback

1 Answer

Mustache is very light, so AFAIK, it does not provide that feature.

You can use something like that, to get even/odd class:

var view = {
  arr: ['one', 'two', 'three'],
  class: function() {
    return _counter++ % 2 == 0 ? 'even' : 'odd';
  },
}

var template = '{{#arr}}<span class="{{class}}">{{.}}</span>{{/arr}}';
Mustache.to_html(template, view);

Or preprocess the data first, something like that:

function preprocessArrayWithFirstLastClass(src) {
  var class;
  for (var i = 0; i < src.length; i++) {
    class = i % 2 == 0 ? 'even' : 'odd';
    if (i == 0) class += ' first';
    if (i == src.length - 1) class += ' last';
    src.class = class;
  }
}

var view = {
  arr: preprocessArrayWithFirstLastClass([{name: 'one'}, {name: 'two'}, {name: 'three'}])
}

var template = '{{#arr}}<span class="{{class}}">{{name}}</span>{{/arr}}';
Mustache.to_html(template, view);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.