table.js 3.4 KB

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