1.0.2 • Published 5 years ago

spa-bus v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

GitHub stars GitHub issues GitHub forks GitHub last commit license Twitter

NPM NPM

spa-bus

By this tool, you can pass values across multilevel components, you don't need to pass them step by step.

Example

import React from 'react'
import { render } from 'react-dom'
import eventEmitter from 'spa-bus'

function Child() {
  eventEmitter.emit('testEvent', '传值给父组件')

  return <div>我是子组件</div>
}

class App extends React.Component{
  constructor(props) {
    super(props)
    eventEmitter.addEventListener('testEvent', e => console.log(e))
  }

  render() {
    return (
      <div>
        <h1>我是父组件</h1>
        <Child/>
      </div>
    )
  }
}

render(<App />, document.getElementById('root'))

Install

NPM

npm install spa-bus --save

API

  • addEventListener:

    • type : [ String ] : event type for listening

    • callBack : [ String ] : callback for the event emited

  • emit:

    • type : [ String ] : event type to emit

    • params : [ any ] : parameters to accross

  • removeEventListener:

    • type : [ String ] : event type for removing

Author

Peng Zhang returnzp@gmail.com