16 lines
424 B
Handlebars
16 lines
424 B
Handlebars
<div class="rounded-md shadow-md">
|
|
<SortableGroup
|
|
@model={{this.sortedItems}}
|
|
@onChange={{action this.reorderMeals}}
|
|
as |group|>
|
|
{{#each group.model as |meal|}}
|
|
<group.item
|
|
@model={{meal}}
|
|
as |item|>
|
|
<item.handle>
|
|
<RecipePreview @meal={{meal}} {{on "click" this.openMealDetails}} />
|
|
</item.handle>
|
|
</group.item>
|
|
{{/each}}
|
|
</SortableGroup>
|
|
</div>
|