tachybase_todo/packages/app/src/components/views/SimpleTable.tsx

96 lines
2.7 KiB
TypeScript
Raw Normal View History

import React, { useEffect, useRef, useState } from 'react';
import { Table as AntdTable, Card, Pagination } from 'antd';
import { Actions } from '@/components/actions';
import ViewFactory from '@/components/views';
import { useRequest } from 'umi';
import api from '@/api-client';
import get from 'lodash/get';
import { components, fields2columns } from './SortableTable';
export interface SimpleTableProps {
schema?: any;
activeTab?: any;
resourceName: string;
associatedName?: string;
associatedKey?: string;
[key: string]: any;
}
export function SimpleTable(props: SimpleTableProps) {
console.log(props);
const {
activeTab = {},
pageInfo = {},
schema,
resourceName,
associatedName,
associatedKey,
} = props;
const { rowKey = 'id', fields = [], rowViewName, actions = [], paginated = true, defaultPageSize = 10 } = schema;
const { sourceKey = 'id' } = activeTab.field||{};
const drawerRef = useRef<any>();
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);
const [selectedRowKeys, setSelectedRowKeys] = useState([]);
const onChange = (selectedRowKeys: React.ReactText[]) => {
setSelectedRowKeys(selectedRowKeys);
}
const tableProps: any = {};
if (actions.length) {
tableProps.rowSelection = {
selectedRowKeys,
onChange,
}
}
console.log('rowViewName', {rowViewName})
return (
<Card bordered={false}>
<Actions {...props} style={{ marginBottom: 14 }} actions={actions}/>
<ViewFactory
{...props}
viewName={rowViewName}
reference={drawerRef}
/>
<AntdTable
rowKey={rowKey}
loading={loading}
columns={fields2columns(fields)}
dataSource={data?.list||(data as any)}
components={components({data, mutate})}
onRow={(record) => ({
onClick: () => {
drawerRef.current.setVisible(true);
drawerRef.current.getData(record[rowKey]);
}
})}
pagination={false}
{...tableProps}
/>
{paginated && (
<div>
<Pagination {...pagination} showQuickJumper showSizeChanger size={'default'}/>
</div>
)}
</Card>
);
}