mobrix-engine-plugin-epics
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

MoBrix-engine-plugin-epics

NPM npm npm bundle size Maintenance



Use redux-observable epics with MoBrix-engine system



Summary



Getting started

Installation

Check MoBrix-engine guide to init the system

If you want to use this plugin with MoBrix-engine, install it:

npm i mobrix-engine-plugin-epics

Usage

Include this plugin inside your MoBrix-engine config file, and optionally set the epics field as an array, containing all the epics you want to use:

const epicsPlugin = require("mobrix-engine-plugin-epics");

const { createMoBrixEngineAction } = require("mobrix-engine-tools");

const customActionOne = createMoBrixEngineAction("@@custom/action-one");

const customActionTwo = createMoBrixEngineAction("@@custom/action-two");

const config = {
  appName: "custom-app",
  plugins: [epicsPlugin],
  epics: [
    (actions$) =>
      actions$.pipe(filter(customActionOne), mapTo(customActionTwo)),
  ],
};

module.exports = { config };


Integration with other plugins

  • This plugin expose some fields to work with any other plugin. If you want to interact with it, using your custom plugin, add an interaction with epics plugin, and add your custom epic to the given epics array:
//Just a skeleton of a custom plugin that interacts with router plugin
const customPlugin = () => ({
  // Custom plugin stuffs

  interactions: [
    {
      plugin: "mobrix-engine-epics",
      effect: (epics) => {
        // Custom plugin stuffs

        //Add the custom epic
        epics.push((actions$) =>
          actions$.pipe(filter(customActionOne), mapTo(customActionTwo))
        );

        return epics;
      },
    },
  ],
});


Included libraries



Authors



License

This project is licensed under the MIT License - see the LICENSE file for details

Readme

Keywords

none

Package Sidebar

Install

npm i mobrix-engine-plugin-epics

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

12 kB

Total Files

9

Last publish

Collaborators

  • cianciarusocataldo