@tmorin/cycle-actions
TypeScript icon, indicating that this package has built-in type declarations

0.3.5 • Public • Published

@tmorin/cycle-actions

npm version Integration api

A Cycle.js driver to manage actions.

An action is an object defined by:

  • a type
  • an optional payload
  • an optional category

The action is handled by an action handler. It's a function taking the action as argument and providing an optional response.

import xs, {Stream} from 'xstream';
import run from '@cycle/run';
import {makeActionsDriver, ActionsSource, Action} from '@tmorin/cycle-actions';

interface MainSources {
  ACTIONS: ActionsSource
}

interface MainSinks {
  ACTIONS: Stream<Action>
}

function main(sources: MainSources) : MainSinks {
  sources.ACTIONS.select('hello').result$.subscribe({
      next(result) {
        // display 'Hello Toto!' in the console
        console.log(result.response);
      }
    });
  return  {
    ACTIONS: xs.of({
      type: 'anAsyncAction',
      payload: 'Toto',
      category: 'hello'
    })
  }
}

const drivers = {
  ACTIONS: makeActionsDriver({
    async anAsyncAction(action: Action<string>) {
      // action is
      return `Hello ${action.payload}!`
    }
  })
};

run(main, drivers);

Package Sidebar

Install

npm i @tmorin/cycle-actions

Weekly Downloads

1

Version

0.3.5

License

MIT

Unpacked Size

273 kB

Total Files

40

Last publish

Collaborators

  • thibaultmorin