herisson
How to build a multi-tab dashboard using liveview?
Hi everyone,
I’ve been trying liveview for the past few days and I found it pretty straight forward when building simple pages.
However, I am now trying to build a SAAS-like dashboard but I’m having a hard time figuring out how to manage it with liveview.
IE:
As I see it there are two way to handle this:
-
Using a layout
dashboard.html.heex:
This method would mean that for each time I click a tab, I render a new liveview. Reloading the entire layout? How would my layout know on which tab I currently am? -
Using a single liveview:
This one would I think look similar to how phx.gen.live handle different views, but considering a large app with multiple tabs, would the file not contain too much ?
Maybe I am missing something. How would you guys build something like that ?
Thanks for the help!
Most Liked
GazeIntoTheAbyss
The easiest method is given as default I believe.
Router Method
Router:
live "/dashboard", DashboardLive.Index, :index
live "/team", DashboardLive.Index, :home
DashboardLive.Index
--- Default Handle Params ---
def handle_params(params, _, socket) do
{:noreply,
socket
|> apply_action(socket.assigns.live_action, params)
}
end
--- Actions Matching Your Router Atoms ---
defp apply_action(socket, :index, params) do
socket
|> assign(:page_title, "Index")
end
defp apply_action(socket, :home, params) do
socket
|> assign(:page_title, "Home")
end
Index.html.heex
<%= if @live_action in [:index] do %>
--- Content For Index ---
<% end %>
<%= if @live_action in [:home] do %>
--- Content For Homr ---
<% end %>
For the above, the apply_action values of :index and :home within the DashboardLive.Index file are paired with the paths in your Router.
live "/dashboard", DashboardLive.Index, :index
When you go to /dashboard you run:
defp apply_action(socket, :index, params) do
socket
|> assign(:page_title, "Dashboard")
end
The handle_params allows you to use <%= if @live_action in [:whatever] %> to display content specific to the Router path as it applies the action to the socket.
Non Router Method
If you want to display content without using different router paths, you can still do similar.
In your mount, assign a default value to the socket.
def mount(_params, _session, socket) do
socket = socket
|> assign(:page, "dashboard")
{:ok, socket}
end
You can display any dashboard based content by using:
<%= if @page === "dashboard" do %>
<% end %>
To change the content, when a button is clicked you trigger a handle_event and update the socket value for page instead of changing path
Home button on the dash.
<.button type="button" phx-click="change content" phx-value-page="home" >
<%= "Home Button %>
</.button>
Handle_Event to update the socket. The “page” => page will take your phx-value-page string value and assign it to the socket as :page. Effectively you are change :page from “dashboard” to “home”
def handle_event("change conten", %{"page" => page}, socket) do
{:noreply, socket |> assign(:page, page)}
end
Once the socket has been updated the @page value will now be “home” so the original content being displayed as “dashboard” will be hidden, and the below will be displayed.
<%= if @page === "home" do %>
<% end %>
The handle_event may need something like patch to reload the content though, not sure how my example actually performs as I obviously didn’t test it.
I’m just a humble amateur
but I believe the Router method is prefered for full page loads, and the non Router method is more for showing/hiding things on the page or passing values around.
adw632
I would suggest reading Live Navigation docs.
You don’t need to make a complex multiheaded hydra liveview with different actions using live components. Given this creates additional complexities with data loading for the different action cases in the parent liveview I would recommend against this approach if you have vastly different data requirements between each live component.
Instead, where the data requirements are different you can use distinct routes within your live_session block in your router config with independent live views and just use <.link navigate={...}> from your navigation menu to switch between them. As per the documentation, it does not re-render the entire layout.
It looks like you are using Petal components. There may be some additional considerations with live navigation from their menu component as you want live navigation, not redirection with full page reload.
sbuttgereit
Have you looked at:
https://github.com/phoenixframework/phoenix_live_dashboard
It seems to be very similar to the kind of problem you’re trying to solve.
Popular in Questions
Other popular topics
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
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









