Skip to content

Commit 7211dcb

Browse files
committed
[added] Add prevIcon and nextIcon props as node proptypes to Carousel
1 parent d9b08d3 commit 7211dcb

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

src/Carousel.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React, { cloneElement } from 'react';
22
import classNames from 'classnames';
33
import BootstrapMixin from './BootstrapMixin';
44
import ValidComponentChildren from './utils/ValidComponentChildren';
5+
import Glyphicon from './Glyphicon';
56

67
const Carousel = React.createClass({
78
mixins: [BootstrapMixin],
@@ -17,7 +18,9 @@ const Carousel = React.createClass({
1718
onSlideEnd: React.PropTypes.func,
1819
activeIndex: React.PropTypes.number,
1920
defaultActiveIndex: React.PropTypes.number,
20-
direction: React.PropTypes.oneOf(['prev', 'next'])
21+
direction: React.PropTypes.oneOf(['prev', 'next']),
22+
prevIcon: React.PropTypes.node.isRequired,
23+
nextIcon: React.PropTypes.node.isRequired
2124
},
2225

2326
getDefaultProps() {
@@ -27,7 +30,9 @@ const Carousel = React.createClass({
2730
pauseOnHover: true,
2831
wrap: true,
2932
indicators: true,
30-
controls: true
33+
controls: true,
34+
prevIcon: <Glyphicon glyph="chevron-left" />,
35+
nextIcon: <Glyphicon glyph="chevron-right" />
3136
};
3237
},
3338

@@ -158,15 +163,15 @@ const Carousel = React.createClass({
158163
renderPrev() {
159164
return (
160165
<a className="left carousel-control" href="#prev" key={0} onClick={this.prev}>
161-
<span className="glyphicon glyphicon-chevron-left" />
166+
{this.props.prevIcon}
162167
</a>
163168
);
164169
},
165170

166171
renderNext() {
167172
return (
168173
<a className="right carousel-control" href="#next" key={1} onClick={this.next}>
169-
<span className="glyphicon glyphicon-chevron-right"/>
174+
{this.props.nextIcon}
170175
</a>
171176
);
172177
},

test/CarouselSpec.js

+18
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,22 @@ describe('Carousel', function () {
112112
assert.equal(backButtons.length, 0);
113113
assert.equal(nextButtons.length, 1);
114114
});
115+
116+
it('Should allow user to specify a previous and next icon', function () {
117+
let instance = ReactTestUtils.renderIntoDocument(
118+
<Carousel activeIndex={1} controls={true} wrap={false}
119+
prevIcon={<span className='ficon ficon-left'/>}
120+
nextIcon={<span className='ficon ficon-right'/>}>
121+
<CarouselItem ref="item1">Item 1 content</CarouselItem>
122+
<CarouselItem ref="item2">Item 2 content</CarouselItem>
123+
<CarouselItem ref="item3">Item 3 content</CarouselItem>
124+
</Carousel>
125+
);
126+
127+
let backButtons = ReactTestUtils.scryRenderedDOMComponentsWithClass(instance, 'ficon-left');
128+
let nextButtons = ReactTestUtils.scryRenderedDOMComponentsWithClass(instance, 'ficon-right');
129+
130+
assert.equal(backButtons.length, 1);
131+
assert.equal(nextButtons.length, 1);
132+
});
115133
});

0 commit comments

Comments
 (0)