I have a date/time formatting helper but what it produces does not update when the underlying property changes. This is not a surprise, but does anyone know how to produce bindings in helpers?

I invoke the helper like this...

{{timestamp created_at}}

...and here is the helper itself:

Handlebars.registerHelper('timestamp', function(context, options) {
  var formatter        = options.hash['format'] ? options.hash['format'] : 'hh:mm a MM-DD-YYYY';
  var original_date    = Ember.getPath(this, context); // same as this.get(context) ?
  var parsed_date      = moment(original_date);
  var formatted_date   = parsed_date.format(formatter);

  return new Handlebars.SafeString("<time datetime=" + original_date +">" + formatted_date + "</time>");
}); 
link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

It is unfortunately more complex than I'd like to create a custom helper with bound content. Here's an example that Peter Wagenet wrote: https://gist.github.com/1563710

I'll be lobbying for this to become easier.

link|improve this answer
Crap that's even more complex than I thought it would be... I'd be interested to see how that becomes simpler. – Roy Daniels Jan 13 at 6:27
Agreed. There should definitely be some sugar here. – ghempton Feb 21 at 22:38
Note that the latest version of Ember breaks this because Ember.Metamorph has been renamed Ember._Metamorph. Here's an updated gist: gist.github.com/2588802 – rlivsey May 3 at 19:58
feedback

Your Answer

 
or
required, but never shown

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