miniprogram-redux

1.1.1 • Public • Published

miniprogram-redux

Wechat Miniprogram bindings for Redux.

npm version npm license

Getting Started

Miniprogram Redux requires Wechat Miniprogram 2.2.3 or later.

Install miniprogram-redux using npm.

npm install --save miniprogram-redux

The Gist

/* app.js */
const { Provider, Redux } = require('miniprogram-redux');

function reducer(state = {}, action) {
  switch (action.type) {
    case 'LOAD_TOPIC':
      return { ...state, [action.topicId]: { loading: true } };
    case 'LOAD_TOPIC_COMPLETION':
      return { ...state, [action.topicId]: { loading: false } };
    default:
      return state;
  }
}

const store = Redux.createStore(reducer);

App({
  onLaunch() {
    Provider(store);
  },
});

/* pages/home.js */
const { selector, dispatch, Reselect } = require('miniprogram-redux');
const stateSelector = Reselect.createSelector(
  (state, data) => state[data.topicId],
  topic => ({ loading: topic.loading })
);

Component({
  behaviors: [selector],
  selector: (state, data) => stateSelector(state, data),
  stateDidUpdate(prevState) {
    if (prevState.loading !== this.data.loading) {
      if (this.data.loading) {
        console.log('Fetching topic.');
      } else {
        console.log('Fetched topic.');
      }
    }
  },
  properties: { topicId: String },
  methods: {
    handleTap() {
      dispatch({ type: 'LOAD_TOPIC', topicId: this.data.topicId });
    },
  },
});

FAQ

Q: Page() 不支持 behaviors 机制,我该如何把数据绑定到页面上呢?

A: 页面除了能通过 Page() 创建,还可以通过 Component() 创建的,详情可参考官方文档。页面通过 Component() 创建,就可以使用 selector 绑定数据了。

Q: 为什么该组件需要依赖 2.2.3 版的基础库?

A: 因为该组件依赖到自定义组件里的生命周期,详情可参考官方文档

License

MIT

Package Sidebar

Install

npm i miniprogram-redux

Weekly Downloads

24

Version

1.1.1

License

MIT

Unpacked Size

42.5 kB

Total Files

22

Last publish

Collaborators

  • mingenesis