fteschke

fteschke

I use this pattern to handle user input before JS has loaded / hooks have mounted:

<button onclick="this.$clicked = true" phx-hook="MyHook" phx-click={JS.dispatch('clicked')} />
// my_hook.js
mounted() {
  this.el.addEventListener('clicked', () => { ... })

  if (this.el.$clicked) {
    this.js().exec(this.el.getAttribute('phx-click'))
  }
}

This works quite well. But I would prefer a global solution rather than extending each relevant hook.

Ideally:

// app.js
document.querySelectorAll('[onclick="this.$clicked = true]').forEach(el => {
  if (el.$clicked) {
    window.liveSocket.execJS(el, el.getAttribute('phx-click'))
  }
})

However, there is a timing problem.
If phx-click dispatches an event that the hook needs to handle, the hook must have been mounted (attached it’s event listener) first.

So I want to delay my app.js code until all hooks have been mounted.
Is there any way to do this (I was hoping for a phx:all-hooks-mounted event)?
Or is there an entirely different approach to achieving this?

Showing Posts 1 to 9

LostKobrakai

LostKobrakai

You could probably do phx-mounted={JS.dispatch("maybe-clicked")}

fteschke

fteschke OP

Afaict phx-mounted is executed for element A before hook for element B has mounted.
So I can’t use this as a global indicator of “all hooks have mounted”.
Instead, I would have to determine if an element is within a hook, and whether that hook has already been mounted.
I reckon that’s possible, just way more fiddly than I would like. And again, probably have to instrument each hook, or at least HTML where hook is referenced, individually.

fteschke

fteschke OP

Maybe a mutation observer on all [phx-hook] elements, and wait until el.phxPrivate.mounted == true? Although I doubt the observer triggers for non-HTML attributes (phxPrivate).

LostKobrakai

LostKobrakai

Why do you need that? You’re already sending individual clicks to the server.

fteschke

fteschke OP

Sorry, I’m not talking about sending the clicks to the server. I should have been clearer about this.
This is about client-side handling only.
E.g. user clicks dropdown button or sidebar toggle button before JS bundle has loaded.

LostKobrakai

LostKobrakai

I still do not see why that would require some global tracking.

dimitarvp

dimitarvp

You could just disable the whole thing until LiveView is fully ready on the page. From then on it’s business as usual.

Not the most elegant solution but I’ve very rarely stumbled upon users who would nervously click on the page 0.5s after they typed an URL.

fteschke

fteschke OP

Agreed, disabling the interactive elements would work. Best without any visual style changes (suppress any button ‘disabled’ styles) to avoid flickering on page load.

Similar line of thought: Optimize page load times (small JS bundle, chunk splitting, …, check caching).

Even so, if any one has thoughts in case above is not enough, please let me know.

fteschke

fteschke OP

I want to handle click events that occurred before the JS bundle loaded.
Such events may be handled by JS hooks.
For the event to be properly handled, the respective hook may have to be mounted and have registered its event listeners.

So before I can “retry” the phx-click handler for each element that was early clicked, I need to make sure that any hook that may be listening to events dispatched from that phx-click has been mounted.
I can solve this problem per element/hook by knowing which elements and hooks are related.
But I would rather have a global solution that doesn’t require this level of knowledge. In that case I think the easiest solution is to wait until all hooks have mounted before “retrying” the phx-click handlers.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
ryanwinchester
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
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

Latest on Elixir Forum

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews