我有一个组件,有时有时需要呈现为<anchor>
和,有时需要呈现为<div>
。在prop
我读来确定这一点,是this.props.url
。
如果存在,则需要渲染包裹在中的组件<a href={this.props.url}>
。否则,它将仅呈现为<div/>
。
可能?
这是我现在正在做的,但是感觉可以简化:
if (this.props.link) {
return (
<a href={this.props.link}>
<i>
{this.props.count}
</i>
</a>
);
}
return (
<i className={styles.Icon}>
{this.props.count}
</i>
);
更新:
这是最终的锁定。感谢您的提示,@ Sulthan!
import React, { Component, PropTypes } from 'react';
import classNames from 'classnames';
export default class CommentCount extends Component {
static propTypes = {
count: PropTypes.number.isRequired,
link: PropTypes.string,
className: PropTypes.string
}
render() {
const styles = require('./CommentCount.css');
const {link, className, count} = this.props;
const iconClasses = classNames({
[styles.Icon]: true,
[className]: !link && className
});
const Icon = (
<i className={iconClasses}>
{count}
</i>
);
if (link) {
const baseClasses = classNames({
[styles.Base]: true,
[className]: className
});
return (
<a href={link} className={baseClasses}>
{Icon}
</a>
);
}
return Icon;
}
}
您还可以使用如下所示的util函数: