path.tsx 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import type {
  2. EditableFormInstance,
  3. ProColumns,
  4. } from '@ant-design/pro-components';
  5. import { EditableProTable } from '@ant-design/pro-components';
  6. import React from 'react';
  7. /**
  8. * @author bianlanzhou
  9. * @since 2022-09-09
  10. * @description api path
  11. */
  12. class ApiPath extends React.Component {
  13. state = {
  14. data: [],
  15. formRef: React.createRef<EditableFormInstance<ApiQueryParamType>>(),
  16. }
  17. /** 获取数据 */
  18. getData = () => {
  19. return this.state.formRef.current?.getRowsData?.()?.filter((item: any) => item.index >= 0)
  20. }
  21. render() {
  22. const columns: ProColumns<ApiPathParamType>[] = [
  23. {
  24. title: '参数值',
  25. key: 'key',
  26. dataIndex: 'key',
  27. formItemProps: () => {
  28. return {
  29. rules: [{ required: true, message: '此项为必填项' }],
  30. };
  31. },
  32. width: '40%',
  33. },
  34. {
  35. title: '描述',
  36. dataIndex: 'decs',
  37. width: '50%',
  38. },
  39. {
  40. title: '操作',
  41. valueType: 'option',
  42. width: '15%',
  43. render: (text, record, _, action) => [
  44. <a
  45. key="editable"
  46. onClick={() => {
  47. action?.startEditable?.(record.id, record);
  48. }}
  49. >
  50. 编辑
  51. </a>,
  52. <a
  53. key="delete"
  54. onClick={() => {
  55. const tableDataSource = this.state.formRef.current?.getFieldValue(
  56. 'table',
  57. ) as ApiPathParamType[];
  58. this.state.formRef.current?.setFieldsValue({
  59. table: tableDataSource.filter((item) => item.id !== record.id),
  60. });
  61. }}
  62. >
  63. 删除
  64. </a>,
  65. ],
  66. },
  67. ]
  68. return (
  69. <>
  70. <EditableProTable<ApiPathParamType>
  71. rowKey="id"
  72. scroll={{
  73. x: 960,
  74. }}
  75. editableFormRef={this.state.formRef}
  76. maxLength={5}
  77. name="path"
  78. controlled={false}
  79. recordCreatorProps={
  80. {
  81. position: 'bottom',
  82. record: () => ({ id: (Math.random() * 1000000).toFixed(0) }),
  83. }
  84. }
  85. toolBarRender={() => []}
  86. columns={columns}
  87. editable={{
  88. type: 'multiple',
  89. }}
  90. />
  91. </>
  92. )
  93. }
  94. }
  95. export default ApiPath;