135 lines
4.4 KiB
Elixir
135 lines
4.4 KiB
Elixir
defmodule MemexWeb.Components.Topbar do
|
||
@moduledoc """
|
||
Component that renders a topbar with user functions/links
|
||
"""
|
||
|
||
use MemexWeb, :component
|
||
|
||
alias Memex.Accounts
|
||
alias MemexWeb.{Endpoint, HomeLive}
|
||
|
||
def topbar(assigns) do
|
||
assigns =
|
||
%{results: [], title_content: nil, flash: nil, current_user: nil} |> Map.merge(assigns)
|
||
|
||
~H"""
|
||
<nav role="navigation" class="mb-8 px-8 py-4 w-full bg-primary-900 text-primary-400">
|
||
<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">
|
||
<.link
|
||
navigate={Routes.live_path(Endpoint, HomeLive)}
|
||
class="mx-2 my-1 leading-5 text-xl text-primary-400 hover:underline"
|
||
>
|
||
<%= gettext("memex") %>
|
||
</.link>
|
||
|
||
<%= if @title_content do %>
|
||
<span class="mx-2 my-1">
|
||
|
|
||
</span>
|
||
<%= @title_content %>
|
||
<% end %>
|
||
</div>
|
||
|
||
<hr class="mb-2 sm:hidden hr-light" />
|
||
|
||
<ul class="flex flex-row flex-wrap justify-center items-center
|
||
text-lg text-primary-400 text-ellipsis">
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.note_index_path(Endpoint, :index)}
|
||
class="text-primary-400 text-primary-400 hover:underline truncate"
|
||
>
|
||
<%= gettext("notes") %>
|
||
</.link>
|
||
</li>
|
||
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.context_index_path(Endpoint, :index)}
|
||
class="text-primary-400 text-primary-400 hover:underline truncate"
|
||
>
|
||
<%= gettext("contexts") %>
|
||
</.link>
|
||
</li>
|
||
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.pipeline_index_path(Endpoint, :index)}
|
||
class="text-primary-400 text-primary-400 hover:underline truncate"
|
||
>
|
||
<%= gettext("pipelines") %>
|
||
</.link>
|
||
</li>
|
||
|
||
<li class="mx-2 my-1 border-left border border-primary-700"></li>
|
||
|
||
<%= if @current_user do %>
|
||
<%= if @current_user.role == :admin do %>
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.invite_index_path(Endpoint, :index)}
|
||
class="text-primary-400 text-primary-400 hover:underline"
|
||
>
|
||
<%= gettext("invites") %>
|
||
</.link>
|
||
</li>
|
||
<% end %>
|
||
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.user_settings_path(Endpoint, :edit)}
|
||
class="text-primary-400 text-primary-400 hover:underline truncate"
|
||
>
|
||
<%= @current_user.email %>
|
||
</.link>
|
||
</li>
|
||
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
href={Routes.user_session_path(Endpoint, :delete)}
|
||
method="delete"
|
||
data-confirm={dgettext("prompts", "are you sure you want to log out?")}
|
||
>
|
||
<i class="fas fa-sign-out-alt"></i>
|
||
</.link>
|
||
</li>
|
||
|
||
<%= if @current_user.role == :admin and function_exported?(Routes, :live_dashboard_path, 2) do %>
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.live_dashboard_path(Endpoint, :home)}
|
||
class="text-primary-400 text-primary-400 hover:underline"
|
||
>
|
||
<i class="fas fa-gauge"></i>
|
||
</.link>
|
||
</li>
|
||
<% end %>
|
||
<% else %>
|
||
<%= if Accounts.allow_registration?() do %>
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.user_registration_path(Endpoint, :new)}
|
||
class="text-primary-400 text-primary-400 hover:underline truncate"
|
||
>
|
||
<%= dgettext("actions", "register") %>
|
||
</.link>
|
||
</li>
|
||
<% end %>
|
||
|
||
<li class="mx-2 my-1">
|
||
<.link
|
||
navigate={Routes.user_session_path(Endpoint, :new)}
|
||
class="text-primary-400 text-primary-400 hover:underline truncate"
|
||
>
|
||
<%= dgettext("actions", "log in") %>
|
||
</.link>
|
||
</li>
|
||
<% end %>
|
||
</ul>
|
||
</div>
|
||
</nav>
|
||
"""
|
||
end
|
||
end
|