2020-11-19 21:12:15 +08:00
|
|
|
import React, { 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 { redirectTo } from '@/components/pages/CollectionLoader/utils';
|
|
|
|
import { Actions } from '@/components/actions';
|
|
|
|
import { request, 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 { components, fields2columns } from './SortableTable';
|
2020-11-11 15:23:39 +08:00
|
|
|
|
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: '姓名',
|
|
|
|
dataIndex: 'name',
|
|
|
|
key: 'name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '年龄',
|
|
|
|
dataIndex: 'age',
|
|
|
|
key: 'age',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '住址',
|
|
|
|
dataIndex: 'address',
|
|
|
|
key: 'address',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2020-11-13 22:01:14 +08:00
|
|
|
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;
|
2020-11-21 23:49:59 +08:00
|
|
|
const { fields, defaultTabName, rowKey = 'id', actions = [], paginated = true, defaultPageSize = 10 } = schema;
|
|
|
|
// const { data, mutate } = useRequest(() => api.resource(name).list({
|
|
|
|
// associatedKey,
|
|
|
|
// }));
|
2020-12-01 20:11:39 +08:00
|
|
|
const name = associatedName ? `${associatedName}.${resourceName}` : resourceName;
|
|
|
|
const { data, loading, pagination, mutate, refresh } = useRequest((params = {}) => {
|
2020-11-21 23:49:59 +08:00
|
|
|
const { current, pageSize, ...restParams } = params;
|
|
|
|
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,
|
|
|
|
});
|
2020-11-13 22:01:14 +08:00
|
|
|
const { sourceKey = 'id' } = activeTab.field||{};
|
2020-11-19 21:12:15 +08:00
|
|
|
console.log(props);
|
|
|
|
const [selectedRowKeys, setSelectedRowKeys] = useState([]);
|
|
|
|
const onChange = (selectedRowKeys: React.ReactText[]) => {
|
|
|
|
setSelectedRowKeys(selectedRowKeys);
|
|
|
|
}
|
|
|
|
const tableProps: any = {};
|
|
|
|
if (actions.length) {
|
|
|
|
tableProps.rowSelection = {
|
|
|
|
selectedRowKeys,
|
|
|
|
onChange,
|
|
|
|
}
|
|
|
|
}
|
2020-11-11 15:23:39 +08:00
|
|
|
return (
|
|
|
|
<Card bordered={false}>
|
2020-12-04 21:09:39 +08:00
|
|
|
<Actions
|
|
|
|
{...props}
|
|
|
|
style={{ marginBottom: 14 }}
|
|
|
|
actions={actions}
|
|
|
|
onFinish={() => {
|
|
|
|
refresh();
|
|
|
|
}}
|
2020-12-11 15:11:45 +08:00
|
|
|
onTrigger={{
|
|
|
|
async destroy() {
|
|
|
|
await api.resource(name).destroy({
|
|
|
|
associatedKey,
|
|
|
|
filter: {
|
|
|
|
[`${rowKey}.in`]: selectedRowKeys,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
await refresh();
|
|
|
|
console.log('destroy.onTrigger', selectedRowKeys);
|
|
|
|
}
|
|
|
|
}}
|
2020-12-04 21:09:39 +08:00
|
|
|
/>
|
2020-11-19 21:12:15 +08:00
|
|
|
<AntdTable
|
|
|
|
rowKey={rowKey}
|
|
|
|
columns={fields2columns(fields)}
|
2020-11-21 23:49:59 +08:00
|
|
|
dataSource={data?.list||(data as any)}
|
2020-12-01 20:11:39 +08:00
|
|
|
components={components({
|
|
|
|
data,
|
|
|
|
mutate,
|
|
|
|
rowKey,
|
|
|
|
onMoved: async ({resourceKey, offset}) => {
|
|
|
|
await api.resource(name).sort({
|
|
|
|
associatedKey,
|
|
|
|
resourceKey,
|
|
|
|
field: 'sort',
|
|
|
|
offset,
|
|
|
|
});
|
|
|
|
await refresh();
|
|
|
|
console.log({resourceKey, offset});
|
|
|
|
}
|
|
|
|
})}
|
2020-11-19 21:12:15 +08:00
|
|
|
onRow={(data) => ({
|
|
|
|
onClick: () => {
|
|
|
|
redirectTo({
|
|
|
|
...props.match.params,
|
|
|
|
[activeTab ? 'newItem' : 'lastItem']: {
|
|
|
|
itemId: data[rowKey]||data.id,
|
|
|
|
tabName: defaultTabName,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
})}
|
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>
|
|
|
|
);
|
|
|
|
}
|