mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
53b6688b41
* fix: fix list.item actions empty Signed-off-by: Cody Chan <int64ago@gmail.com> * Update components/list/Item.tsx Signed-off-by: afc163 <afc163@gmail.com> * Apply suggestions from code review Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: Cody Chan <int64ago@gmail.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: afc163 <afc163@gmail.com>
173 lines
4.7 KiB
TypeScript
173 lines
4.7 KiB
TypeScript
import type { CSSProperties, FC, HTMLAttributes, ReactElement, ReactNode } from 'react';
|
|
import React, { Children, useContext } from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { cloneElement } from '../_util/reactNode';
|
|
import { ConfigContext } from '../config-provider';
|
|
import { Col } from '../grid';
|
|
import { ListContext } from './context';
|
|
|
|
export interface ListItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
className?: string;
|
|
classNames?: {
|
|
actions?: string;
|
|
extra?: string;
|
|
};
|
|
children?: ReactNode;
|
|
prefixCls?: string;
|
|
style?: CSSProperties;
|
|
styles?: {
|
|
actions?: CSSProperties;
|
|
extra?: CSSProperties;
|
|
};
|
|
extra?: ReactNode;
|
|
actions?: ReactNode[];
|
|
colStyle?: CSSProperties;
|
|
}
|
|
|
|
export interface ListItemMetaProps {
|
|
avatar?: ReactNode;
|
|
className?: string;
|
|
children?: ReactNode;
|
|
description?: ReactNode;
|
|
prefixCls?: string;
|
|
style?: CSSProperties;
|
|
title?: ReactNode;
|
|
}
|
|
|
|
type ListItemClassNamesModule = keyof Exclude<ListItemProps['classNames'], undefined>;
|
|
type ListItemStylesModule = keyof Exclude<ListItemProps['styles'], undefined>;
|
|
|
|
export const Meta: FC<ListItemMetaProps> = ({
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
avatar,
|
|
title,
|
|
description,
|
|
...others
|
|
}) => {
|
|
const { getPrefixCls } = useContext(ConfigContext);
|
|
|
|
const prefixCls = getPrefixCls('list', customizePrefixCls);
|
|
const classString = classNames(`${prefixCls}-item-meta`, className);
|
|
|
|
const content = (
|
|
<div className={`${prefixCls}-item-meta-content`}>
|
|
{title && <h4 className={`${prefixCls}-item-meta-title`}>{title}</h4>}
|
|
{description && <div className={`${prefixCls}-item-meta-description`}>{description}</div>}
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<div {...others} className={classString}>
|
|
{avatar && <div className={`${prefixCls}-item-meta-avatar`}>{avatar}</div>}
|
|
{(title || description) && content}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const InternalItem = React.forwardRef<HTMLDivElement, ListItemProps>((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
children,
|
|
actions,
|
|
extra,
|
|
styles,
|
|
className,
|
|
classNames: customizeClassNames,
|
|
colStyle,
|
|
...others
|
|
} = props;
|
|
const { grid, itemLayout } = useContext(ListContext);
|
|
const { getPrefixCls, list } = useContext(ConfigContext);
|
|
|
|
const moduleClass = (moduleName: ListItemClassNamesModule) =>
|
|
classNames(list?.item?.classNames?.[moduleName], customizeClassNames?.[moduleName]);
|
|
|
|
const moduleStyle = (moduleName: ListItemStylesModule): React.CSSProperties => ({
|
|
...list?.item?.styles?.[moduleName],
|
|
...styles?.[moduleName],
|
|
});
|
|
|
|
const isItemContainsTextNodeAndNotSingular = () => {
|
|
let result = false;
|
|
Children.forEach(children as ReactElement, (element) => {
|
|
if (typeof element === 'string') {
|
|
result = true;
|
|
}
|
|
});
|
|
return result && Children.count(children) > 1;
|
|
};
|
|
|
|
const isFlexMode = () => {
|
|
if (itemLayout === 'vertical') {
|
|
return !!extra;
|
|
}
|
|
return !isItemContainsTextNodeAndNotSingular();
|
|
};
|
|
|
|
const prefixCls = getPrefixCls('list', customizePrefixCls);
|
|
const actionsContent = (actions && actions.length > 0) && (
|
|
<ul
|
|
className={classNames(`${prefixCls}-item-action`, moduleClass('actions'))}
|
|
key="actions"
|
|
style={moduleStyle('actions')}
|
|
>
|
|
{actions.map((action: ReactNode, i: number) => (
|
|
// eslint-disable-next-line react/no-array-index-key
|
|
<li key={`${prefixCls}-item-action-${i}`}>
|
|
{action}
|
|
{i !== actions.length - 1 && <em className={`${prefixCls}-item-action-split`} />}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
);
|
|
const Element = grid ? 'div' : 'li';
|
|
const itemChildren = (
|
|
<Element
|
|
{...(others as any)} // `li` element `onCopy` prop args is not same as `div`
|
|
{...(!grid ? { ref } : {})}
|
|
className={classNames(
|
|
`${prefixCls}-item`,
|
|
{
|
|
[`${prefixCls}-item-no-flex`]: !isFlexMode(),
|
|
},
|
|
className,
|
|
)}
|
|
>
|
|
{itemLayout === 'vertical' && extra
|
|
? [
|
|
<div className={`${prefixCls}-item-main`} key="content">
|
|
{children}
|
|
{actionsContent}
|
|
</div>,
|
|
<div
|
|
className={classNames(`${prefixCls}-item-extra`, moduleClass('extra'))}
|
|
key="extra"
|
|
style={moduleStyle('extra')}
|
|
>
|
|
{extra}
|
|
</div>,
|
|
]
|
|
: [children, actionsContent, cloneElement(extra, { key: 'extra' })]}
|
|
</Element>
|
|
);
|
|
return grid ? (
|
|
<Col ref={ref} flex={1} style={colStyle}>
|
|
{itemChildren}
|
|
</Col>
|
|
) : (
|
|
itemChildren
|
|
);
|
|
});
|
|
|
|
export type ListItemTypeProps = typeof InternalItem & {
|
|
Meta: typeof Meta;
|
|
};
|
|
|
|
const Item = InternalItem as ListItemTypeProps;
|
|
|
|
Item.Meta = Meta;
|
|
|
|
export default Item;
|