1.5.1 • Published 7 years ago

pub-sub-es6 v1.5.1

Weekly downloads
498
License
MIT
Repository
github
Last release
7 years ago

PubSub es6

Simple lib for subscribe and dispatch actions.

In our application we perform many more complex actions, and depending on our project structure sometimes it is difficult to handle all the events that happen. We can simply think of giving a name to that complex action and send any data we need.

You can send your subscribers many arguments and of any kind; anyone who has subscribed to this event can execute an action

install

npm install pub-sub-es6 --save

React

When you need to comunicate componentes maybe you find many difficulties. You can resolve it sending a message to the other component.

The function onAddItem will be called when dispatched the action "ADD_ITEM".

import {dispatch, receive, on}  from 'pub-sub-es6'
//ShoppingCard.jsx
class ShoppingCard extends React.Component {

  state = { items: [] }

  @on("ADD_ITEM")
  onAddIem(item, language){
    this.setState({ items: [item, ...this.state.items] })
  }

  render(){
    //....
  }

}

//Item.jsx
class Item extends React.Component {

  onClickHandler(item){
    const { item, language } = this.props
    dispatch("ADD_ITEM", item, language)
  }

  render(){
    //....
  }

}

dispatch

  dispatch("USER.CLICK_IN_AD", adData)

receive

  receive("OPEN_SIGN_IN", (type) => type == 'modal' ? openModal() : redirectToSignIn() )

unsubscribe

  var fnc = (data) => {}
  receive("MESSAGE", fnc, "custom-uid")
  unsubscribe("MESSAGE", "custom-uid") // anyone can unsubscribe
  // or
  var fnc = () => {}
  const uid = receive("MESSAGE", fnc)
  unsubscribe("MESSAGE", uid)

React comunication with plain javascript

//ShoppingCard.jsx
class ShoppingCard extends React.Component {

  state = { items: [] }

  @on("ADD_ITEM")
  onAddIem(item, language){
    this.setState({ items: [item, ...this.state.items] })
  }

}
// item.html
<li class="js-item-action-add" data-item='{"name":"My Item"}'>My Item</li>
//my_controller.js
$(".js-item-action-add").on("click", function(event) {
  PubSubEs6.dispatch("ADD_ITEM", $(this).data("item"))
})

Actions named

  • The actions names it's a global name, it's recomended create a file with the actions names to avoid duplicate a action name.
//site_actions.js
const actionsSite = {
  item:{
    add: "ADD_ITEM",
  }
}

//Item.jsx
import action from './site_actions'

class Item extends React.Component {

  onClickHandler(item){
    const {item, language} = this.props
    dispatch(action.item.add, item, language)
  }

  render(){
    //....
  }

}

Devtools

Devtools it's a simple console logger for trace your actions.

allActions

  PubSubEs6.allActions()
  //[ { actionName, subscriptions: [ {fnc, uid} ] ]

status

  PubSubEs6.status()
  //All subscribers for the Action (ADD_ITEM) = `, `[ ShoppingCard -> onAddIem ]

findSubscriptions

  PubSubEs6.findSubscriptions("MESSAGE")
  // [ fnc, "uid-token" ]

logger

If your module bundle set process.env.NODE_ENV == 'production' this logger will be off

The default options it's:

  config = {
    trace: {
      dispatch: true,
      receive: false,
      unsubscribe: false,
      not_found_subscriber: true,
    },
  }

You can disable the logger for a specific action.

import PubSubEs6 from 'pub-sub-es6'
PubSubEs6.config.trace.dispatch = { exept: ["MY_LOOP_ACTION"] }

Decorator configuration

The decorator @on only works with react components

this decorator only subscribe in the componentDidMount and unsubscribe in the componentWillUnmount functions

to enable decorators see decorators

1.5.1

7 years ago

1.5.0

7 years ago

1.4.13

7 years ago

1.4.12

7 years ago

1.4.11

7 years ago

1.4.9

7 years ago

1.4.8

7 years ago

1.4.7

7 years ago

1.4.6

7 years ago

1.4.5

7 years ago

1.4.4

7 years ago

1.4.3

7 years ago

1.4.2

7 years ago

1.4.1

7 years ago

1.4.0

7 years ago

1.3.0

7 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

8 years ago