41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
declare namespace AntDesign {
|
|
type TableColumnType<T> = import('ant-design-vue').TableColumnType<T>;
|
|
type TableColumnGroupType<T> = import('ant-design-vue').TableColumnGroupType<T>;
|
|
type TablePaginationConfig = import('ant-design-vue').TablePaginationConfig;
|
|
type TableColumnCheck = import('@sa/hooks').TableColumnCheck;
|
|
type TableDataWithIndex<T> = import('@sa/hooks').TableDataWithIndex<T>;
|
|
type FlatResponseData<T> = import('@sa/axios').FlatResponseData<T>;
|
|
|
|
type TableData<T = object> = Api.Common.CommonRecord<T>;
|
|
|
|
/**
|
|
* the custom column key
|
|
*
|
|
* if you want to add a custom column, you should add a key to this type
|
|
*/
|
|
type CustomColumnKey = 'operate';
|
|
|
|
type SetTableColumnKey<C, T> = Omit<C, 'key'> & { key?: keyof T | CustomColumnKey };
|
|
|
|
type TableColumn<T> = SetTableColumnKey<TableColumnType<T>, T> | SetTableColumnKey<TableColumnGroupType<T>, T>;
|
|
|
|
type TableApiFn<T = any, R = Api.SystemManage.CommonSearchParams> = (
|
|
params: R
|
|
) => Promise<FlatResponseData<Api.Common.PaginatingQueryRecord<T>>>;
|
|
|
|
/**
|
|
* the type of table operation
|
|
*
|
|
* - add: add table item
|
|
* - edit: edit table item
|
|
*/
|
|
type TableOperateType = 'add' | 'edit';
|
|
|
|
type GetTableData<A extends TableApiFn> = A extends TableApiFn<infer T> ? T : never;
|
|
|
|
type AntDesignTableConfig<A extends TableApiFn> = Pick<
|
|
import('@sa/hooks').TableConfig<A, GetTableData<A>, TableColumn<TableDataWithIndex<GetTableData<A>>>>,
|
|
'apiFn' | 'apiParams' | 'columns' | 'immediate' | 'rowKey'
|
|
>;
|
|
}
|