hub-js

1.0.0 • Public • Published

hub.js

Licence NPM Size

Why

hub.js is more simpler and lightweight (gzip 2kb). It satisfies most of the situation event-driven situation, suitable for dealing with a variety of event streams.

For frameworks of component systems, such as React, Vue.js, etc., communication between non parent and child components is a bothering thing, but it can be made easy by using hub.js.

简体中文

Installing

npm i hub-js --save

or

<script src="https://cdn.jsdelivr.net/npm/hub-js/dist/hub.min.js"></script>

Simple Usage

import $hub from 'hub-js';
 
// register an event listener
$hub.on('test', data => console.log('test', data))
 
setInterval(() => {
  // send the 'test' event
  $hub.emit('test', { code: 1 })
}, 1000)

More

Remove listener

const listener = $hub.on('test', data => console.log(data))
 
$hub.emit('test', { code: 1 })
 
listener.off()
// or
// $hub.off('test', listener)
 
$hub.emit('test', { code: 2 })

once

const listener = $hub.once('test', data => console.log(data))
 
$hub.emit('test', { code: 1 })
 
$hub.emit('test', { code: 2 })

Multiple

const listener = $hub.on(['test', 'test-1', 'test-2'], data => console.log(data))
 
 
$hub.emit(['test', 'test-1', 'test-2'], { code: 1 })
 
listener.off()
// or
// $hub.off([ 'test', 'test-1' ], listener)
 
$hub.emit(['test', 'test-1', 'test-2'], { code: 2 })

Note that, the listener receives each time the adapted event source occurs. For example, the above example will produce three logs.

Proxy Store

// set store value
$hub.store.code = 1
 
// listen store  value
// if this value already has a "current value," the listener immediately returns the "current value," just as Rx.BehaviorSubject
$hub.on('@store/code', data => console.log('store code', data)
 
setInterval(() => {
  ++$hub.store.code
  // or
  // hub.emit('@store/code', 1)
}, 1000)

DOM Element

const dispatcher = $hub.DOM('button')
                        .from('click')
                        .emit('dom-click-event')
                        .from('mousedown')
                        .emit('dom-mousedown-event')
 
$hub.on('dom-click-event', event => console.log('button click', event))
$hub.on('dom-mousedown-event', event => console.log('button mousedown', event))
setTimeout(dispatcher.off, 10000)

Fetch

const dispatcher = $hub.Fetch('https://xxxxx')
                        .emit('fetch-event1')
                        .emit('fetch-event2')
 
setTimeout(dispatcher.reload, 2000)
 
$hub.on('fetch-event1', result => console.log('fetch1', result))
$hub.on('fetch-event2', result => console.log('fetch2', result))

WebSocket

const dispatcher = $hub.WS('ws://xxxxx')
                        .emit('ws-event1')
                        .emit('ws-event2')
 
$hub.on('ws-event1', result => console.log('ws1: ', result))
$hub.on('ws-event2', result => console.log('ws2: ', result))
 
setTimeout(dispatcher.off, 3000)

socket.io

<script src="./lib/socket.io.min.js"></script>
 
<script>
const dispatcher = $hub.IO('http://xxxxx')
                        .from('mock')
                        .emit('io-event')
 
dispatcher.socket.emit('mock', { key: 'xxxxx' })
 
$hub.on('io-event', result => console.log('io:', result))
 
setTimeout(dispatcher.off, 3000)
</script> 

Chain Pipe

$hub.chain('test')
        .pipe(
          d => new Promise(resolve => setTimeout(() => resolve(+ 1), 2000)),
          d => d + 2,
          d => d + 3
        )
        .pipe(
          d => d + 3
        )
 
$hub.on('@chain/test', d => console.log(d))
 
$hub.emit('@chain/test', 1) // 10

Chaining & Converter

// register converter
$hub.converter.DOMEventFormat1 = function (event) {
  return [e.type, e.target]
}
$hub.converter.DOMEventFormat2 = function (event) {
  return [e.target, e.type]
}
 
// you can control the convection by free combination of chaining, so as to get the effect you want.
const dispatcher = $hub.DOM('button')
                        .from('click')
                        .convert('DOMEventFormat1')
                        .emit('dom-click-event')
                        .from('mousedown')
                        .convert('DOMEventFormat1')
                        .emit('dom-mousedown-event')
// or
// $hub.DOM('button').from('click').convert('DOMEventFormat1').emit('dom-click-event1').emit('dom-click-event2')
// $hub.DOM('button').from('click').convert('DOMEventFormat1').convert('DOMEventFormat2').emit('dom-click-event1')
 
// other
// $hub.Fetch('https://xxx').emit('e1').convert('converter').emit('e2')
// $hub.WS('ws://xxx').emit('e1').convert('converter').emit('e2')
// $hub.IO('https://xxx').from('x1').convert('converter').emit('e1').from('x2').emit('e1')
 
$hub.on('dom-click-event', event => console.log('button click', event))
 
$hub.on('dom-mousedown-event', event => console.log('button mousedown', event))
 
setTimeout(dispatcher.off, 10000)

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i hub-js

Weekly Downloads

28

Version

1.0.0

License

MIT

Unpacked Size

34.3 kB

Total Files

25

Last publish

Collaborators

  • yyued