detail.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import { queryOne, create, update } from '../../services/ware';
  2. import pathToRegexp from 'path-to-regexp';
  3. import { Codes } from '../../utils/config';
  4. export default {
  5. namespace: 'wareDetail',
  6. state: {
  7. filters: {},
  8. operType: 'create',
  9. currentItem: {},
  10. modalVisible: false,
  11. itemLoading: false,
  12. },
  13. subscriptions: {
  14. setup({ dispatch, history }) {
  15. history.listen(({ pathname, state, ...rest }) => {
  16. const match = pathToRegexp('/basic-product/ware/edit/:id').exec(pathname);
  17. if (match) {
  18. dispatch({ type: 'query', payload: { id: match[1] } });
  19. dispatch({ type: 'saveFilters', payload: state });
  20. dispatch({ type: 'saveOperType', payload: { operType: 'update' } });
  21. }
  22. if (pathname === '/basic-product/ware/add') {
  23. dispatch({ type: 'saveFilters', payload: state });
  24. dispatch({ type: 'saveFilters', payload: state });
  25. dispatch({ type: 'saveOperType', payload: { operType: 'create' } });
  26. }
  27. });
  28. }
  29. },
  30. effects: {
  31. * query ({ payload }, { call, put }) {
  32. yield put({ type: 'changeLoading', payload: { itemLoading: true } });
  33. const { data, success } = yield call(queryOne, payload);
  34. if (success) {
  35. yield put({ type: 'querySuccess', payload: { ...data } });
  36. }
  37. yield put({ type: 'changeLoading', payload: { itemLoading: false } });
  38. },
  39. * create ({ payload, callback }, { call, put }) {
  40. const { data, success } = yield call(create, { ...payload, status: Codes.CODE_NORMAL });
  41. if (success) {
  42. yield put({ type: 'clearPage' });
  43. if (callback) callback();
  44. }
  45. },
  46. * update ({ payload, callback }, { call, put }) {
  47. const { data, success } = yield call(update, payload);
  48. if (success) {
  49. yield put({ type: 'clearPage' });
  50. if (callback) callback();
  51. }
  52. }
  53. },
  54. reducers: {
  55. changeLoading(state, { payload }) {
  56. return { ...state, ...payload };
  57. },
  58. querySuccess(state, { payload }) {
  59. return { ...state, currentItem: payload };
  60. },
  61. saveFilters(state, { payload: filters }) {
  62. return { ...state, filters };
  63. },
  64. showModal(state) {
  65. return { ...state, modalVisible: true };
  66. },
  67. hideModal(state) {
  68. return { ...state, modalVisible: false };
  69. },
  70. saveOperType(state, { payload }) {
  71. return { ...state, ...payload };
  72. },
  73. saveSortResult(state, { payload: { resourceList } }) {
  74. const currentItem = { ...state.currentItem, resourceList };
  75. return { ...state, modalVisible: false, currentItem };
  76. },
  77. clearPage(state) {
  78. return { ...state, currentItem: {}, itemLoading: false };
  79. }
  80. }
  81. }