memEx/lib/memex_web/live/note_live/show.html.heex

56 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-11-17 22:38:52 -05:00
<div class="mx-auto flex flex-col justify-center items-stretch space-y-4 max-w-3xl">
<h1 class="text-xl">
2022-11-26 14:51:18 -05:00
<%= @note.slug %>
2022-11-17 22:38:52 -05:00
</h1>
2022-12-15 22:33:10 -05:00
<div class="flex flex-wrap space-x-1">
<%= for tag <- @note.tags do %>
<.link navigate={Routes.note_index_path(Endpoint, :search, tag)} class="link">
<%= tag %>
</.link>
<% end %>
</div>
2022-11-17 22:38:52 -05:00
2022-12-15 22:43:18 -05:00
<.note_content note={@note} />
2022-11-17 22:38:52 -05:00
<p class="self-end">
<%= gettext("Visibility: %{visibility}", visibility: @note.visibility) %>
</p>
<div class="self-end flex space-x-4">
<.link class="btn btn-primary" navigate={Routes.note_index_path(@socket, :index)}>
2022-11-24 12:43:34 -05:00
<%= dgettext("actions", "back") %>
2022-11-17 22:38:52 -05:00
</.link>
<%= if is_owner?(@note, @current_user) do %>
2022-11-26 14:51:18 -05:00
<.link class="btn btn-primary" patch={Routes.note_show_path(@socket, :edit, @note.slug)}>
2022-11-17 22:38:52 -05:00
<%= dgettext("actions", "edit") %>
</.link>
<% end %>
<%= if is_owner_or_admin?(@note, @current_user) do %>
2022-11-24 12:43:34 -05:00
<button
type="button"
class="btn btn-primary"
phx-click="delete"
data-confirm={dgettext("prompts", "are you sure?")}
data-qa={"delete-note-#{@note.id}"}
>
<%= dgettext("actions", "delete") %>
</button>
2022-11-17 22:38:52 -05:00
<% end %>
</div>
</div>
2022-07-25 20:08:40 -04:00
<%= if @live_action in [:edit] do %>
2022-11-26 14:51:18 -05:00
<.modal return_to={Routes.note_show_path(@socket, :show, @note.slug)}>
2022-07-25 20:08:40 -04:00
<.live_component
module={MemexWeb.NoteLive.FormComponent}
id={@note.id}
2022-11-17 22:38:52 -05:00
current_user={@current_user}
2022-07-25 20:08:40 -04:00
title={@page_title}
action={@live_action}
note={@note}
2022-11-26 14:51:18 -05:00
return_to={Routes.note_show_path(@socket, :show, @note.slug)}
2022-07-25 20:08:40 -04:00
/>
</.modal>
<% end %>