goodsReducer.js 868 B

12345678910111213141516
  1. import { gqlGoodFind, gqlGoodFindOne, gqlGoodsCount } from '../jql/gqlGoods';
  2. import { createPromiseReducerSlice, actionPromiseGeneric } from './promiseReducer';
  3. const actionGoodFindOne = (id) =>
  4. actionPromiseGoods('currentGood', gqlGoodFindOne(id));
  5. const actionGoodFind = (fromPage = 0, pageSize = undefined, searchStr = null, queryExt = {}) =>
  6. actionPromiseGoods('goods', gqlGoodFind(fromPage, pageSize, searchStr, queryExt));
  7. const actionGoodsCount = (searchStr = null, queryExt = {}) =>
  8. actionPromiseGoods('goodsCount', gqlGoodsCount(searchStr, queryExt));
  9. const goodsReducerSlice = createPromiseReducerSlice('goods');
  10. const actionPromiseGoods = (name, promise) =>
  11. actionPromiseGeneric(goodsReducerSlice, name, promise);
  12. let goodsReducer = goodsReducerSlice.reducer;
  13. export { goodsReducer, actionGoodFindOne, actionGoodFind, actionGoodsCount }