Sebb
I have a two level hierarchy that I want to render in a bootstrap accordion.
It looks like this:
first-level-item-text-1
second-level-item-text-1-1
second-level-item-text-1-2
first-level-item-text-1
second-level-item-text-2-1
...
Normally I would put phx-update="ignore" on the accordion, to avoid that it is being closed on each render, but I can’t do that because I want to change the data that is displayed in a liveview - Is there a way to do that?
here is some code
<!-- cant put phx-update=ignore here -->
<div class="accordion accordion-flush p-1" id="blockAccordion">
<%= for first_level_item in first_level_items %>
<div class="accordion-item">
<h2 class="accordion-header">
<button data-bs-target="#flush-collapse-<%= first_level_item.id %>">
<%= first_level_item.text %>
</button>
</h2>
<div id="flush-collapse-<%= first_level_item.id %>" class="accordion-collapse collapse"
data-bs-parent="#blockAccordion">
<div class="accordion-body p-0 m-0">
<ul class="list-group list-group-flush">
<%= for second_level_item <- first_level_item.second_level_items do %>
<%= render_second_level(second_level_item.id, assigns) %>
<% end %>
</ul>
</div>
</div>
</div>
<% end %>
</div>
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 3- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sfusato
First option would be to add a LiveView Hook that would re-initialize Bootstrap JS on each
mounted & updateLiveView callback. From Bootstrap docs, it looks like this for V5:Second option, have you considered using Alpine? You can enhance your LiveView templates with Alpine without the need of
phx-update="ignore"and also without the need of hooks manually re-initializing JS libraries due to how it’s set up to work with LiveView (check the end of the section of the previous link).Basically, you will use Alpine instead of Bootstrap JS code to handle the accordion state for you. Something like:
x-datainitializes Alpine; we set open to false;open==true;Sebb
thanks for your help.
Yes I considered Alpine, but I thought for this project I go the easy path.
It turns out, that there is too much magic happening I do not understand.
I think Bootstrap and LiveView is really nice, if you know what you are doing, … but I don’t.
I’ll consider this, but I’m not happy with more Javascript stuff going on I don’t understand.
I think I’ll go the Alpine-and-some-CSS-framework-without-JS-path, it’s a little more work, but at least its possible to understand without being a JS-pro.
cj5
If all you want to do is keep the bootstrap state through LiveView updates without marking the container with
phx-update="ignore", it is possible to use onBeforeElUpdated hook. For example, inside yourapp.jswhere the live socket is initialized: