Coder Social home page Coder Social logo

rxjs-fsm's Introduction

rxjs-fsm

This package provides a set of tools for utilizing complete deterministic finite automata (Finite state machine) in RxJS with a focus on functional programming. Allowing developers to efficiently manage complex state machines in context of reactive programming.

✅  Tree Shakeable (ES modules)
✅  Fully Typed
✅  Unit Tests
✅  Documentation

Installation

npm i @jkba/rxjs-fsm

Example Usage

Let's consider the following use-case as an example. It is discussed in detail in a dedicated blog post.

Automata example

In the very first step, let's represent this automata:

export type Input = 'toggle' | 'hide';
export type State = 'hidden' | 'shown';

export const transitions: StateTransitions<State, Input> = {
  hidden: {
    toggle: 'shown',
    hide: 'hidden',
  },
  shown: {
    toggle: 'hidden',
    hide: 'hidden',
  },
};

Suppose we represent inputs as Observables and the initial state as a constant:

const toggle$ = new Subject<void>();
const hide$ = new Subject<void>();

const initialState: State = 'hidden';

It is necessary to create a single input Observable and mark individual values in order to retain proper types. For this purpose, let's use fsmHelpersFactory function.

const { markInput } = fsmHelpersFactory<State, Input>(transitions);

const input$ = merge(
  toggle$.pipe(markInput('toggle')),
  hide$.pipe(markInput('hide')),
);

Finally, we can create the machine object:

const machine = rxjsFsmFactory(transitions, input$, initialState);

Listen to the current state:

machine.selectState().subscribe(console.log);

// Emits only on `hidden` state
machine.selectState('hidden').subscribe(console.log);

Minimalistic

Another approach is to avoid the machine object and use this library in a pipe with an existing Observable:

const {
  fsm,
  markInput,
} = fsmHelpersFactory<State, Input>(transitions);

const state$ = input$.pipe(fsm(initialState));

state$.subscribe(console.log);

Build

Use npm link and then npm link @jkba/rxjs-fsm in your project.

Release

Use npm version, don't forget to push the tag and the CI will take care of the rest.

License

This project is licensed under MIT License. For the full text of the license, see the LICENSE file.

rxjs-fsm's People

Contributors

jmeinlschmidt avatar

Watchers

 avatar

rxjs-fsm's Issues

Nondeterministic automata

Consider transition function accepting functions as new states:

const transitions: TransitionFn = {
  hidden: {
    toggle: 'shown',
    hide: 'hidden',
  },
  shown: {
    toggle: 'hidden',
    hide: () => hasPermissions ? 'hidden' : 'shown',
  },
};

Error handling

Since this package uses only complete automata, undefined (or error) state needs to be used in order to represent missing states.

Add Hooks

Allow function hooks (callbacks) for accessing state and leaving state.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.