Skip to content

Commit b688014

Browse files
author
André Ligné
committed
[added] custom feedback icons for Input
- Added a new prop on Input named feedbackIcon - Added tests for ensuring Glyphicons as default - Added tests for rendering the feedbackIcon This allows for passing custom icons that may be used instead of the default Glyphicons when an Input is having feedback.
1 parent 83cdaa3 commit b688014

File tree

2 files changed

+68
-10
lines changed

2 files changed

+68
-10
lines changed

src/InputBase.js

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import classNames from 'classnames';
33
import FormGroup from './FormGroup';
4+
import Glyphicon from './Glyphicon';
45

56
class InputBase extends React.Component {
67
getInputDOMNode() {
@@ -91,17 +92,20 @@ class InputBase extends React.Component {
9192
}
9293

9394
renderIcon() {
94-
let classes = {
95-
'glyphicon': true,
96-
'form-control-feedback': true,
97-
'glyphicon-ok': this.props.bsStyle === 'success',
98-
'glyphicon-warning-sign': this.props.bsStyle === 'warning',
99-
'glyphicon-remove': this.props.bsStyle === 'error'
100-
};
95+
if (this.props.hasFeedback) {
96+
if (this.props.feedbackIcon) {
97+
return React.cloneElement(this.props.feedbackIcon, { formControlFeedback: true });
98+
}
10199

102-
return this.props.hasFeedback ? (
103-
<span className={classNames(classes)} key="icon" />
104-
) : null;
100+
switch (this.props.bsStyle) {
101+
case 'success': return <Glyphicon formControlFeedback glyph="ok" key="icon" />;
102+
case 'warning': return <Glyphicon formControlFeedback glyph="warning-sign" key="icon" />;
103+
case 'error': return <Glyphicon formControlFeedback glyph="remove" key="icon" />;
104+
default: return <span className="form-control-feedback" key="icon" />;
105+
}
106+
} else {
107+
return null;
108+
}
105109
}
106110

107111
renderHelp() {
@@ -214,6 +218,7 @@ InputBase.propTypes = {
214218
bsSize: React.PropTypes.oneOf(['small', 'medium', 'large']),
215219
bsStyle: React.PropTypes.oneOf(['success', 'warning', 'error']),
216220
hasFeedback: React.PropTypes.bool,
221+
feedbackIcon: React.PropTypes.node,
217222
id: React.PropTypes.string,
218223
groupClassName: React.PropTypes.string,
219224
wrapperClassName: React.PropTypes.string,

test/InputSpec.js

+53
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Input from '../src/Input';
44
import Button from '../src/Button';
55
import DropdownButton from '../src/DropdownButton';
66
import MenuItem from '../src/MenuItem';
7+
import Glyphicon from '../src/Glyphicon';
78
import {shouldWarn} from './helpers';
89

910
describe('Input', function () {
@@ -279,4 +280,56 @@ describe('Input', function () {
279280
let node = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'input'));
280281
assert.isNotNull(node.getAttribute('disabled'));
281282
});
283+
284+
context('when Input listens to feedback', function () {
285+
it('renders success feedback as Glyphicon', function () {
286+
let instance = ReactTestUtils.renderIntoDocument(
287+
<Input hasFeedback={true} bsStyle="success" />
288+
);
289+
290+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon'));
291+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon-ok'));
292+
});
293+
294+
it('renders warning feedback as Glyphicon', function () {
295+
let instance = ReactTestUtils.renderIntoDocument(
296+
<Input hasFeedback={true} bsStyle="warning" />
297+
);
298+
299+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon'));
300+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon-warning-sign'));
301+
});
302+
303+
it('renders error feedback as Glyphicon', function () {
304+
let instance = ReactTestUtils.renderIntoDocument(
305+
<Input hasFeedback={true} bsStyle="error" />
306+
);
307+
308+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon'));
309+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon-remove'));
310+
});
311+
312+
context('when using feedbackIcon', function () {
313+
it('uses the feedbackIcon', function () {
314+
let customIcon = <Glyphicon glyph="star" />;
315+
316+
let instance = ReactTestUtils.renderIntoDocument(
317+
<Input feedbackIcon={customIcon} hasFeedback={true} bsStyle="success" />
318+
);
319+
320+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon'));
321+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'glyphicon-star'));
322+
});
323+
324+
it('adds the .form-control-feedback class for Glyphicons', function () {
325+
let customIcon = <Glyphicon glyph="star" />;
326+
327+
let instance = ReactTestUtils.renderIntoDocument(
328+
<Input feedbackIcon={customIcon} hasFeedback={true} bsStyle="success" />
329+
);
330+
331+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'form-control-feedback'));
332+
});
333+
});
334+
});
282335
});

0 commit comments

Comments
 (0)