<.header> Post <%= @post.id %> <:subtitle>This is a post record from your database. <:actions> <.link patch={~p"/posts/#{@post}/show/edit"} phx-click={JS.push_focus()}> <.button>Edit post <.list> <:item title="Username"><%= @post.username %> <:item title="Body"><%= @post.body %> <:item title="Likes count"><%= @post.likes_count %> <:item title="Reposts count"><%= @post.reposts_count %> <.back navigate={~p"/posts"}>Back to posts <%= if @live_action in [:edit] do %> <.modal id="post-modal" show on_cancel={JS.patch(~p"/posts/#{@post}")}> <.live_component module={ChirpWeb.PostLive.FormComponent} id={@post.id} title={@page_title} action={@live_action} post={@post} navigate={~p"/posts/#{@post}"} /> <% end %>