Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edtoken/redux-crud-action-types
A simple lib help your define redux action type in easy way
https://github.com/edtoken/redux-crud-action-types
axios react reactjs reducer redux redux-actions
Last synced: 2 months ago
JSON representation
A simple lib help your define redux action type in easy way
- Host: GitHub
- URL: https://github.com/edtoken/redux-crud-action-types
- Owner: edtoken
- License: mit
- Created: 2017-10-08T21:10:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-12T16:09:37.000Z (about 7 years ago)
- Last Synced: 2024-10-31T23:46:41.700Z (2 months ago)
- Topics: axios, react, reactjs, reducer, redux, redux-actions
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/redux-crud-action-types
- Size: 47.9 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# redux-crud-action-types
A simple lib help your define redux action type in easy way.
Create unique names for example:
```
export const USER = create('user') // @crud/pending/id0/user, @crud/success/id0/user, @crud/error/id0/user
export const USER_SECOND = create('user') // @crud/pending/id1/user, @crud/success/id1/user, @crud/error/id1/user
```[![Build Status](https://api.travis-ci.org/edtoken/redux-crud-action-types.svg?branch=master)](https://travis-ci.org/edtoken/redux-crud-action-types)
[![npm version](https://badge.fury.io/js/redux-crud-action-types.svg)](https://badge.fury.io/js/redux-crud-action-types)
[![Maintainability](https://api.codeclimate.com/v1/badges/d795ac0152904aa4c02b/maintainability)](https://codeclimate.com/github/edtoken/redux-crud-action-types/maintainability)
[![HitCount](http://hits.dwyl.com/edtoken/redux-crud-action-types.svg)](http://hits.dwyl.com/edtoken/redux-crud-action-types)[![NPM](https://nodei.co/npm/redux-crud-action-types.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/redux-crud-action-types/)
[![NPM](https://nodei.co/npm-dl/redux-crud-action-types.png?height=3)](https://nodei.co/npm/redux-crud-action-types/)## Install
```
npm install redux-crud-action-types --save
```## Usage
### Action types before
```
// actionTypes.js
export const USER_PENDING = 'USER_PENDING'
export const USER_SUCCESS = 'USER_SUCCESS'
export const USER_ERROR = 'USER_ERROR'```
### Action types after
```
// actionTypes.jsimport {create} from 'redux-crud-action-types'
export const USER = create('USER')
```
### Reducer before
```
//reducer.jsimport { USER_ERROR, USER_PENDING, USER_SUCCESS } from './actionTypes'
export const reducer = (state, action) => {
switch (action.type) {
case USER_PENDING:
//
break
case USER_SUCCESS:
//
break
case USER_ERROR:
//
break
}
return state
}
```### Reducer after
about case `USER` see [LINK](https://github.com/edtoken/redux-crud-action-types/blob/master/test/redux-crud-action-types.spec.js#L70) and [LINK](https://github.com/edtoken/redux-crud-action-types/blob/master/src/redux-crud-action-types.js#L21)
```
//reducer.jsimport { USER } from './actionTypes'
export const reducer = (state, action) => {
switch (action.type) {
case USER: // or case USER.PENDING
//
break
case USER.SUCCESS:
//
break
case USER.ERROR:
//
break
}
return state
}```