zizheng

zizheng

Hi all, I’m using Phoenix with Bootstrap and I’m having some trouble figuring out the best way to set the active navbar item.

In Bootstrap, adding the "active" class to a nav item sets it as the current nav item. My goal is to do something like this in my Phoenix templates:

<li class="nav-item <%= nav_item_state(:foos) %>">
  <%= link "Foos", to: Routes.foo_path(@conn, :index), class: "nav-link" %>
</li>

<li class="nav-item <%= nav_item_state(:bars) %>">
  <%= link "Bars", to: Routes.bar_path(@conn, :index), class: "nav-link" %>
</li>

and something like this in my controllers:

# I want to avoid having to pass `:foos`/`:bars` as an assign every time I call `render`
defmodule MyAppWeb.FooController do
  ...
  def active_nav_item, do: :foos
end

defmodule MyAppWeb.BarController do
  ...
  def active_nav_item, do: :bars
end

I want nav_item_state(:foos) to return "active" when the current controller is FooController, and to return "" otherwise.

I think nav_item_state should be defined in my LayoutView module, but not really sure how to piece things together. Appreciate any suggestions!

Showing Posts 1 to 7

thiagomajesk

thiagomajesk

Hi @zizheng!

A very simplistic version of what I’m using in my applications is something like this:

def nav_link(conn, text, opts) do
    to = opts[:to]

    case Map.fetch(conn, :request_path) do
        {:ok, ^to} -> 
            link(text, class: "#{opts[:class]} active")
        _ ->  
            link(text, opts)
    end
end

And then, you can use it like this:

<li class="nav-item">
    <%= nav_link(@conn, "My Navlink", 
        to: Routes.resource_path(@conn, :edit, @resource), 
        class: "nav-link" %>
</li>

I also have other options that allows me to selectively enable/ disable the nav link based on the current path, which is very useful for layouts. I usually pass a regex like this: ~r(/resource/new$) or ~r(/resource/\d+$); which tells the logic behind to enable the nav link for nested resources, etc.

Hope that helps, cheers!

zizheng

zizheng OP

Thanks for the reply @thiagomajesk! I wonder how this part works:

case Map.fetch(conn, :request_path) do
  {:ok, ^to} -> 

Doesn’t this mean the current request path needs to match the nav link target path for the item to be active…?

Also, I kinda want to avoid having to pass @resource as an assign each time I call render. I’m trying to figure out how to have each controller only declare once (for example by using the active_nav_item function in my example code) what nav item it activates.

joaquinalcerro

joaquinalcerro

Have you tried using nav-pills? I use them and ccs customize it. Bootstrap handles the active class.

Also see th “Using Data Attributes” section at the bottom which might also help.

Best regards.

ehayun

ehayun

You can create a function in your view file like this

def active_menu(conn, item) do
    if conn.request_path =~ Atom.to_string(item), do: "active", else: ""
  end

and in your html.eex file do like this

<li class=" <%= active_menu(@conn, :foo) %>"> <a href="/foo">foo</a></li>
<li class=" <%= active_menu(@conn, :bar) %>"> <a href="/bar">bar</a></li>
thiagomajesk

thiagomajesk

Yes, like I said this is roughly what I’m using in my application. You certainly will have to tweak for your own needs. Perhaps matching only parts of the path, using a contains expression or a regex pattern, etc.

Unfortunately, this is how functional programming works, you explicitly pass the values around.
Also, IMHO I don’t think you should rely on your controller’s for that, this is exactly what views are for.

Is there a specific reason you are trying to do that?

Another solution could be creating a plug in your controllers that puts an assign with the desired path that should be activated in the template:

plug :put_active_path when action in [:index, :new, :edit]

# [...]

def put_active_path(conn, _opts) do
    assign(conn, :active_path, Routes.resource(conn, :index))
end

I don’t see a lot of ways around explicitly passing the values you need to the helper function though.

Cheers!

zizheng

zizheng OP

Thanks, I ended up creating a custom plug that puts the current active nav item in the conn:

defmodule MyAppWeb.FooController do
  plug MyAppWeb.Plugs.ActiveNavItem, :foos
  ...
end

and added a function in my LayoutView that queries the conn for this information.

trechubet

trechubet

this doesn’t cover situations where there isnt a request path.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews