memEx/lib/memex_web/live/context_live/index.html.heex

72 lines
2.0 KiB
Plaintext
Raw Normal View History

2022-11-24 12:44:34 -05:00
<div class="mx-auto flex flex-col justify-center items-start space-y-4 max-w-3xl">
<h1 class="text-xl">
<%= gettext("contexts") %>
</h1>
<.form
:let={f}
2023-03-16 19:49:19 -04:00
for={%{}}
as={:search}
2022-11-24 12:44:34 -05:00
phx-change="search"
phx-submit="search"
class="self-stretch flex flex-col items-stretch"
>
<%= text_input(f, :search_term,
class: "input input-primary",
value: @search,
2023-03-19 15:28:53 -04:00
role: "search",
2022-11-24 12:44:34 -05:00
phx_debounce: 300,
placeholder: gettext("search")
) %>
</.form>
<%= if @contexts |> Enum.empty?() do %>
<h1 class="self-center text-primary-500">
<%= gettext("no contexts found") %>
</h1>
<% else %>
<.live_component
module={MemexWeb.Components.ContextsTableComponent}
id="contexts-index-table"
current_user={@current_user}
contexts={@contexts}
>
<:actions :let={context}>
2023-02-04 11:29:06 -05:00
<.link
2024-02-23 22:18:25 -05:00
:if={Contexts.owner?(context, @current_user)}
2023-04-13 23:29:29 -04:00
patch={~p"/contexts/#{context}/edit"}
aria-label={dgettext("actions", "edit %{context_slug}", context_slug: context.slug)}
2023-02-04 11:29:06 -05:00
>
<%= dgettext("actions", "edit") %>
</.link>
<.link
:if={Contexts.owner_or_admin?(context, @current_user)}
2023-02-04 11:29:06 -05:00
href="#"
phx-click="delete"
phx-value-id={context.id}
data-confirm={dgettext("prompts", "are you sure?")}
aria-label={dgettext("actions", "delete %{context_slug}", context_slug: context.slug)}
2023-02-04 11:29:06 -05:00
>
<%= dgettext("actions", "delete") %>
</.link>
2022-11-24 12:44:34 -05:00
</:actions>
</.live_component>
<% end %>
2023-04-13 23:29:29 -04:00
<.link :if={@current_user} patch={~p"/contexts/new"} class="self-end btn btn-primary">
2023-02-04 11:29:06 -05:00
<%= dgettext("actions", "new context") %>
</.link>
2022-11-24 12:44:34 -05:00
</div>
2022-07-25 20:11:08 -04:00
2023-04-13 23:29:29 -04:00
<.modal :if={@live_action in [:new, :edit]} return_to={~p"/contexts"}>
2023-02-04 11:29:06 -05:00
<.live_component
module={MemexWeb.ContextLive.FormComponent}
id={@context.id || :new}
current_user={@current_user}
title={@page_title}
action={@live_action}
context={@context}
2023-04-13 23:29:29 -04:00
return_to={~p"/contexts"}
2023-02-04 11:29:06 -05:00
/>
</.modal>