memEx/lib/memex_web/components/topbar.ex

115 lines
4.1 KiB
Elixir
Raw Normal View History

2022-07-25 19:31:54 -04:00
defmodule MemexWeb.Components.Topbar do
2022-02-25 21:55:27 -05:00
@moduledoc """
Component that renders a topbar with user functions/links
"""
2022-07-25 19:31:54 -04:00
use MemexWeb, :component
2022-02-25 21:55:27 -05:00
2022-07-25 19:31:54 -04:00
alias Memex.Accounts
alias MemexWeb.{Endpoint, HomeLive}
2022-02-25 21:55:27 -05:00
def topbar(assigns) do
assigns =
%{results: [], title_content: nil, flash: nil, current_user: nil} |> Map.merge(assigns)
~H"""
2022-07-25 22:04:10 -04:00
<nav role="navigation" class="mb-8 px-8 py-4 w-full bg-primary-900 text-primary-400">
2022-02-25 21:55:27 -05:00
<div class="flex flex-col sm:flex-row justify-between items-center">
<div class="mb-4 sm:mb-0 sm:mr-8 flex flex-row justify-start items-center space-x-2">
2022-07-25 22:04:10 -04:00
<%= live_redirect("memex",
2022-05-05 21:47:22 -04:00
to: Routes.live_path(Endpoint, HomeLive),
2022-07-25 22:04:10 -04:00
class: "mx-2 my-1 leading-5 text-xl text-primary-400 hover:underline"
2022-02-25 21:55:27 -05:00
) %>
<%= if @title_content do %>
<span class="mx-2 my-1">
|
</span>
<%= @title_content %>
<% end %>
</div>
<hr class="mb-2 sm:hidden hr-light" />
2022-05-05 21:07:02 -04:00
<ul class="flex flex-row flex-wrap justify-center items-center
2022-07-25 22:04:10 -04:00
text-lg text-primary-400 text-ellipsis">
2022-02-25 21:55:27 -05:00
<%= if @current_user do %>
2022-07-25 22:04:10 -04:00
<li class="mx-2 my-1">
2022-10-26 22:08:54 -04:00
<%= live_redirect(gettext("Notes"),
to: Routes.note_index_path(Endpoint, :index),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline truncate"
) %>
</li>
<li class="mx-2 my-1">
<%= live_redirect(gettext("Contexts"),
to: Routes.context_index_path(Endpoint, :index),
class: "text-primary-400 text-primary-400 hover:underline truncate"
) %>
</li>
<li class="mx-2 my-1">
2022-10-26 22:08:54 -04:00
<%= live_redirect(gettext("Pipelines"),
to: Routes.pipeline_index_path(Endpoint, :index),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline truncate"
) %>
</li>
2022-10-26 22:08:54 -04:00
<li class="mx-2 my-1 border-left border border-primary-400"></li>
2022-07-25 22:04:10 -04:00
2022-02-25 21:55:27 -05:00
<%= if @current_user.role == :admin do %>
<li class="mx-2 my-1">
<%= live_redirect(gettext("Invites"),
to: Routes.invite_index_path(Endpoint, :index),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline"
2022-02-25 21:55:27 -05:00
) %>
</li>
<% end %>
2022-07-25 22:04:10 -04:00
2022-02-25 21:55:27 -05:00
<li class="mx-2 my-1">
<%= live_redirect(@current_user.email,
to: Routes.user_settings_path(Endpoint, :edit),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline truncate"
2022-02-25 21:55:27 -05:00
) %>
</li>
2022-07-25 22:04:10 -04:00
2022-02-25 21:55:27 -05:00
<li class="mx-2 my-1">
<%= link to: Routes.user_session_path(Endpoint, :delete),
method: :delete,
data: [confirm: dgettext("prompts", "Are you sure you want to log out?")] do %>
<i class="fas fa-sign-out-alt"></i>
<% end %>
</li>
2022-07-25 22:04:10 -04:00
2022-02-25 21:55:27 -05:00
<%= if @current_user.role == :admin and function_exported?(Routes, :live_dashboard_path, 2) do %>
<li class="mx-2 my-1">
<%= live_redirect to: Routes.live_dashboard_path(Endpoint, :home),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline" do %>
2022-05-06 22:21:53 -04:00
<i class="fas fa-gauge"></i>
2022-02-25 21:55:27 -05:00
<% end %>
</li>
<% end %>
<% else %>
<%= if Accounts.allow_registration?() do %>
<li class="mx-2 my-1">
<%= live_redirect(dgettext("actions", "Register"),
to: Routes.user_registration_path(Endpoint, :new),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline truncate"
2022-02-25 21:55:27 -05:00
) %>
</li>
<% end %>
2022-07-25 22:04:10 -04:00
2022-02-25 21:55:27 -05:00
<li class="mx-2 my-1">
<%= live_redirect(dgettext("actions", "Log in"),
to: Routes.user_session_path(Endpoint, :new),
2022-07-25 22:04:10 -04:00
class: "text-primary-400 text-primary-400 hover:underline truncate"
2022-02-25 21:55:27 -05:00
) %>
</li>
<% end %>
</ul>
</div>
</nav>
"""
end
end