import React, { useState } from 'react'; import { Table as AntdTable, Card, Pagination } from 'antd'; import { redirectTo } from '@/components/pages/CollectionLoader/utils'; import { Actions } from '@/components/actions'; import { request, useRequest } from 'umi'; import api from '@/api-client'; import { components, fields2columns } from './SortableTable'; const columns = [ { title: '姓名', dataIndex: 'name', key: 'name', }, { title: '年龄', dataIndex: 'age', key: 'age', }, { title: '住址', dataIndex: 'address', key: 'address', }, ]; export interface TableProps { schema?: any; activeTab?: any; resourceName: string; associatedName?: string; associatedKey?: string; [key: string]: any; } export function Table(props: TableProps) { const { activeTab = {}, schema, resourceName, associatedName, associatedKey, } = props; const { fields, defaultTabName, rowKey = 'id', actions = [], paginated = true, defaultPageSize = 10 } = schema; const name = associatedName ? `${associatedName}.${resourceName}` : resourceName; // const { data, mutate } = useRequest(() => api.resource(name).list({ // associatedKey, // })); 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, }); const { sourceKey = 'id' } = activeTab.field||{}; console.log(props); const [selectedRowKeys, setSelectedRowKeys] = useState([]); const onChange = (selectedRowKeys: React.ReactText[]) => { setSelectedRowKeys(selectedRowKeys); } const tableProps: any = {}; if (actions.length) { tableProps.rowSelection = { selectedRowKeys, onChange, } } return ( ({ onClick: () => { redirectTo({ ...props.match.params, [activeTab ? 'newItem' : 'lastItem']: { itemId: data[rowKey]||data.id, tabName: defaultTabName, }, }); }, })} pagination={false} {...tableProps} /> {paginated && (
)}
); }