table.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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 { Divider, Popover, Modal, Table, Menu, Icon, Badge } from 'antd';
  7. import AnimTableBody from '../../../components/Animation/AnimTableBody';
  8. import { statuses, Codes, ossHost } from '../../../utils/config'
  9. import styles from './table.less';
  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, onEditItem, location, pagination, ...tableProps } = this.props;
  26. const columns = [{
  27. title: '缩略图',
  28. dataIndex: 'url',
  29. key: 'url',
  30. render: (text, record) => (
  31. <Popover
  32. content={<img alt="" src={`${ossHost}/${record.path}`} width={250} />}
  33. title={record.name}
  34. placement="top"
  35. >
  36. <img alt="" src={`${ossHost}/${record.path}`} width={70} />
  37. </Popover>
  38. )
  39. },{
  40. title: '图片编号',
  41. dataIndex: 'code',
  42. key: 'code',
  43. },{
  44. title: '图片名称',
  45. dataIndex: 'name',
  46. key: 'name',
  47. },{
  48. title: '图片大小(B)',
  49. dataIndex: 'size',
  50. key: 'size',
  51. },{
  52. title: '状态',
  53. dataIndex: 'status',
  54. key: 'status',
  55. render: (text, record) => {
  56. const statusMap = {[Codes.CODE_NORMAL]: 'success', [Codes.CODE_DELETE]: 'error'};
  57. return (<Badge status={statusMap[record.status]} text={statuses[record.status]} />);
  58. },
  59. filters: Object.keys(statuses).map(key => ({ text: statuses[key], value: key })),
  60. filterMultiple: false,
  61. filteredValue: [curStatus],
  62. },{
  63. title: '修改时间',
  64. dataIndex: 'gmtModified',
  65. key: 'gmtModified',
  66. render: (text, record) => (
  67. <div>{moment(text).format('YYYY-MM-DD')}</div>
  68. )
  69. },{
  70. title: '操作',
  71. dataIndex: 'operation',
  72. key: 'operation',
  73. render: (text, record) => (
  74. <div>
  75. <a onClick={() => onEditItem(record)}>编辑</a>
  76. <Divider type="vertical" />
  77. <a onClick={() => this.handleOperateItem(record)}>{record.status === Codes.CODE_NORMAL ? '删除' : '恢复'}</a>
  78. </div>
  79. )
  80. }];
  81. // 数据table列表表头的筛选按钮点击重置后status值为空,此时删除该参数
  82. columns.map(item => {
  83. item.dataIndex === 'status' && !curStatus ? delete item.filteredValue : null;
  84. });
  85. // 配置分页
  86. tableProps.pagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条`};
  87. // 添加动画
  88. const AnimationTableBody = (props) => (<AnimTableBody {...props}/>);
  89. return (
  90. <Table
  91. simple
  92. bordered
  93. { ...tableProps }
  94. columns={columns}
  95. className={classnames({ [styles.table]: true, [styles.motion]: true })}
  96. rowKey={record => record.id}
  97. components={{
  98. body: { wrapper: AnimationTableBody }
  99. }}
  100. />
  101. );
  102. }
  103. }