1
0
Fork 0
sortable-recipes/ember-ui/app/components/meal-list.hbs
2019-12-28 23:01:22 -06:00

17 lines
464 B
Handlebars

<div class="rounded-md shadow-md bg-gray-200">
<SortableGroup
@model={{this.sortedItems}}
@onChange={{action this.reorderMeals}}
as |group|>
{{#each group.model as |meal|}}
<group.item
@model={{meal}}
data-test-id="meal-item"
as |item|>
<item.handle>
<MealItem @meal={{meal}} {{on "click" this.openMealDetails}} />
</item.handle>
</group.item>
{{/each}}
</SortableGroup>
</div>