ant-design/components/comment/index.tsx

120 lines
3.0 KiB
TypeScript
Raw Normal View History

2018-10-22 21:20:28 +08:00
import * as React from 'react';
2018-10-22 22:28:58 +08:00
import classNames from 'classnames';
2018-10-22 21:20:28 +08:00
export interface CommentProps {
/** List of action items rendered below the comment content */
actions?: Array<React.ReactNode>;
/** The element to display as the comment author. */
author?: string;
2018-10-22 21:20:28 +08:00
/** The element to display as the comment avatar - generally an antd Avatar */
avatar?: React.ReactNode;
2018-10-22 22:28:58 +08:00
/** className of comment */
className?: string;
2018-10-22 21:20:28 +08:00
/** The main content of the comment */
content: React.ReactNode;
/** Nested comments should be provided as children of the Comment */
children?: any;
2018-10-22 22:28:58 +08:00
/** Comment prefix defaults to '.ant-comment' */
2018-10-22 21:20:28 +08:00
prefixCls?: string;
/** Additional style for the comment */
style?: React.CSSProperties;
2018-10-30 00:17:26 +08:00
/** A datetime element containing the time to be displayed */
datetime?: React.ReactNode;
2018-10-22 21:20:28 +08:00
}
export default class Comment extends React.Component<CommentProps, {}> {
getAction(actions: React.ReactNode[]) {
if (!actions || !actions.length) {
return null;
}
const actionList = actions.map((action, index) => (
<li key={`action-${index}`}>
2018-10-30 19:25:54 +08:00
{action}
2018-10-22 21:20:28 +08:00
</li>
),
);
return actionList;
}
renderNested = (child: any) => {
2018-10-29 01:17:00 +08:00
const { prefixCls = 'ant-comment' } = this.props;
const classString = classNames(`${prefixCls}-nested`);
return (
<div key={child.key} className={classString}>
2018-10-29 01:17:00 +08:00
{child}
</div>
2018-10-30 19:25:54 +08:00
);
2018-10-29 01:17:00 +08:00
}
2018-10-22 21:20:28 +08:00
render() {
const {
actions,
author,
avatar,
children,
2018-10-22 22:28:58 +08:00
className,
content,
2018-10-22 21:20:28 +08:00
prefixCls = 'ant-comment',
style = {},
2018-10-30 00:17:26 +08:00
datetime,
2018-10-22 21:20:28 +08:00
...otherProps
} = this.props;
2018-10-30 00:26:12 +08:00
const classString = classNames(prefixCls, className);
2018-10-22 21:20:28 +08:00
const avatarDom = (
2018-10-30 00:26:12 +08:00
<div className={`${prefixCls}-avatar`}>
{typeof avatar === 'string' ? <img src={avatar} /> : avatar}
2018-10-22 21:20:28 +08:00
</div>
);
const actionDom = actions && actions.length
? <ul className={`${prefixCls}-actions`}>{this.getAction(actions)}</ul>
: null;
const authorContent = (
<div className={`${prefixCls}-content-author`}>
2018-10-30 00:26:12 +08:00
{author && (
<span className={`${prefixCls}-content-author-name`}>
{author}
</span>
)}
{datetime && (
<span className={`${prefixCls}-content-author-time`}>
{datetime}
</span>
)}
</div>
);
const contentDom = (
2018-10-30 00:26:12 +08:00
<div className={`${prefixCls}-content`}>
{authorContent}
2018-10-22 21:20:28 +08:00
<div className={`${prefixCls}-content-detail`}>
{content}
2018-10-22 21:20:28 +08:00
</div>
{actionDom}
</div>
);
const comment = (
2018-10-31 20:53:10 +08:00
<div className={`${prefixCls}-inner`}>
{avatarDom}
{contentDom}
2018-10-22 21:20:28 +08:00
</div>
2018-10-30 19:25:54 +08:00
);
const nestedComments =
React.Children
2018-10-30 19:25:54 +08:00
.map(children, (child: React.ReactElement<any>) => this.renderNested(child));
return (
2018-10-31 20:53:10 +08:00
<div {...otherProps} className={classString} style={style}>
{comment}
{nestedComments}
</div>
);
2018-10-22 21:20:28 +08:00
}
}