Coder Social home page Coder Social logo

Some events not firing about leptos HOT 3 CLOSED

jquesada2016 avatar jquesada2016 commented on May 22, 2024
Some events not firing

from leptos.

Comments (3)

gbj avatar gbj commented on May 22, 2024

Oh interesting. Yeah this is because I'm using event delegation, but focus/blur don't bubble.

I guess add_event_listener (or the view macro) needs to check whether an event is in a set of "non-bubbling" events and use a normal event listener rather than event delegation.

https://github.com/gbj/leptos/blob/b9ca0b11a2d8846a83af6a8f37af3dde23c16179/leptos_dom/src/operations.rs#L230-L239

from leptos.

jquesada2016 avatar jquesada2016 commented on May 22, 2024

Thankfully, we're in luck. here's a list of all of them. One think to keep in mind however, and those are custom events, what should one do if someone creates a custom event which does not bubble? Should there be a special syntax for this?

from leptos.

gbj avatar gbj commented on May 22, 2024

See #56. I did test this with a quick input example using focus and blur and the events fire.

I'm open to suggestions for an alternate syntax for custom events which don't bubble. This is tricky because technically it's only known whether any given event bubbles at runtime (by checking its bubbles property or whatever) but by that point it's too late (because you're catching the event within a handler that's either been delegated or not.)

Fortunately erring on the side of caution here is not a big deal, as it's a small deoptimization in any case.

from leptos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.