You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import type { TableLocale } from './interface';
|
|
|
|
interface DefaultExpandIconProps<RecordType> {
|
|
prefixCls: string;
|
|
onExpand: (record: RecordType, e: React.MouseEvent<HTMLElement>) => void;
|
|
record: RecordType;
|
|
expanded: boolean;
|
|
expandable: boolean;
|
|
}
|
|
|
|
function renderExpandIcon(locale: TableLocale) {
|
|
return function expandIcon<RecordType>({
|
|
prefixCls,
|
|
onExpand,
|
|
record,
|
|
expanded,
|
|
expandable,
|
|
}: DefaultExpandIconProps<RecordType>) {
|
|
const iconPrefix = `${prefixCls}-row-expand-icon`;
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
onClick={(e) => {
|
|
onExpand(record, e!);
|
|
e.stopPropagation();
|
|
}}
|
|
className={classNames(iconPrefix, {
|
|
[`${iconPrefix}-spaced`]: !expandable,
|
|
[`${iconPrefix}-expanded`]: expandable && expanded,
|
|
[`${iconPrefix}-collapsed`]: expandable && !expanded,
|
|
})}
|
|
aria-label={expanded ? locale.collapse : locale.expand}
|
|
aria-expanded={expanded}
|
|
/>
|
|
);
|
|
};
|
|
}
|
|
|
|
export default renderExpandIcon;
|
|
|