Skip to content

Commit befed83

Browse files
committed
[fixed] All panel-* classes dynamic based on bsStyle prop
This is some initial work to solve a problem identified in react-bootstrap#404. While that issue is directly related to Modals the problem is evident throughout the library. This is the first of many steps to remidy the issue.
1 parent de6f7dd commit befed83

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed

src/BootstrapMixin.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ var BootstrapMixin = {
2929
}
3030

3131
return classes;
32+
},
33+
34+
prefixClass: function(subClass) {
35+
return constants.CLASSES[this.props.bsClass] + '-' + subClass;
3236
}
3337
};
3438

35-
module.exports = BootstrapMixin;
39+
module.exports = BootstrapMixin;

src/Panel.jsx

+13-10
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ var Panel = React.createClass({
5656

5757
render: function () {
5858
var classes = this.getBsClassSet();
59-
classes['panel'] = true;
6059

6160
return (
62-
<div {...this.props} className={joinClasses(this.props.className, classSet(classes))}
61+
<div {...this.props}
62+
className={joinClasses(this.props.className, classSet(classes))}
6363
id={this.props.collapsable ? null : this.props.id} onSelect={null}>
6464
{this.renderHeading()}
6565
{this.props.collapsable ? this.renderCollapsableBody() : this.renderBody()}
@@ -69,11 +69,13 @@ var Panel = React.createClass({
6969
},
7070

7171
renderCollapsableBody: function () {
72+
var collapseClass = this.prefixClass('collapse');
73+
7274
return (
7375
<div
74-
className={classSet(this.getCollapsableClassSet('panel-collapse'))}
76+
className={classSet(this.getCollapsableClassSet(collapseClass))}
7577
id={this.props.id}
76-
ref="panel"
78+
ref='panel'
7779
aria-expanded={this.isExpanded() ? 'true' : 'false'}>
7880
{this.renderBody()}
7981
</div>
@@ -84,6 +86,7 @@ var Panel = React.createClass({
8486
var allChildren = this.props.children;
8587
var bodyElements = [];
8688
var panelBodyChildren = [];
89+
var bodyClass = this.prefixClass('body');
8790

8891
function getProps() {
8992
return {key: bodyElements.length};
@@ -95,7 +98,7 @@ var Panel = React.createClass({
9598

9699
function addPanelBody (children) {
97100
bodyElements.push(
98-
<div className="panel-body" {...getProps()}>
101+
<div className={bodyClass} {...getProps()}>
99102
{children}
100103
</div>
101104
);
@@ -152,17 +155,17 @@ var Panel = React.createClass({
152155
this.renderCollapsableTitle(header) : header;
153156
} else if (this.props.collapsable) {
154157
header = cloneWithProps(header, {
155-
className: 'panel-title',
158+
className: this.prefixClass('title'),
156159
children: this.renderAnchor(header.props.children)
157160
});
158161
} else {
159162
header = cloneWithProps(header, {
160-
className: 'panel-title'
163+
className: this.prefixClass('title')
161164
});
162165
}
163166

164167
return (
165-
<div className="panel-heading">
168+
<div className={this.prefixClass('heading')}>
166169
{header}
167170
</div>
168171
);
@@ -182,7 +185,7 @@ var Panel = React.createClass({
182185

183186
renderCollapsableTitle: function (header) {
184187
return (
185-
<h4 className="panel-title">
188+
<h4 className={this.prefixClass('title')}>
186189
{this.renderAnchor(header)}
187190
</h4>
188191
);
@@ -194,7 +197,7 @@ var Panel = React.createClass({
194197
}
195198

196199
return (
197-
<div className="panel-footer">
200+
<div className={this.prefixClass('footer')}>
198201
{this.props.footer}
199202
</div>
200203
);

test/BootstrapMixinSpec.jsx

+9
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,14 @@ describe('BootstrapMixin', function () {
188188
);
189189
assert.deepEqual(instance.getBsClassSet(), {'btn': true, 'btn-xs': true});
190190
});
191+
192+
it('should return "btn-title"', function () {
193+
var instance = ReactTestUtils.renderIntoDocument(
194+
<Component bsClass='button'>
195+
content
196+
</Component>
197+
);
198+
assert.equal(instance.prefixClass('title'), 'btn-title');
199+
});
191200
});
192201
});

0 commit comments

Comments
 (0)