raid-streams

4.1.0 • Public • Published

Raid-streams

Collection of event streams ready to mount to raid

npm License: MIT Build Status Coverage Status js-standard-style

Raid Documentation

Getting Started

Install with yarn or npm

yarn add raid raid-streams
npm i -S raid raid-streams

Raid does one job, it helps to manage the state of your application. It does this job by piping action events through streams to observers who then decide what to do with that action.

An application typically involves a number of different input streams that emit actions, such as a button press action.

This is a disparate collection of input streams and whilst they were created with Raid in mind they could equally be used with other libraries. They always emit a Raid action signature {type<string>, payload<any>} and they are most.js streams which can be composed together to create more complex inputs.

See the examples for more detailed usage.

Streams

Each collection of input streams typically exports a stream that can be consumed and an enum of actions that may be emitted.

Keys

The key streams convert regular key events into reliably emitted events. The natural key repeat behaviour is often inappropriate for applications and registering multi-key combos can get tricky, these input streams simplify listening to such events.

Keys are referenced using their vkey definitions, i.e. keydown for the enter key emits an event containing key: '<enter>'.

Actions

  • keydown Initial keydown event, happens only once per key depression.
  • keyup Triggered when the key is released.
  • keypress Emitted regularly on the animation frame whilst a key is pressed.
  • sequence Emits an array of the most recently pressed keys.
  • timedSequence Emits a sequence of keys pressed within a time window.

Keys

import keystream, {actions} from 'raid-streams/keys'
import {Signal} from 'raid'
 
const signal = new Signal({key: ''})
 
// Mount the keystream to the signal
signal.mount(keystream())
 
// Respond to key events
signal.register((state, {type, payload}) => {
  if (type === actions.keydown) {
    state.key = payload.key
  } else {
    state.key = ''
  }
  return state
})

keydown

<Function <Object>> => <Object>

Keydown accepts only a reference to a keys pressed map, this is a required option:

{
  <Map> keys [required]
}
 
signal.mount(keydown({
  keys: new Map()
}))

Keydown fires on initial keydown event when pressing a key and emits an event of the type:

{
  <String> key,
  <Map> keys,
  <HTMLDomEvent> event
}
import {keydown, actions} from 'raid-streams/keys'
 
signal.mount(keydown())
 
signal.register((state, event) => {
  if (event.type === actions.keydown) {
    state.key = event.payload.key
  }
  return state
})

keyup

<Function <Object>> => <Object>

Keyup accepts only a reference to a keys pressed map, this is a required option:

{
  <Map> keys
}

Keyup fires when a key is released and emits an event of the type:

{
  <String> key,
  <Map> keys,
  <HTMLDomEvent> event
}
import {keyup, actions} from 'raid-streams/keys'
 
signal.mount(keyup())
 
signal.register((state, {type, payload}) => {
  if (type === actions.keyup) {
    state.key = payload.key
  }
  return state
})

keystream

Keystream emits keydown, keyup and keypress events. The keypress event fires when a key is pressed at an interval equalling requestAnimationFrame. Keystream is the default export from raid-streams/keys.

Keystream has no initialisation properties that can be set and will create its own keypress map.

The event signature for keyup and keydown matches the underlying key streams they come from, the keypress event signature is slightly simpler as its only concern is that something has been pressed:

{
  <Map> keys
}

The keystream map holds how long a key has been pressed for mapped against its vkey definition.

import keystream, {actions} from 'raid-streams/keys'
 
signal.mount(keystream())
 
signal.register((state, {type, payload}) => {
  if (type === actions.keydown) {
    state.key = payload.key
  }
 
  if (type === actions.keyup) {
    state.key = ''
  }
 
  if (type === actions.keypress) {
    if (payload.keys.has('<enter>')) {
      // Grab the delta of the keypress from the key map
      state.heldDownFor = payload.keys.get('<enter>')
    }
  }
 
  return state
})

keySequence

KeySequence keeps track of the last x keydown events and emits an array of keys.

KeySequence options object looks like:

{
  <?Number> length: 10,
  <?Map> keys: null
}
 
signal.mount(keySequence({
  length: 10
}))

The event signature looks like:

{
  <Array <String>> keys
}
import {keySequence, actions} from 'raid-streams/keys'
 
signal.mount(keySequence())
 
signal.register((state, {type, payload}) => {
  if (type === actions.sequence) {
    state.sequence = payload.keys
  }
 
  return state
})

timedKeySequence

timedKeySequence keeps track of the last x keydown events from the last y ms.

The options object looks like:

{
  <?Number> length: 10,
  <?Map> keys: null,
  <?Number> timeout: 200
}
 
signal.mount(timedKeySequence({
  length: Number.MAX_SAFE_INTEGER,
  timeout: 300
}))

The event signature looks like:

{
  <Array <String>> keys
}
import {timedKeySequence, actions} from 'raid-streams/keys'
 
signal.mount(timedKeySequence())
 
signal.register((state, {type, payload}) => {
  if (type === actions.timedSequence) {
    state.sequence = payload.keys
  }
 
  return state
})

Tick

Actions

  • tick Emitted each frame.

Tick

Tick stream maps requestAnimationFrame into a stream that emits a frame delta each frame increment.

By default it attaches to the window but this can be configured:

{
  <?HTMLDomElement> el: window
}
 
signal.mount(tick({
  el: document.querySelector('.js-gl')
}))

The event signature looks like and just passes the duration of the last frame:

{
  <Number> dt
}
import tick, {actions} from 'raid-streams/tick'
 
signal.mount(tick())
 
signal.register((state, {type, payload}) => {
  if (type === actions.tick) {
    state.lastElapsed = payload.dt
  }
 
  return state
})

Screen

Screen streams manage common screen events that the browser might emit, screen emits separate streams for each event or a merged stream.

import screen, {actions} from 'raid-streams/screen'
 
signal.mount(screen())
 
signal.register((state, {type, payload}) => {
  if (type === actions.orientation) {
    state.orientation = payload.orientation
  }
  return state
})

Actions

  • resize Debounced resize event with new dimensions.
  • scroll Scroll event with new position.
  • orientation Emitted on the orientationchange event.

resize

resize triggers whenever the element changes its size and emits the new dimensions.

Options object looks like:

{
  <?Number> debounce: 100,
  <?HTMLDomElement> el: window
}
 
signal.mount(resize({
  debounce: 50
}))

Event signature looks like:

{
  <HTMLDomEvent> raw,
  <Number> width,
  <Number> height,
  <Number> timeStamp
}
import {resize, actions} from 'raid-streams/screen'
 
signal.mount(resize())
 
signal.register((state, {type, payload: {width, height}}) => {
  if (type === actions.resize) {
    state.dimensions = [width, height]
  }
  return state
})

scroll

scroll triggers whenever the element is scrolled its size and emits the new scroll position.

Options object looks like:

{
  <?HTMLDomElement> el: window
}
 
signal.mount(scroll({
  el: document.querySelector('js-list')
}))

Event signature looks like:

{
  <HTMLDomEvent> raw,
  <Number> left,
  <Number> top,
  <Number> timeStamp
}
import {scroll, actions} from 'raid-streams/screen'
 
signal.mount(scroll())
 
signal.register((state, {type, payload: {left, top}}) => {
  if (type === actions.scroll) {
    state.scrollPosition = [left, top]
  }
  return state
})

orientation

orientation triggers whenever the window orientationchange event is triggered.

There are no configuration options for orientation.

Event signature looks like:

{
  <HTMLDomEvent> raw,
  <Number> angle,
  <Number> orientation,
  <Number> timeStamp
}
import {orientation, actions} from 'raid-streams/screen'
 
signal.mount(orientation())
 
signal.register((state, {type, payload}) => {
  if (type === actions.orientation) {
    state.orientation = payload.orientation
  }
  return state
})

Stand-alone streams

All these action streams are just regular most.js streams and can be consumed as normal, there is no restriction to use them with Raid. The only tie they have to Raid is that they emit {type, payload} objects. As they are regular streams all the regular stream functions work.

import keystream, {actions} from 'raid-streams/keys'
 
keystream
  .map(event => ({
    ...event,
    meta: '@@foo'
  }))
  .observe(({type, payload, meta}) => {
    if (type === actions.keydown) {
      console.log(`Pressing ${payload.key}, meta: ${meta}`)
    }
  })

Running tests

$ npm
$ npm test

Contributing

Pull requests are always welcome, the project uses the standard code style. Please run npm test to ensure all tests are passing and add tests for any new features or updates.

For bugs and feature requests, please create an issue.

See the root readme for more information about how the repository is structured.

License

MIT

Package Sidebar

Install

npm i raid-streams

Weekly Downloads

0

Version

4.1.0

License

MIT

Unpacked Size

60.9 kB

Total Files

21

Last publish

Collaborators

  • mattstyles