riotjs-redux-plugin

0.0.1 • Public • Published

frontless-redux

Simple redux plugin for Frontless and Riot.JS

npm i @frontless/redux --save

Component settings

observe - an array of property names. A component re-renders only when specified properties are changed.

export default {
  observe: ['number']
}

Properties

The plugin extends component's scope with following properties:

  1. this.$store - Redux store instance
  2. this.$state - The state

Hooks

onAction(data) - fires whenever a redux action is dispatched

Plugin factory

Plugin factory accepts two positional arguments: store( Object<{state, actions}> , Function<Context> ) Second argument is a context resolver function it has to return any global object where Redux store instance should be kept, defaults to document.__GLOBAL.

import store from '@frontles/redux'
const plugin = store({ state, actions,}, () => window)

Usage

 // store.js
 
 import store from '@frontles/redux'
 import riot from 'riot'
 
 const state = {
  number: 0
 }
 
 const actions = {
  INCREMENT: function(state, {value = 1}){
    state.number += value
  },
  DECREMENT: function(state, {value = 1}){
    state.number -= value
  }
 }
 
 const plugin = store({ state, actions,}, () => window)
 riot.install(plugin)
 
// component.riot
export default {
  observe: ['number'],
  plus(){
    this.$store.dispatch({
      type: 'INCREMENT',
      value: 10
    })
  }
}

Package Sidebar

Install

npm i riotjs-redux-plugin

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

9.19 kB

Total Files

7

Last publish

Collaborators

  • mul53