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.
96 lines
2.5 KiB
96 lines
2.5 KiB
import React, { cloneElement } from 'react';
|
|
|
|
const BreadcrumbItem = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-breadcrumb',
|
|
separator: '/',
|
|
};
|
|
},
|
|
propTypes: {
|
|
prefixCls: React.PropTypes.string,
|
|
separator: React.PropTypes.oneOfType([
|
|
React.PropTypes.string,
|
|
React.PropTypes.element,
|
|
]),
|
|
href: React.PropTypes.string,
|
|
},
|
|
render() {
|
|
const { prefixCls, separator, children } = this.props;
|
|
let link = <a className={`${prefixCls}-link`} {...this.props}>{children}</a>;
|
|
if (typeof this.props.href === 'undefined') {
|
|
link = <span className={`${prefixCls}-link`} {...this.props}>{children}</span>;
|
|
}
|
|
return (
|
|
<span>
|
|
{link}
|
|
<span className={`${prefixCls}-separator`}>{separator}</span>
|
|
</span>
|
|
);
|
|
}
|
|
});
|
|
|
|
const Breadcrumb = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-breadcrumb',
|
|
separator: '/',
|
|
linkRender: (href, name) => <a href={`#${href}`}>{name}</a>,
|
|
};
|
|
},
|
|
propTypes: {
|
|
prefixCls: React.PropTypes.string,
|
|
separator: React.PropTypes.oneOfType([
|
|
React.PropTypes.string,
|
|
React.PropTypes.element,
|
|
]),
|
|
routes: React.PropTypes.array,
|
|
params: React.PropTypes.object,
|
|
},
|
|
render() {
|
|
let crumbs;
|
|
const { separator, prefixCls, routes, params, children, linkRender } = this.props;
|
|
if (routes && routes.length > 0) {
|
|
const paths = [];
|
|
crumbs = routes.map((route, i) => {
|
|
if (!route.breadcrumbName) {
|
|
return null;
|
|
}
|
|
const name = route.breadcrumbName.replace(/\:(.*)/g, (replacement, key) => {
|
|
return params[key] || replacement;
|
|
});
|
|
|
|
let link;
|
|
let path = route.path.replace(/^\//, '');
|
|
Object.keys(params).forEach(key => {
|
|
path = path.replace(`:${key}`, params[key]);
|
|
});
|
|
if (path) {
|
|
paths.push(path);
|
|
}
|
|
|
|
if (i === routes.length - 1) {
|
|
link = <span>{name}</span>;
|
|
} else {
|
|
link = linkRender(`/${paths.join('/')}`, name);
|
|
}
|
|
return <BreadcrumbItem separator={separator} key={name}>{link}</BreadcrumbItem>;
|
|
});
|
|
} else {
|
|
crumbs = React.Children.map(children, (element, index) => {
|
|
return cloneElement(element, {
|
|
separator,
|
|
key: index,
|
|
});
|
|
});
|
|
}
|
|
return (
|
|
<div className={prefixCls}>
|
|
{crumbs}
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
Breadcrumb.Item = BreadcrumbItem;
|
|
export default Breadcrumb;
|
|
|