Code Monkey home page Code Monkey logo

Comments (4)

amarajs avatar amarajs commented on May 14, 2024 1

That's a great idea, also! Thank you.

from hybrids.

smalluban avatar smalluban commented on May 14, 2024

The main reason why I've added dispatch helper function into the library was to simplify the process of dispatching events. Because of that, I wanted this function to be as simple as possible - just passing name of event and possible options.

I am not sure what your actionCreator(/* possible data here */) returns to actionEvent, but the latter returns CustomEvent instance, right?

You can achieve a similar effect without modifying or extending dispatch function. If your actionEvent would return ['eventType', options = {}], you could use it like this:

const dispatchArgs = actionEvent(actionCreator(/* possible data here */));
dispatch(host, ...dispatchArgs);

In this way, your actionEvent does not have to create the custom event directly anymore and you still using dispatch from hybrids.

What do you think?

from hybrids.

amarajs avatar amarajs commented on May 14, 2024

Unfortunately, I can't rely on developers of all skill levels understanding dispatch(host, ...args) syntax. But I could provide a method that creates the init options object, and rely on all developers providing the event name manually:

dispatch(host, 'action-event', actionCreator(/* data here */))

This has the benefit of matching the existing dispatch arguments in Hyrbids. The downside is there's a bit more boilerplate for developers to write.

from hybrids.

smalluban avatar smalluban commented on May 14, 2024

After all you can also hide implementation details into the actionCreator, which could take host as an argument and dispatch event for that host:

dispatchAction(host, /* data here */); 

// and inside of the dispatchAction
function dispatchAction(host, /* data here */) {
  ...
  dispatch(host, 'action-event', { ..., detail: action });
}

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.