Coder Social home page Coder Social logo

Comments (6)

DavideCarvalho avatar DavideCarvalho commented on September 23, 2024 2

It worked! TY for the help.
I also created a codesandbox to share. If you want, you can use it as an example
https://codesandbox.io/embed/r5nkxjo4ln

from hybrids.

smalluban avatar smalluban commented on September 23, 2024 1

There are two options with event listeners. For example, render factory uses globally attached event listener to trigger re-render all of the elements. For you it could look like this:

const set = new Set();

// In this case your event listener is attach once, but it is always there
// It is proper pattern if you factory do something in sync between instances
document.addEventListener('event-name', () => {
  set.forEach(...);
});

export function myFactory() {
  return {
    get: ...
    connect: (host) => {
      set.add(host);
      return () => set.remove(host);
    },
  };
}

The second option is to attach event listener in connect and then remove it in disconnect method directly:

export function myFactory() {
  return {
    get: ...
    connect: (host) => {
      // holding reference to the callback is most important here,
      // as it has to be removed in disconnect 
      const cb = () => { ... };

      document.addEventListener('event-name', cb);
      return () => document.removeEventListener('event-name', cb);
    },
  };
}

Also, you might want to look at the built-in factories source code. You can find there examples of how to add event listeners.

About docs - I am working on it right now (you can sneak peek on docs branch). I want also add some patterns, that was asked in issues.

from hybrids.

smalluban avatar smalluban commented on September 23, 2024

You can use dispatch from the library for simpler syntax:

import { dispatch } from 'hybrids';

dispatch(document, 'event-name', { detail: { value: 0 } });

It creates CustomEvent for you, passes options and dispatches it.

from hybrids.

DavideCarvalho avatar DavideCarvalho commented on September 23, 2024

It gave me an error (0 , _hybrids.dispatchEvent) is not a function
I commented the line so it's easier if you want to test

from hybrids.

DavideCarvalho avatar DavideCarvalho commented on September 23, 2024

The name isn't dispatchEvent, but dispatch

from hybrids.

smalluban avatar smalluban commented on September 23, 2024

Yes, you are right. I was writing it on my phone, fixed comment with the proper name.

from hybrids.

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.