index.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. import React, { Component } from 'react';
  2. import PropTypes from 'prop-types';
  3. import queryString from 'query-string';
  4. import { connect } from 'dva';
  5. import { routerRedux } from 'dva/router';
  6. import { Card } from 'antd';
  7. import TableList from './table';
  8. import ModalForm from './modal';
  9. import Search from './search';
  10. import PageHeaderLayout from '../../layouts/PageHeaderLayout';
  11. @connect(state => ({ cmsUser: state.cmsUser }))
  12. export default class CMSUser extends Component {
  13. static propTypes = {
  14. cmsUser: PropTypes.object,
  15. location: PropTypes.object,
  16. dispatch: PropTypes.func,
  17. };
  18. render() {
  19. const { location, dispatch, cmsUser } = this.props;
  20. location.query = queryString.parse(location.search);
  21. const { query, pathname } = location;
  22. const { field, keyword, ...filters } = query;
  23. const { list, listLoading, pagination, currentItem, itemLoading, modalVisible, modalType } = cmsUser;
  24. // 把携带的参数中空值项删除
  25. Object.keys(filters).map(key => { filters[key] ? null : delete filters[key] });
  26. // 如果搜索内容不为空则添加进filters中
  27. if (field && keyword) {
  28. filters.field = field;
  29. filters.keyword = keyword;
  30. }
  31. const modalProps = {
  32. item: modalType === 'create' ? {} : currentItem,
  33. visible: modalVisible,
  34. width: 550,
  35. maskClosable: false,
  36. title: `${modalType === 'create' ? '添加CMS用户' : '编辑CMS用户'}`,
  37. wrapClassName: 'vertical-center-modal',
  38. onOk (data) {
  39. dispatch({
  40. type: `cmsUser/${modalType}`,
  41. payload: data,
  42. });
  43. },
  44. onCancel () {
  45. dispatch({
  46. type: 'cmsUser/hideModal',
  47. });
  48. },
  49. };
  50. const searchProps = {
  51. field,
  52. keyword,
  53. onSearch: (payload) => {
  54. if (!payload.keyword.length) {
  55. delete payload.field;
  56. delete payload.keyword;
  57. }
  58. dispatch(routerRedux.push({
  59. pathname,
  60. search: queryString.stringify({
  61. ...payload
  62. })
  63. }));
  64. },
  65. onAdd: () => {
  66. dispatch({
  67. type: 'cmsUser/showModal',
  68. payload: {
  69. modalType: 'create',
  70. },
  71. });
  72. }
  73. };
  74. const listProps = {
  75. location,
  76. pagination,
  77. dataSource: list,
  78. loading: listLoading,
  79. curStatus: filters.status,
  80. onChange: (pagination, filterArgs) => {
  81. const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
  82. const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
  83. const newObj = { ...obj };
  84. newObj[key] = getValue(filterArgs[key]);
  85. return newObj;
  86. }, {});
  87. const data = { ...filters, ...tableFilters };
  88. Object.keys(data).map(key => data[key] ? null : delete data[key]);
  89. dispatch(routerRedux.push({
  90. pathname,
  91. search: queryString.stringify({
  92. ...data,
  93. pageNo: pagination.current,
  94. pageSize: pagination.pageSize,
  95. }),
  96. }));
  97. },
  98. // 编辑
  99. onEditItem: (item) => {
  100. dispatch({
  101. type: 'cmsUser/showModal',
  102. payload: {
  103. modalType: 'update',
  104. currentItem: item,
  105. },
  106. })
  107. },
  108. // 封禁
  109. onDeleteItem: (id) => {
  110. dispatch({
  111. type: 'cmsUser/delete',
  112. payload: id,
  113. callback: () => {
  114. dispatch(
  115. routerRedux.push({
  116. pathname,
  117. search: queryString.stringify(filters),
  118. })
  119. );
  120. }
  121. });
  122. },
  123. // 解禁
  124. onRecoverItem: (payload) => {
  125. dispatch({
  126. type: 'cmsUser/recover',
  127. payload,
  128. callback: () => {
  129. dispatch(
  130. routerRedux.push({
  131. pathname,
  132. search: queryString.stringify(filters),
  133. })
  134. );
  135. }
  136. });
  137. }
  138. };
  139. return (
  140. <PageHeaderLayout>
  141. <Card>
  142. <Search { ...searchProps } />
  143. <TableList { ...listProps } />
  144. {modalVisible && <ModalForm { ...modalProps } />}
  145. </Card>
  146. </PageHeaderLayout>
  147. );
  148. }
  149. }