<.header>
<%= @item.title %>
Priority:
<%= for _ <- 1..@item.desire do %>
<.icon name="hero-star" class="bg-red-500 text-red-500" />
<% end %>
<%= if @item.description do %>
Description:
<%= @item.description %>
<% end %>
<%= if @item.price do %>
Price:
~£<%= @item.price %>
<% end %>
<.button>
<.link class="block h-full w-full" href={@item.url} target="_blank">
Go to seller <.icon name="hero-arrow-right" />
<.button phx-click={JS.push("toggle_received", value: %{"id" => @item.id})}>
<%= if !@item.received do %>
Mark as purchased
<% else %>
Unmark as purchased
<% end %>