Sebb

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>

Showing Posts 1 to 3

sfusato

sfusato

First option would be to add a LiveView Hook that would re-initialize Bootstrap JS on each mounted & update LiveView callback. From Bootstrap docs, it looks like this for V5:

var collapseElementList = [].slice.call(document.querySelectorAll('.collapse'))
var collapseList = collapseElementList.map(function (collapseEl) {
  return new bootstrap.Collapse(collapseEl)
})

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:

<div class="accordion accordion-flush p-1" id="blockAccordion"> 
<%= for first_level_item in first_level_items %>
+ <div x-data="{open: false}" id="accordion_<%= first_level_item.id %>" class="accordion-item">
  <h2 class="accordion-header">
+   <button @click="open=!open">
      <%= first_level_item.text %>
    </button>
  </h2>
+ <div x-show="open" x-cloak class="accordion-collapse collapse">
    <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>
  • x-data initializes Alpine; we set open to false;
  • on button click, it toggles the value;
  • the accordion is only displayed when open==true;
  • Patrick Thompson’s blog has some great articles on LiveView & Alpine working together;
Sebb

Sebb OP

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.

a LiveView Hook that would re-initialize Bootstrap JS on each mounted & update LiveView callback

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

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 your app.js where the live socket is initialized:

const liveSocket = new LiveSocket('/live', Socket, {
  // ...
  dom: {
    onBeforeElUpdated (from, to) {
      // Clone bs-collapse state
      if (from.classList.contains('collapse') && from.classList.contains('show')) {
        to.classList.add('show');
      }
    },
  },
});
— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
Blokh
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
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
Onor.io
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
jaybe78
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
Trolleger
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
widianto
I think I’ve found a small improvement I could contribute to &lt;%= web_namespace %&gt;.CoreComponents (installer/templates/phx_web/compo...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
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
aseigo
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews