1
0
Fork 0
sortable-recipes/ember-ui/app/components/recipe-list.hbs
2019-12-27 22:51:18 -06:00

17 lines
471 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="recipe-item"
as |item|>
<item.handle>
<RecipePreview @meal={{meal}} {{on "click" this.openMealDetails}} />
</item.handle>
</group.item>
{{/each}}
</SortableGroup>
</div>