0.0.1 • Published 4 years ago

@zcorky/soul v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

soul

NPM version Coverage Status Dependencies Build Status license issues

Give a soul for your app.

Install

$ npm install @zcorky/soul

Usage

import soul from '@zcorky/soul';

const app = new Soul();

app.model({
	namespace: 'user',
	state: {
		total: 1,
		current: 12138,
		list: [{
			id: 12138,
			name: 'zero',
		}],
	},
	reducers: {
		save(state, { payload }) {
			const { total, list } = payload;
			return {
				...state,
				total,
				list,
			};
		},
	},
	effects: {
		async 'sync'(action, { put }) {
			const { total, user } = await syncUserService();
			await put({ type: 'user/save', payload: { total, user } });
		},
	},
});

app.start();