54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
<div class="mx-auto flex flex-col justify-center items-stretch space-y-4 max-w-3xl">
|
|
<h1 class="text-xl">
|
|
<%= @note.slug %>
|
|
</h1>
|
|
|
|
<div class="flex flex-wrap space-x-1">
|
|
<.link
|
|
:for={tag <- @note.tags}
|
|
navigate={Routes.note_index_path(Endpoint, :search, tag)}
|
|
class="link"
|
|
>
|
|
<%= tag %>
|
|
</.link>
|
|
</div>
|
|
|
|
<.note_content note={@note} />
|
|
|
|
<p class="self-end">
|
|
<%= gettext("Visibility: %{visibility}", visibility: @note.visibility) %>
|
|
</p>
|
|
|
|
<div class="self-end flex space-x-4">
|
|
<.link
|
|
:if={Notes.is_owner?(@note, @current_user)}
|
|
class="btn btn-primary"
|
|
patch={Routes.note_show_path(@socket, :edit, @note.slug)}
|
|
>
|
|
<%= dgettext("actions", "edit") %>
|
|
</.link>
|
|
<button
|
|
:if={Notes.is_owner_or_admin?(@note, @current_user)}
|
|
type="button"
|
|
class="btn btn-primary"
|
|
phx-click="delete"
|
|
data-confirm={dgettext("prompts", "are you sure?")}
|
|
aria-label={dgettext("actions", "delete %{note_slug}", note_slug: @note.slug)}
|
|
>
|
|
<%= dgettext("actions", "delete") %>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<.modal :if={@live_action == :edit} return_to={Routes.note_show_path(@socket, :show, @note.slug)}>
|
|
<.live_component
|
|
module={MemexWeb.NoteLive.FormComponent}
|
|
id={@note.id}
|
|
current_user={@current_user}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
note={@note}
|
|
return_to={Routes.note_show_path(@socket, :show, @note.slug)}
|
|
/>
|
|
</.modal>
|