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!
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 7- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
thiagomajesk
Hi @zizheng!
A very simplistic version of what I’m using in my applications is something like this:
And then, you can use it like this:
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
Thanks for the reply @thiagomajesk! I wonder how this part works:
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
@resourceas an assign each time I callrender. I’m trying to figure out how to have each controller only declare once (for example by using theactive_nav_itemfunction in my example code) what nav item it activates.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
You can create a function in your view file like this
and in your html.eex file do like this
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:
I don’t see a lot of ways around explicitly passing the values you need to the helper function though.
Cheers!
zizheng
Thanks, I ended up creating a custom plug that puts the current active nav item in the conn:
and added a function in my
LayoutViewthat queries the conn for this information.trechubet
this doesn’t cover situations where there isnt a request path.