76 lines
2.1 KiB
Plaintext
76 lines
2.1 KiB
Plaintext
<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}
|
|
for={:search}
|
|
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,
|
|
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}>
|
|
<%= if is_owner?(context, @current_user) do %>
|
|
<.link
|
|
patch={Routes.context_index_path(@socket, :edit, context.slug)}
|
|
data-qa={"context-edit-#{context.id}"}
|
|
>
|
|
<%= dgettext("actions", "edit") %>
|
|
</.link>
|
|
<% end %>
|
|
<%= if is_owner_or_admin?(context, @current_user) do %>
|
|
<.link
|
|
href="#"
|
|
phx-click="delete"
|
|
phx-value-id={context.id}
|
|
data-confirm={dgettext("prompts", "are you sure?")}
|
|
data-qa={"delete-context-#{context.id}"}
|
|
>
|
|
<%= dgettext("actions", "delete") %>
|
|
</.link>
|
|
<% end %>
|
|
</:actions>
|
|
</.live_component>
|
|
<% end %>
|
|
|
|
<%= if @current_user do %>
|
|
<.link patch={Routes.context_index_path(@socket, :new)} class="self-end btn btn-primary">
|
|
<%= dgettext("actions", "new context") %>
|
|
</.link>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= if @live_action in [:new, :edit] do %>
|
|
<.modal return_to={Routes.context_index_path(@socket, :index)}>
|
|
<.live_component
|
|
module={MemexWeb.ContextLive.FormComponent}
|
|
id={@context.id || :new}
|
|
current_user={@current_user}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
context={@context}
|
|
return_to={Routes.context_index_path(@socket, :index)}
|
|
/>
|
|
</.modal>
|
|
<% end %>
|