2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-12-19 15:19:15 +08:00
|
|
|
import { PropTypes } from 'react';
|
2016-03-31 17:46:35 +08:00
|
|
|
|
2016-09-13 15:31:29 +08:00
|
|
|
export interface BreadcrumbItemProps {
|
2016-12-19 15:19:15 +08:00
|
|
|
prefixCls?: string;
|
2016-07-14 13:29:50 +08:00
|
|
|
separator?: React.ReactNode;
|
|
|
|
href?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class BreadcrumbItem extends React.Component<BreadcrumbItemProps, any> {
|
2017-01-27 17:08:05 +08:00
|
|
|
static __ANT_BREADCRUMB_ITEM = true;
|
|
|
|
|
2016-03-31 17:46:35 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-breadcrumb',
|
|
|
|
separator: '/',
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-31 17:46:35 +08:00
|
|
|
|
|
|
|
static propTypes = {
|
2016-12-19 15:19:15 +08:00
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
separator: PropTypes.oneOfType([
|
|
|
|
PropTypes.string,
|
|
|
|
PropTypes.element,
|
2016-03-31 17:46:35 +08:00
|
|
|
]),
|
2016-12-19 15:19:15 +08:00
|
|
|
href: PropTypes.string,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-31 17:46:35 +08:00
|
|
|
|
|
|
|
render() {
|
2016-12-19 15:19:15 +08:00
|
|
|
const { prefixCls, separator, children, ...restProps } = this.props;
|
2016-03-31 17:46:35 +08:00
|
|
|
let link;
|
|
|
|
if ('href' in this.props) {
|
|
|
|
link = <a className={`${prefixCls}-link`} {...restProps}>{children}</a>;
|
|
|
|
} else {
|
|
|
|
link = <span className={`${prefixCls}-link`} {...restProps}>{children}</span>;
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
{link}
|
|
|
|
<span className={`${prefixCls}-separator`}>{separator}</span>
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|