i can`t figure out how can i gropBy my data from Json when i have this kind of values
2017-10-16 12:07:07
2017-10-16 12:07:07
2017-10-16 15:09:08
2017-10-16 15:09:08
2017-10-16 15:09:08
2017-10-16 15:09:08
2017-10-16 15:09:08
2017-10-16 18:11:09
2017-10-16 18:11:09
2017-11-29 17:26:57
2017-11-29 17:26:57
2017-11-29 17:26:57
2017-11-29 19:31:03
My template
<div class="container">
<div class="row">
<div class="col-5">
{% for date , block in block | groupby("date") %}
<div class="date">{{date |date }}</div>
{% endfor %}
</div>
</div>
</div>
and in output i have
16 Oct
16 Oct
16 Oct
3 Nov
29 Nov
29 Nov
i want to have
16 Oct
3 Nov
29 Nov
Maybe in due to at first i took all data from Json , then i grouped it and only after that i use my dateFilter , but how can i due it in different way?
My gulpfile.js gulpfile
update 19.12.18
<div class="container">
<div class="row">
{% for date, block in block | groupby("date", "datefilter") %}
<div class="col-5">
<div class="date">
<h3> {{date}}</h3>
<p>amount {{block.length}}</p> // this line will give me amount of products for every day .
</div>
{% for id, block in block | groupby("id") %}
<div class="id">
{% for name, block in block | groupby("name") %}
<p>{{name}} № {{ id }} </p>
</div>
{% endfor %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>
Below I improved standard
groupby(prop)
filter togroupby(prop, filter)
.In my code I use
roundDate
insteaddate
name for date-rounder-filter.