import type * as React from 'react'; import type { ColumnType as RcColumnType, RenderedCell as RcRenderedCell, FixedType, } from 'rc-table/lib/interface'; import { GetRowKey, ExpandableConfig } from 'rc-table/lib/interface'; import type { TooltipProps } from '../tooltip'; import type { CheckboxProps } from '../checkbox'; import type { PaginationProps } from '../pagination'; import type { Breakpoint } from '../_util/responsiveObserve'; import type { INTERNAL_SELECTION_ITEM } from './hooks/useSelection'; import { tuple } from '../_util/type'; // import { TableAction } from './Table'; export { GetRowKey, ExpandableConfig }; export type Key = React.Key; export type RowSelectionType = 'checkbox' | 'radio'; export type SelectionItemSelectFn = (currentRowKeys: Key[]) => void; export type ExpandType = null | 'row' | 'nest'; export interface TableLocale { filterTitle?: string; filterConfirm?: React.ReactNode; filterReset?: React.ReactNode; filterEmptyText?: React.ReactNode; filterCheckall?: React.ReactNode; filterSearchPlaceholder?: string; emptyText?: React.ReactNode | (() => React.ReactNode); selectAll?: React.ReactNode; selectNone?: React.ReactNode; selectInvert?: React.ReactNode; selectionAll?: React.ReactNode; sortTitle?: string; expand?: string; collapse?: string; triggerDesc?: string; triggerAsc?: string; cancelSort?: string; } export type SortOrder = 'descend' | 'ascend' | null; const TableActions = tuple('paginate', 'sort', 'filter'); export type TableAction = typeof TableActions[number]; export type CompareFn = (a: T, b: T, sortOrder?: SortOrder) => number; export interface ColumnFilterItem { text: React.ReactNode; value: string | number | boolean; children?: ColumnFilterItem[]; } export interface ColumnTitleProps { /** @deprecated Please use `sorterColumns` instead. */ sortOrder?: SortOrder; /** @deprecated Please use `sorterColumns` instead. */ sortColumn?: ColumnType; sortColumns?: { column: ColumnType; order: SortOrder }[]; filters?: Record; } export type ColumnTitle = | React.ReactNode | ((props: ColumnTitleProps) => React.ReactNode); export type FilterValue = (Key | boolean)[]; export type FilterKey = Key[] | null; export type FilterSearchType = boolean | ((input: string, record: {}) => boolean); export interface FilterConfirmProps { closeDropdown: boolean; } export interface FilterDropdownProps { prefixCls: string; setSelectedKeys: (selectedKeys: React.Key[]) => void; selectedKeys: React.Key[]; confirm: (param?: FilterConfirmProps) => void; clearFilters?: () => void; filters?: ColumnFilterItem[]; visible: boolean; } export interface ColumnType extends Omit, 'title'> { title?: ColumnTitle; // Sorter sorter?: | boolean | CompareFn | { compare?: CompareFn; /** Config multiple sorter order priority */ multiple?: number; }; sortOrder?: SortOrder; defaultSortOrder?: SortOrder; sortDirections?: SortOrder[]; showSorterTooltip?: boolean | TooltipProps; // Filter filtered?: boolean; filters?: ColumnFilterItem[]; filterDropdown?: React.ReactNode | ((props: FilterDropdownProps) => React.ReactNode); filterMultiple?: boolean; filteredValue?: FilterValue | null; defaultFilteredValue?: FilterValue | null; filterIcon?: React.ReactNode | ((filtered: boolean) => React.ReactNode); filterMode?: 'menu' | 'tree'; filterSearch?: FilterSearchType; onFilter?: (value: string | number | boolean, record: RecordType) => boolean; filterDropdownVisible?: boolean; onFilterDropdownVisibleChange?: (visible: boolean) => void; filterResetToDefaultFilteredValue?: boolean; // Responsive responsive?: Breakpoint[]; } export interface ColumnGroupType extends Omit, 'dataIndex'> { children: ColumnsType; } export type ColumnsType = ( | ColumnGroupType | ColumnType )[]; export interface SelectionItem { key: string; text: React.ReactNode; onSelect?: SelectionItemSelectFn; } export type SelectionSelectFn = ( record: T, selected: boolean, selectedRows: T[], nativeEvent: Event, ) => void; export interface TableRowSelection { /** Keep the selection keys in list even the key not exist in `dataSource` anymore */ preserveSelectedRowKeys?: boolean; type?: RowSelectionType; selectedRowKeys?: Key[]; defaultSelectedRowKeys?: Key[]; onChange?: (selectedRowKeys: Key[], selectedRows: T[]) => void; getCheckboxProps?: (record: T) => Partial>; onSelect?: SelectionSelectFn; /** @deprecated This function is deprecated and should use `onChange` instead */ onSelectMultiple?: (selected: boolean, selectedRows: T[], changeRows: T[]) => void; /** @deprecated This function is deprecated and should use `onChange` instead */ onSelectAll?: (selected: boolean, selectedRows: T[], changeRows: T[]) => void; /** @deprecated This function is deprecated and should use `onChange` instead */ onSelectInvert?: (selectedRowKeys: Key[]) => void; /** @deprecated This function is deprecated and should use `onChange` instead */ onSelectNone?: () => void; selections?: INTERNAL_SELECTION_ITEM[] | boolean; hideSelectAll?: boolean; fixed?: FixedType; columnWidth?: string | number; columnTitle?: string | React.ReactNode; checkStrictly?: boolean; renderCell?: ( value: boolean, record: T, index: number, originNode: React.ReactNode, ) => React.ReactNode | RcRenderedCell; } export type TransformColumns = ( columns: ColumnsType, ) => ColumnsType; export interface TableCurrentDataSource { currentDataSource: RecordType[]; action: TableAction; } export interface SorterResult { column?: ColumnType; order?: SortOrder; field?: Key | readonly Key[]; columnKey?: Key; } export type GetPopupContainer = (triggerNode: HTMLElement) => HTMLElement; type TablePaginationPosition = | 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight'; export interface TablePaginationConfig extends PaginationProps { position?: TablePaginationPosition[]; }