table.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. import React, { PureComponent } from 'react';
  2. import PropTypes from 'prop-types';
  3. import moment from 'moment';
  4. import classnames from 'classnames';
  5. import queryString from 'query-string';
  6. import { Modal, Table, Menu, Icon, Badge } from 'antd';
  7. import AnimTableBody from '../../../components/Animation/AnimTableBody';
  8. import styles from './table.less';
  9. import { statuses, Codes } from '../../../utils/config';
  10. export default class TableList extends PureComponent {
  11. handleOperateItem = (record) => {
  12. const { onDeleteItem, onRecoverItem } = this.props;
  13. Modal.confirm({
  14. title: `您确定要${record.status === Codes.CODE_NORMAL ? '删除' : '恢复'}该条记录?`,
  15. onOk () {
  16. if (record.status === Codes.CODE_NORMAL) {
  17. onDeleteItem({id: record.id});
  18. } else if (record.status === Codes.CODE_DELETE) {
  19. onRecoverItem({ id: record.id, status: Codes.CODE_NORMAL });
  20. }
  21. },
  22. })
  23. }
  24. render() {
  25. const { curStatus, onDeleteItem, onRecoverItem, onEditItem, location, pagination, ...tableProps } = this.props;
  26. const columns = [{
  27. title: '课件编号',
  28. dataIndex: 'code',
  29. key: 'code',
  30. },{
  31. title: '课件名称',
  32. dataIndex: 'name',
  33. key: 'name',
  34. },{
  35. title: '供应商',
  36. dataIndex: 'cpId',
  37. key: 'cpId',
  38. },{
  39. title: '状态',
  40. dataIndex: 'status',
  41. key: 'status',
  42. render: (text, record) => {
  43. const statusMap = {[Codes.CODE_NORMAL]: 'success', [Codes.CODE_DELETE]: 'error'};
  44. return (<Badge status={statusMap[record.status]} text={statuses[record.status]} />);
  45. },
  46. filters: Object.keys(statuses).map(key => ({ text: statuses[key], value: key })),
  47. filterMultiple: false,
  48. filteredValue: [curStatus],
  49. },{
  50. title: '添加时间',
  51. dataIndex: 'gmtCreated',
  52. key: 'gmtCreated',
  53. render: (text, record) => (
  54. <div>{moment(text).format('YYYY-MM-DD')}</div>
  55. )
  56. },{
  57. title: '操作',
  58. dataIndex: 'operation',
  59. key: 'operation',
  60. render: (text, record) => (
  61. <div>
  62. <a onClick={() => onEditItem(record)}>编辑</a>
  63. <span className={styles.splitLine} />
  64. <a onClick={() => this.handleOperateItem(record)}>{record.status === Codes.CODE_NORMAL ? '删除' : '恢复'}</a>
  65. </div>
  66. )
  67. }];
  68. columns.map(item => {
  69. item.dataIndex === 'status' && !curStatus ? delete item.filteredValue : null;
  70. });
  71. tableProps.pagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条`};
  72. const AnimationTableBody = (props) => (<AnimTableBody {...props}/>);
  73. return (
  74. <Table
  75. simple
  76. bordered
  77. { ...tableProps }
  78. columns={columns}
  79. className={classnames({ [styles.table]: true, [styles.motion]: true })}
  80. rowKey={record => record.id}
  81. components={{
  82. body: { wrapper: AnimationTableBody }
  83. }}
  84. />
  85. );
  86. }
  87. }