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.
29 lines
726 B
29 lines
726 B
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
|
|
export default class Breadcrumbs extends PureComponent {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
currentIndex: PropTypes.number,
|
|
total: PropTypes.number,
|
|
}
|
|
|
|
render () {
|
|
const { className, currentIndex, total } = this.props
|
|
|
|
return (
|
|
<div className={classnames('breadcrumbs', className)}>
|
|
{
|
|
Array(total).fill().map((_, i) => (
|
|
<div
|
|
key={i}
|
|
className="breadcrumb"
|
|
style={{backgroundColor: i === currentIndex ? '#D8D8D8' : '#FFFFFF'}}
|
|
/>
|
|
))
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|