2020-11-19 21:12:15 +08:00
|
|
|
import React, { useEffect, useRef, useState } from 'react';
|
2020-11-21 23:49:59 +08:00
|
|
|
import { Table as AntdTable, Card, Pagination } from 'antd';
|
2020-11-11 15:23:39 +08:00
|
|
|
import { Actions } from '@/components/actions';
|
|
|
|
import ViewFactory from '@/components/views';
|
2020-11-19 21:12:15 +08:00
|
|
|
import { useRequest } from 'umi';
|
2020-11-13 22:01:14 +08:00
|
|
|
import api from '@/api-client';
|
2020-11-19 21:12:15 +08:00
|
|
|
import get from 'lodash/get';
|
|
|
|
import { components, fields2columns } from './SortableTable';
|
2020-11-11 15:23:39 +08:00
|
|
|
|
2020-11-13 22:01:14 +08:00
|
|
|
export interface SimpleTableProps {
|
|
|
|
schema?: any;
|
|
|
|
activeTab?: any;
|
|
|
|
resourceName: string;
|
|
|
|
associatedName?: string;
|
|
|
|
associatedKey?: string;
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function SimpleTable(props: SimpleTableProps) {
|
2020-11-11 15:23:39 +08:00
|
|
|
console.log(props);
|
2020-11-13 22:01:14 +08:00
|
|
|
const {
|
|
|
|
activeTab = {},
|
|
|
|
pageInfo = {},
|
|
|
|
schema,
|
|
|
|
resourceName,
|
|
|
|
associatedName,
|
|
|
|
associatedKey,
|
|
|
|
} = props;
|
2020-11-21 23:49:59 +08:00
|
|
|
const { rowKey = 'id', fields = [], rowViewName, actions = [], paginated = true, defaultPageSize = 10 } = schema;
|
2020-11-13 22:01:14 +08:00
|
|
|
const { sourceKey = 'id' } = activeTab.field||{};
|
2020-11-11 15:23:39 +08:00
|
|
|
const drawerRef = useRef<any>();
|
2020-11-21 23:49:59 +08:00
|
|
|
const { data, loading, pagination, mutate } = useRequest((params = {}) => {
|
|
|
|
const { current, pageSize, ...restParams } = params;
|
|
|
|
const name = associatedName ? `${associatedName}.${resourceName}` : resourceName;
|
|
|
|
return api.resource(name).list({
|
|
|
|
associatedKey,
|
|
|
|
page: paginated ? current : 1,
|
|
|
|
perPage: paginated ? pageSize : -1,
|
|
|
|
})
|
|
|
|
.then(({data = [], meta = {}}) => {
|
|
|
|
return {
|
|
|
|
data: {
|
|
|
|
list: data,
|
|
|
|
total: meta.count||data.length,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}, {
|
|
|
|
paginated,
|
|
|
|
defaultPageSize,
|
|
|
|
});
|
|
|
|
console.log(schema, data);
|
2020-11-19 21:12:15 +08:00
|
|
|
const [selectedRowKeys, setSelectedRowKeys] = useState([]);
|
|
|
|
const onChange = (selectedRowKeys: React.ReactText[]) => {
|
|
|
|
setSelectedRowKeys(selectedRowKeys);
|
|
|
|
}
|
|
|
|
const tableProps: any = {};
|
|
|
|
if (actions.length) {
|
|
|
|
tableProps.rowSelection = {
|
|
|
|
selectedRowKeys,
|
|
|
|
onChange,
|
|
|
|
}
|
|
|
|
}
|
2020-11-21 23:49:59 +08:00
|
|
|
console.log('rowViewName', {rowViewName})
|
2020-11-11 15:23:39 +08:00
|
|
|
return (
|
|
|
|
<Card bordered={false}>
|
|
|
|
<Actions {...props} style={{ marginBottom: 14 }} actions={actions}/>
|
2020-11-19 21:12:15 +08:00
|
|
|
<ViewFactory
|
|
|
|
{...props}
|
|
|
|
viewName={rowViewName}
|
|
|
|
reference={drawerRef}
|
|
|
|
/>
|
|
|
|
<AntdTable
|
|
|
|
rowKey={rowKey}
|
2020-11-21 23:49:59 +08:00
|
|
|
loading={loading}
|
|
|
|
columns={fields2columns(fields)}
|
|
|
|
dataSource={data?.list||(data as any)}
|
2020-11-19 21:12:15 +08:00
|
|
|
components={components({data, mutate})}
|
|
|
|
onRow={(record) => ({
|
|
|
|
onClick: () => {
|
|
|
|
drawerRef.current.setVisible(true);
|
|
|
|
drawerRef.current.getData(record[rowKey]);
|
|
|
|
}
|
|
|
|
})}
|
2020-11-21 23:49:59 +08:00
|
|
|
pagination={false}
|
2020-11-19 21:12:15 +08:00
|
|
|
{...tableProps}
|
|
|
|
/>
|
2020-11-21 23:49:59 +08:00
|
|
|
{paginated && (
|
2020-11-29 16:26:53 +08:00
|
|
|
<div className={'table-pagination'}>
|
2020-11-21 23:49:59 +08:00
|
|
|
<Pagination {...pagination} showQuickJumper showSizeChanger size={'default'}/>
|
|
|
|
</div>
|
|
|
|
)}
|
2020-11-11 15:23:39 +08:00
|
|
|
</Card>
|
|
|
|
);
|
|
|
|
}
|