import { message } from 'antd'; import { productAttrTree, productAttrValueAdd, productAttrPage, productAttrAdd, productAttrUpdate, productAttrUpdateStatus, productAttrValueUpdate, productAttrValueUpdateStatus, } from '../../services/product'; import PaginationHelper from '../../../helpers/PaginationHelper'; export default { namespace: 'productAttrList', state: { list: [], // tree: [], attrData: [], pagination: PaginationHelper.defaultPaginationConfig, }, effects: { *add({ payload }, { call, put }) { const { onSuccess, onFail, body } = payload; const response = yield call(productAttrAdd, body); if (response && response.code === 0) { onSuccess && onSuccess(); } else { onFail && onFail(response); } }, *update({ payload }, { call, put }) { const { onSuccess, onFail, body } = payload; const response = yield call(productAttrUpdate, body); if (response && response.code === 0) { onSuccess && onSuccess(); } else { onFail && onFail(response); } }, *value_update({ payload }, { call, put }) { const { onSuccess, onFail, body } = payload; const response = yield call(productAttrValueUpdate, body); if (response && response.code === 0) { onSuccess && onSuccess(); } else { onFail && onFail(response); } }, *update_status({ payload }, { call, put }) { const { onSuccess, onFail, body } = payload; const response = yield call(productAttrUpdateStatus, body); if (response && response.code === 0) { onSuccess && onSuccess(); } else { onFail && onFail(response); } }, *value_update_status({ payload }, { call, put }) { const { onSuccess, onFail, body } = payload; const response = yield call(productAttrValueUpdateStatus, body); if (response && response.code === 0) { onSuccess && onSuccess(); } else { onFail && onFail(response); } }, // *updateStatus({ payload }, { call, put }) { // const { callback, body } = payload; // const response = yield call(productCategoryUpdateStatus, body); // if (callback) { // callback(response); // } // yield put({ // type: 'tree', // payload: {}, // }); // }, // *delete({ payload }, { call, put }) { // const response = yield call(productCategoryDelete, payload); // message.info('删除成功!'); // yield put({ // type: 'tree', // payload: {}, // }); // }, *page({ payload }, { call, put }) { const result = yield call(productAttrPage, payload); let attrData = {}; if (result.code === 0) { attrData = result.data; } yield put({ type: 'save', payload: { attrData, pagination: PaginationHelper.formatPagination(attrData, payload), }, }); }, *tree({ payload }, { call, put }) { const { queryParams } = payload; const response = yield call(productAttrTree, queryParams); // message.info('查询成功!'); yield put({ type: 'treeSuccess', payload: { tree: response.data, }, }); }, *value_add({ payload }, { call, put }) { const { onSuccess, onFail, body } = payload; const response = yield call(productAttrValueAdd, body); if (response && response.code === 0) { onSuccess && onSuccess(); } else { onFail && onFail(response); } }, *addValue({ payload, callback }, { call, put }) { // debugger; // const {queryParams} = payload; const response = yield call(productAttrValueAdd, payload); // message.info('查询成功!'); // yield put({ // type: 'treeSuccess', // payload: { // tree: response.data, // }, // }); if (response.code === 0) { // 刷新规格列表 yield put({ type: 'tree', payload: {}, }); // 回调方法 if (callback) { callback(response.data); } } }, }, reducers: { save(state, action) { return { ...state, ...action.payload, }; }, treeSuccess(state, { payload }) { return { ...state, ...payload, }; }, }, };