ember-composable-helpers icon indicating copy to clipboard operation
ember-composable-helpers copied to clipboard

group-by date

Open danilovaz opened this issue 9 years ago • 0 comments

Is there any plan to allow group by date? The group-by only works with Strings. But there are many cases where you need to group by date, for example.

{{#each-in (group-by "date" sortedMessages) as |date sortedMessages|}}
  <h3>{{date}}</h3>
  <ul>
    {{#each sortedMessages as |chatMessage|}}
      <li>{{chatMessage.message}}</li>
    {{/each}}
  /ul>
{{/each-in}}

danilovaz avatar Oct 26 '16 13:10 danilovaz