mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import * as React from 'react';
|
|
import { EXPAND_COLUMN, Summary } from 'rc-table';
|
|
import type { Reference } from 'rc-table';
|
|
|
|
import type { AnyObject } from '../_util/type';
|
|
import Column from './Column';
|
|
import ColumnGroup from './ColumnGroup';
|
|
import {
|
|
SELECTION_ALL,
|
|
SELECTION_COLUMN,
|
|
SELECTION_INVERT,
|
|
SELECTION_NONE,
|
|
} from './hooks/useSelection';
|
|
import type { RefTable } from './interface';
|
|
import type { TableProps } from './InternalTable';
|
|
import InternalTable from './InternalTable';
|
|
|
|
const Table = <RecordType extends AnyObject = AnyObject>(
|
|
props: TableProps<RecordType>,
|
|
ref: React.Ref<Reference>,
|
|
) => {
|
|
const renderTimesRef = React.useRef<number>(0);
|
|
renderTimesRef.current += 1;
|
|
return <InternalTable<RecordType> {...props} ref={ref} _renderTimes={renderTimesRef.current} />;
|
|
};
|
|
|
|
const ForwardTable = React.forwardRef(Table) as unknown as RefTable & {
|
|
displayName?: string;
|
|
SELECTION_COLUMN: typeof SELECTION_COLUMN;
|
|
EXPAND_COLUMN: typeof EXPAND_COLUMN;
|
|
SELECTION_ALL: typeof SELECTION_ALL;
|
|
SELECTION_INVERT: typeof SELECTION_INVERT;
|
|
SELECTION_NONE: typeof SELECTION_NONE;
|
|
Column: typeof Column;
|
|
ColumnGroup: typeof ColumnGroup;
|
|
Summary: typeof Summary;
|
|
};
|
|
|
|
ForwardTable.SELECTION_COLUMN = SELECTION_COLUMN;
|
|
ForwardTable.EXPAND_COLUMN = EXPAND_COLUMN;
|
|
ForwardTable.SELECTION_ALL = SELECTION_ALL;
|
|
ForwardTable.SELECTION_INVERT = SELECTION_INVERT;
|
|
ForwardTable.SELECTION_NONE = SELECTION_NONE;
|
|
ForwardTable.Column = Column;
|
|
ForwardTable.ColumnGroup = ColumnGroup;
|
|
ForwardTable.Summary = Summary;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
ForwardTable.displayName = 'Table';
|
|
}
|
|
|
|
export default ForwardTable;
|