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
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
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
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
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
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
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (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.