detail.js 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. import { queryOne, createMerchantProduct } from '../../services/mproduct';
  2. import pathToRegexp from 'path-to-regexp';
  3. import queryString from 'query-string';
  4. import { Codes } from '../../utils/config';
  5. export default {
  6. namespace: 'mproductDetail',
  7. state: {
  8. filters: {},
  9. currentItem: {},
  10. itemLoading: false,
  11. },
  12. subscriptions: {
  13. setup({ dispatch, history }) {
  14. history.listen(({ pathname, state, search, ...rest }) => {
  15. const match = pathToRegexp('/goods/edit').exec(pathname);
  16. if (match) {
  17. const params = queryString.parse(search);
  18. dispatch({ type: 'queryOne', payload: { ...params } });
  19. dispatch({ type: 'saveFilters', payload: state });
  20. }
  21. if (pathname === '/goods/add') {
  22. dispatch({ type: 'saveFilters', payload: state });
  23. }
  24. });
  25. },
  26. },
  27. effects: {
  28. // 查询一条渠道方产品详情 /merchant/product/detail?pid=xxx&merchantId=xxx
  29. * queryOne({ payload }, { call, put }) {
  30. yield put({ type: 'changeLoading', payload: { itemLoading: true } });
  31. const { data, success } = yield call(queryOne, payload);
  32. if (success) {
  33. yield put({ type: 'querySuccess', payload: { ...data } });
  34. }
  35. yield put({ type: 'changeLoading', payload: { itemLoading: false } });
  36. },
  37. // 创建渠道方产品 {pid:'xxx', merchantId:'xxx', status:'NORMAL'}
  38. * createMerchantProduct({ payload, callback }, { call, put }) {
  39. const { data, success } = yield call(createMerchantProduct, payload);
  40. if (success) {
  41. yield put({ type: 'clearPage' });
  42. if (callback) callback();
  43. }
  44. },
  45. },
  46. reducers: {
  47. changeLoading(state, { payload }) {
  48. return { ...state, ...payload };
  49. },
  50. querySuccess(state, { payload }) {
  51. return { ...state, currentItem: payload };
  52. },
  53. saveFilters(state, { payload: filters }) {
  54. return { ...state, filters };
  55. },
  56. showSupportModal(state, { payload }) {
  57. return { ...state, ...payload, supportModalVisible: true };
  58. },
  59. hideSupportModal(state) {
  60. return { ...state, supportModalVisible: false };
  61. },
  62. showResourceModal(state, { payload }) {
  63. return { ...state, ...payload, resourceModalVisible: true };
  64. },
  65. hideResourceModal(state) {
  66. return { ...state, resourceModalVisible: false };
  67. },
  68. saveSupportList(state, { payload: { supportList } }) {
  69. const currentItem = { ...state.currentItem, supportList };
  70. return { ...state, supportModalVisible: false, currentItem };
  71. },
  72. saveImgList(state, { payload: { imgList } }) {
  73. const currentItem = { ...state.currentItem, imgList };
  74. return { ...state, resourceModalVisible: false, currentItem };
  75. },
  76. clearPage(state) {
  77. return { ...state, currentItem: {}, itemLoading: false };
  78. },
  79. },
  80. };