VTek
1st project here. Trying to attach a hook. I’ve spent hours logging everything I can think of to figure out why I can see my hook mount and even verify it mounts to the id I gave the element, but nothing I do will fire it.
Is there a way to trigger it from F12 console to confirm it’s even there? I tried this, but get true, and no console.log that I’m expecting:
hookElement.dispatchEvent(new CustomEvent("phx:update"))
TL;DR but here’s the now obnoxious dysfunctional hook (and yes I do send it when I new LiveSocket):
console.log("Hook definition reached");
let Hooks = {};
Hooks.IntroductionComplete = {
mounted() {
console.log("IntroductionComplete hook mounted on " + this.el.id);
this.lastEventTime = 0;
this.setupEvent();
if (this.el) {
this.el.dispatchEvent(new CustomEvent("phx:update"));
}
else console.log("No element found");
},
updated() {
console.log("IntroductionComplete hook updated");
this.setupEvent();
},
setupEvent() {
console.log("Before setting up introduction_complete event listener");
if (this.hasEventListener) return;
setTimeout(() => {
this.hasEventListener = true;
console.log("Setting up introduction_complete event listener");
this.handleEvent("introduction_complete", () => {
console.log("Entering introduction_complete event handler");
console.log("Introduction complete event received");
this.revealTextArea();
});
console.log("After setting up introduction_complete event listener");
}, 300); // Adjust the delay for testing
},
revealTextArea() {
console.log("Revealing text area");
// Implement logic to reveal or enable the text area here
}
};
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
regex.sh
You “dispatch” Hook by hooking it to an HTML element with id…
VTek
I’ve put it on divs and things at all different levels, root, app, component, sub-component, here’s where I have it now:
It doesn’t work, no matter where I put it.
I call it like this and console logs tell me it’s called:
I’m so new at phx that I’m sure it’s something silly. I even stumbled on possibly using phx-update=“ignore” which seemed counterintuitive, but I’m stumped. AI is no help at all, it makes stuff up. So I’d hoped if I understood where the event is actually put in the dom I could see if it’s even there. AI just made stuff up:
“My previous suggestions regarding __phoenixHooks and __phxHookInstances were incorrect in terms of how you directly access hook instances on DOM elements in the browser console.”
Adzz
What are you trying to do with the hook first?
revealTextAreaimplies showing / hiding something which can be done more simply either with CSS and HTML (eg a<detail>component) or with the JS functions like toggle.If you just want to get a hook working start with something very simple that adds a class to change the color of the element clicked. That way you can proceed in steps and see if the problem is defining the hook, or what the hook does.
This implies that the hook is “hooked up” correctly, suggesting that what you have written in the hook doesn’t do what you expect it to do.
VTek
There is a server side delayed typing simulation response being pushed and that’s working. When the simulation completes I used push_event(socket, “introduction_complete”, %{}) to try to tell the dom that the process was complete and to show the textbox, but now all I have it doing is writing a console.log, which isn’t happening after sending the event.
I must misunderstand push_event, does it require that the client side rerender to trigger it? I’d thought liveview was controlling the dom and not the other way around. More than the specific functionality that’s what I’m trying to understand. Since pushing the event doesn’t trigger the console log I’m pretty sure I can’t change css or anything else really.
Thanks for the response!
LostKobrakai
Could it be that you’re not assigning this back to a socket?
push_eventis not a sideeffect. The event is just queued and pushed once the socket is returned from the callback.VTek
Thank you again! I’m sure that’s the concept I’m not getting, here’s the server side handler that triggers it, everything is working except for the hook:
Server console:
LostKobrakai
That’s the incorrect part. You need
socket = push_event(…).VTek
yessir, that was it!
I misunderstood the socket parameter to be enough.
VTek
out of curiosity, does the hook into the dom element itself get set in such a way that it could be triggered manually from the f12 console?
Adzz
The hook is just JS that gets added to the bundle. It is available on
liveSocket.hooks.in the console but whether you can “trigger” it really depends on what the hook does. In general though I wouldn’t recommend that approach because the app cares about how it gets triggered by phoenix, so that’s what you should test and see in dev.Live socket is defined here https://github.com/phoenixframework/phoenix_live_view/blob/main/assets/js/phoenix_live_view/live_socket.js you can enable things like
enableDebugwhich may help depending on what you want