mickey-model-extend

1.0.1 • Public • Published

mickey-model-extend

Utility method to extend mickey model.

MIT License

NPM Version Build Status Coverage Status NPM downloads Dependencies

Install

$ npm install --save mickey-model-extend

Usage

import modelExtend from 'mickey-model-extend';
 
const base = {
  state: {
    foo: null,
  },
  add: (state, payload) => state + payload,
};
 
const model = modelExtend(base, {
  namespace: 'foo.bar',
  state: {
    bar: 1,
  },
});
 

API

modelExtend(...models) => Model

Behaviour:

  • model.namespace will be overrided by latter model
  • model.createReducer will be overrided by latter model
  • model.state will be merged with Object.assign
  • model.state will be overrided by latter model if it isn't an object
  • model[subscriptions|enhancers] will be merged to a array
  • reducer functions will be merge with Object.assign

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.

Package Sidebar

Install

npm i mickey-model-extend

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • bubkoo