A Cycle.js driver to manage actions.
An action is an object defined by:
type
payload
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);
Generated using TypeDoc