Package Exports
- net-provider
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (net-provider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
net-provider
This package depend on redux-saga and can be run inside react and react-native projects
with net-provider you can read and update your DB is with less of code and less effort by using the set of ready actions or with the data component provider
Basic example
import {NetProvider} from 'net-provider'
class Home extends Component {
render() {
return (
<NetProvider
loadData={{
url: 'products',
targetKey: 'products-screen',
params: {categoriy: 'showes'},
}}
>
{({data, error, lodaing, crudActions}) => {
if(error) return 'There was an error connecting to server'
return (
<div>
{lodaing && <Spin />}
<MyProductsComponent
data={data}
onRefresh={crudActions.Refresh}
onCreate={crudActions.Create}
onDelete={crudActions.Delete}
onUpdate={crudActions.Update}
/>
</div>
)
}
</NetProvider>
)
}}Installation
- You can install net-provider with NPM, Yarn
npm install net-provider--save
- Configuration
import {setApiInstance, setDispatch, setDefaultIdKey, setErrorHandler} from 'net-provider' import axios from 'axios'; // Set an axios instance setApiInstance( axios.create({baseURL: 'www.myDomain.com'}) ) // Set Dispatch - Optional, if you want to use actions with any place without worry about redux-connect setDispatch(store.dispatch) // Set the unique id Key In Your database setDefaultIdKey('_id') // Set error handler - Optional, function that will call whenever an error will catch setErrorHandler( function(err) { if(err && err.response && (err.response.statusText === 'Unauthorized' || err.response.status === 401)) { store.dispatch(logout())} }} )
- Add to your reducers* the key must be crud
import { combineReducers } from 'redux'; import { crudReduxReducer } from 'net-provider' export default combineReducers({ ... crud: crudReduxReducer });
- Add your saga watchers
import { all, call } from 'redux-saga/effects'; import { crudReduxSaga } from 'net-provider'; function* rootSaga() { yield all([ .... call(crudReduxSaga, 'crudReduxSaga'), ]); } export default rootSaga;
Actions
How to ?
You can dispatch an action from any part of your app like this:
import {dispatchAction} from 'net-provider'
dispatchAction.Read({url: 'users', targetKey: 'usersScreen'})And you can use it with out the dispatchAction provider, like this: if you want to put an action inside saga, use this option.
import {Read} from 'net-provider/actions'
dispatch(Read({url: 'users', targetKey: 'usersScreen'}))Actions list
Server actions
- Create - add record to DB table
- Read - Fetch data from server
- Refresh - Fetch data from server with the last parameters
- Update- update DB record
- Delete- Delete DB record
All the server actions accept an object with this parameters
targetKey {string} required the key to set the parameters in store
url {string} API endpoint - required only for the first action to this targetKey
method {string} one of ['get' , 'post' , 'put' , 'delete'] method will set by default base the action type but you can override this defaults: Read() = 'get' | Create() = 'post' | Update() = 'put' | Delete() = 'delete'
params {object} request params
data {object} request params
dispatchId {string} optional -pass dispatch Id that can help you track your specific request
customHandleResponse {func} help us find the data from response when the structure is not response.data, this function will get the response from server and need to return the data
getCountFromResponse {func} help us find the count of your data from the response if it is possible
customAxiosInstance {object} when the default axios is not relevant pass a different instance
customFetch {func} - when you want to take the control of the fetch to your hand, can be useful for custom requests or for request that need to be handle by SDK or somthing else your function will be call by saga like this
response = yield call(customFetch, { url, method, data, params, payload: action.payload})
onStart {func} - call back that be call before the request
onEnd {func} - call back that be call when request end
onFailed {func} - call back that be call when request failed
refreshType {string} - one of ['local', 'server', 'none'] - server is the default This parameter is relevant when we change a record inside a list, we let you decide how to keep your list update after any change(create,delete,update)
- local - when you dispatch request to server we will update the data Immediately, before we send the request to server, and if the request failed we will restore the change this option save data transfer and good for user experience
- server - in each success change on one of the records we will refresh all the list data.
this option is the default, it will ensure that your data sync with the server, this default because sometimes one change can influencing other parameters - none - the list will not be affected
- useResponseValues - {boolean}- sometimes when we put data to server it will return us an object or a list of objects with the updating values, set true if this is the situation to set the result from server on store
Local Actions
- CreateLocal({targetKey, data}) - add record to data inside the redux store
- UpdateLocal({targetKey, data})- update record inside the redux store
- DeleteLocal({targetKey})- delete record from the redux store
- Clean({targetKey})- clean this targetKey from redux-store
Selectors
All the data will be store inside redux > crud > {.....} Example:
store : {
crud: {
"Admin-orders-list" : {
targetKey: "Admin-orders-list"
url: "orders"
status: "read-success"
error: null
loading: false
count: 150
data: [...]
},
"Admin-posts-list" : {
targetKey: "Admin-posts-list"
url: "posts"
status: "read-start"
error: null
loading: true
count: 0
data: null
}
}
}You can connect any component and find the data with our selectors, like that:
import { connect } from 'react-redux';
import {getFetchObject} from 'net-provider/selectors';
const postListTargetKey = 'Admin-posts-list' // This the target key from your action
const mapStateToProps = state => ({
adminPostList: getFetchObject(state, postListTargetKey ),
});
export default connect(mapStateToProps , null)(MyComponent);Selectors list:
- getCrudState(state) - will be return all the crud reducer
- getFetchObject(state, TARGET_KEY) - - will be one object that include (data, status, error...)
- getErrorByKey(state, TARGET_KEY)
- getCountByKey(state, TARGET_KEY)
- getDataByKey(state, TARGET_KEY)
- getStatusByKey(state, TARGET_KEY)
NetProvider component
<NetProvider /> will handle all for you, when your screen mount the component will fetch data from the server and provide to your function component a query status, data, actions and more...when the screen un mount netProvider will clean the store
props:
- loadData - object or array - This data is the payload for the action, this can be an object, for component that depend on one resource or array for component that depends on more than one resource.
*see action payload for more details - clearOnUnMount - boolean - default - True
- set false when you want to persist your data even when componentWillUnmount
NetProvider render methods and props
There are three ways to render things with <NetProvider />
- component =>
<NetProvider component={<YourComponent />}> - render props =>
<NetProvider render={(res) => <div></div>}> - children =>
<NetProvider>{(res) => <div></div>} </NetProvider>
All three render methods will be passed the same props:
- crudActions: object
A collection of actions:
You can work directly with the dispactActions collection from this package, but when you work with crudActions from the NetProvider you didn't need to pass a targetKey in each request, all the rest is the same like the dispactActions collection
{Read, Refresh, Create, Update, Delete, SetParameters, Clean, CreateLocal, DeleteLocal, UpdateLocal}
- status: string
- error: object
- loading:boolean
- url: string
- count: number
- targetKey: string
- data: the response from server *When the loadData is array then the props will be groups by targetKey