Skip to content

Commit 90aece6

Browse files
committed
[changed] Simplify 'styleMaps.STYLES' to be of Array type
no public API changes.
1 parent 860d168 commit 90aece6

File tree

3 files changed

+29
-17
lines changed

3 files changed

+29
-17
lines changed

src/BootstrapMixin.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import styleMaps from './styleMaps';
23
import CustomPropTypes from './utils/CustomPropTypes';
34

@@ -12,7 +13,7 @@ const BootstrapMixin = {
1213
* Style variants
1314
* @type {("default"|"primary"|"success"|"info"|"warning"|"danger"|"link")}
1415
*/
15-
bsStyle: CustomPropTypes.keyOf(styleMaps.STYLES),
16+
bsStyle: React.PropTypes.oneOf(styleMaps.STYLES),
1617
/**
1718
* Size variants
1819
* @type {("xsmall"|"small"|"medium"|"large")}
@@ -35,9 +36,8 @@ const BootstrapMixin = {
3536
}
3637

3738
if (this.props.bsStyle) {
38-
let bsStyle = styleMaps.STYLES[this.props.bsStyle];
39-
if (bsStyle) {
40-
classes[prefix + bsStyle] = true;
39+
if (styleMaps.STYLES.indexOf(this.props.bsStyle) >= 0) {
40+
classes[prefix + this.props.bsStyle] = true;
4141
} else {
4242
classes[this.props.bsStyle] = true;
4343
}

src/styleMaps.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ const styleMaps = {
2121
'row': 'row',
2222
'well': 'well'
2323
},
24-
STYLES: {
25-
'default': 'default',
26-
'primary': 'primary',
27-
'success': 'success',
28-
'info': 'info',
29-
'warning': 'warning',
30-
'danger': 'danger',
31-
'link': 'link',
32-
'inline': 'inline',
33-
'tabs': 'tabs',
34-
'pills': 'pills'
35-
},
24+
STYLES: [
25+
'default',
26+
'primary',
27+
'success',
28+
'info',
29+
'warning',
30+
'danger',
31+
'link',
32+
'inline',
33+
'tabs',
34+
'pills'
35+
],
3636
addStyle(name) {
37-
styleMaps.STYLES[name] = name;
37+
styleMaps.STYLES.push(name);
3838
},
3939
SIZES: {
4040
'large': 'lg',

test/BootstrapMixinSpec.js

+12
Original file line numberDiff line numberDiff line change
@@ -222,4 +222,16 @@ describe('BootstrapMixin', function () {
222222
});
223223
});
224224
});
225+
226+
// todo: fix bad naming
227+
describe('#prefixClass', function () {
228+
it('allows custom sub-classes', function () {
229+
let instance = ReactTestUtils.renderIntoDocument(
230+
<Component bsClass='button'>
231+
content
232+
</Component>
233+
);
234+
assert.equal(instance.prefixClass('title'), 'btn-title');
235+
});
236+
});
225237
});

0 commit comments

Comments
 (0)