20 lines
561 B
Handlebars
20 lines
561 B
Handlebars
<SortableGroup
|
|
@model={{this.items}}
|
|
@onChange={{action this.reorderItems}}
|
|
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>
|
|
|
|
<button
|
|
{{on "click" this.addRecipe}}
|
|
class="w-full bg-teal-500 hover:bg-teal-400 text-white font-bold mt-4 py-2 px-4 border-b-4 border-teal-700 hover:border-teal-500 rounded">
|
|
Add Another Recipe
|
|
</button>
|