Skip to content

Commit 0f3ee3e

Browse files
committed
[removed] bootstrap mixin
1 parent 3bb42f2 commit 0f3ee3e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+955
-695
lines changed

.babelrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"stage": 1,
33
"optional": ["runtime"],
4-
"loose": ["all"]
4+
"loose": ["all"],
5+
"plugins": ["object-assign"]
56
}

.eslintrc

+11-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,23 @@
1717
"comma-dangle": 0,
1818
"eqeqeq": [2, "allow-null"],
1919
"id-length": 0,
20+
"no-eq-null": 0,
2021
"one-var": [2, { "initialized": "never" }],
2122
"prefer-const": 0,
2223
"no-param-reassign": 0,
2324
"no-this-before-super": 2,
2425
"babel/object-shorthand": 2,
2526
"react/jsx-boolean-value": 2,
2627
"react/jsx-no-duplicate-props": 2,
27-
"react/prop-types": [2, { "ignore": [ "children", "className", "style" ] }],
28-
"react/sort-comp": 0
28+
"react/sort-comp": 0,
29+
"react/prop-types": [2, { "ignore": [
30+
"children",
31+
"className",
32+
"style",
33+
"bsStyle",
34+
"bsClass",
35+
"bsSize"
36+
]
37+
}],
2938
}
3039
}

docs/generate-metadata.js

+54-7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import glob from 'glob';
33
import fsp from 'fs-promise';
44
import promisify from '../tools/promisify';
55
import marked from 'marked';
6+
import defaultDescriptions from './src/defaultPropDescriptions';
67

78
marked.setOptions({
89
xhtml: true
@@ -18,6 +19,7 @@ let cleanDoclets = desc => {
1819

1920
let cleanDocletValue = str => str.trim().replace(/^\{/, '').replace(/\}$/, '');
2021

22+
let quote = str => str && `'${str}'`;
2123

2224
let isLiteral = str => (/^('|")/).test(str.trim());
2325

@@ -26,10 +28,11 @@ let isLiteral = str => (/^('|")/).test(str.trim());
2628
*
2729
* @param {ComponentMetadata|PropMetadata} obj
2830
*/
29-
function parseDoclets(obj) {
30-
obj.doclets = metadata.parseDoclets(obj.desc || '') || {};
31-
obj.desc = cleanDoclets(obj.desc || '');
32-
obj.descHtml = marked(obj.desc || '');
31+
function parseDoclets(obj, propName) {
32+
let desc = obj.desc || defaultDescriptions[propName] || '';
33+
obj.doclets = metadata.parseDoclets(desc) || {};
34+
obj.desc = cleanDoclets(desc);
35+
obj.descHtml = marked(desc);
3336
}
3437

3538
/**
@@ -61,7 +64,7 @@ function applyPropDoclets(props, propName) {
6164

6265
// Use @required to mark a prop as required
6366
// useful for custom propTypes where there isn't a `.isRequired` addon
64-
if ( doclets.required) {
67+
if (doclets.required) {
6568
prop.required = true;
6669
}
6770

@@ -71,27 +74,71 @@ function applyPropDoclets(props, propName) {
7174
}
7275
}
7376

77+
function addBootstrapPropTypes(Component, componentData) {
78+
let propTypes = Component.propTypes || {};
79+
let defaultProps = Component.defaultProps || {};
80+
81+
function bsPropInfo(propName) {
82+
let props = componentData.props;
83+
let prop = propTypes[propName];
84+
85+
if (prop && !props[propName]) {
86+
let values = prop._values || [];
87+
88+
props[propName] = {
89+
desc: '',
90+
defaultValue: quote(defaultProps[propName]),
91+
type: {
92+
name: 'enum',
93+
value: values.map( v => `"${v}"`),
94+
}
95+
};
96+
}
97+
}
98+
99+
bsPropInfo('bsStyle');
100+
bsPropInfo('bsSize');
101+
102+
if (propTypes.bsClass) {
103+
componentData.props.bsClass = {
104+
desc: '',
105+
defaultValue: quote(defaultProps.bsClass),
106+
type: { name: 'string' }
107+
};
108+
}
109+
}
74110

75111
export default function generate(destination, options = { mixins: true, inferComponent: true }) {
76112
return globp(__dirname + '/../src/**/*.js') // eslint-disable-line no-path-concat
77113
.then( files => {
78114
let results = files.map(
79-
filename => fsp.readFile(filename).then(content => metadata(content, options)) );
115+
filename => fsp.readFile(filename).then(content => metadata(content, options)));
80116

81117
return Promise.all(results)
82118
.then( data => {
83119
let result = {};
84120

85121
data.forEach(components => {
86122
Object.keys(components).forEach(key => {
123+
let Component;
124+
125+
try {
126+
// require the actual component to inspect props we can only get a runtime
127+
Component = require('../src/' + key);
128+
} catch (e) {} //eslint-disable-line
129+
87130
const component = components[key];
88131

132+
if (Component) {
133+
addBootstrapPropTypes(Component, component);
134+
}
135+
89136
parseDoclets(component);
90137

91138
Object.keys(component.props).forEach( propName => {
92139
const prop = component.props[propName];
93140

94-
parseDoclets(prop);
141+
parseDoclets(prop, propName);
95142
applyPropDoclets(component.props, propName);
96143
});
97144
});

docs/src/ComponentsPage.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -225,16 +225,17 @@ const ComponentsPage = React.createClass({
225225
<h1 className="page-header"><Anchor id="menu-item">Menu Item</Anchor> <small> MenuItem</small></h1>
226226
<p>This is a component used in other components (see <a href="buttons">Buttons</a>, <a href="#navbars">Navbars</a>).</p>
227227
<p>It supports the basic anchor properties <code>href</code>, <code>target</code>, <code>title</code>.</p>
228-
<p>It also supports different properties of the normal Bootstrap MenuItem.
229-
<ul>
230-
<li><code>header</code>: To add a header label to sections</li>
231-
<li><code>divider</code>: Adds an horizontal divider between sections</li>
232-
<li><code>disabled</code>: shows the item as disabled, and prevents the onclick</li>
233-
<li><code>eventKey</code>: passed to the callback</li>
234-
<li><code>onSelect</code>: a callback that is called when the user clicks the item.</li>
235-
</ul>
236-
<p>The callback is called with the following arguments: <code>eventKey</code>, <code>href</code> and <code>target</code></p>
228+
<p>
229+
It also supports different properties of the normal Bootstrap MenuItem.
237230
</p>
231+
<ul>
232+
<li><code>header</code>: To add a header label to sections</li>
233+
<li><code>divider</code>: Adds an horizontal divider between sections</li>
234+
<li><code>disabled</code>: shows the item as disabled, and prevents the onclick</li>
235+
<li><code>eventKey</code>: passed to the callback</li>
236+
<li><code>onSelect</code>: a callback that is called when the user clicks the item.</li>
237+
</ul>
238+
<p>The callback is called with the following arguments: <code>eventKey</code>, <code>href</code> and <code>target</code></p>
238239
<ReactPlayground codeText={Samples.MenuItem} />
239240

240241
<h3><Anchor id="menu-item-props">Props</Anchor></h3>

docs/src/PropTable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const PropTable = React.createClass({
4545
render() {
4646
let propsData = this.propsData;
4747

48-
if ( !Object.keys(propsData).length) {
48+
if (!Object.keys(propsData).length) {
4949
return <span/>;
5050
}
5151

docs/src/defaultPropDescriptions.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
export default {
3+
bsClass: 'Base css class name and prefix for the Component. Generally one should only change `bsClass` ' +
4+
'if they are providing new, non bootstrap, css styles for a component.',
5+
bsStyle: 'Component visual or contextual style variants.',
6+
bsSize: 'Component size variations.'
7+
};

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"babel-core": "^5.8.25",
4949
"babel-eslint": "^4.1.3",
5050
"babel-loader": "^5.3.2",
51+
"babel-plugin-object-assign": "^1.2.1",
5152
"bootstrap": "^3.3.5",
5253
"brfs": "^1.4.1",
5354
"chai": "^3.3.0",
@@ -116,11 +117,12 @@
116117
"babel-runtime": "^5.8.25",
117118
"classnames": "^2.1.5",
118119
"dom-helpers": "^2.4.0",
120+
"invariant": "^2.1.2",
119121
"keycode": "^2.1.0",
120122
"lodash-compat": "^3.10.1",
121123
"react-overlays": "^0.5.0",
122-
"uncontrollable": "^3.1.3",
123124
"react-prop-types": "^0.3.0",
125+
"uncontrollable": "^3.1.3",
124126
"warning": "^2.1.0"
125127
},
126128
"release-script": {

src/Alert.js

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React from 'react';
22
import classNames from 'classnames';
3-
import BootstrapMixin from './BootstrapMixin';
3+
import bootstrapUtils, { bsStyles, bsClass } from './utils/bootstrapUtils';
4+
import { State } from './styleMaps';
45

5-
const Alert = React.createClass({
6-
mixins: [BootstrapMixin],
6+
let Alert = React.createClass({
77

88
propTypes: {
99
onDismiss: React.PropTypes.func,
@@ -13,8 +13,6 @@ const Alert = React.createClass({
1313

1414
getDefaultProps() {
1515
return {
16-
bsClass: 'alert',
17-
bsStyle: 'info',
1816
closeLabel: 'Close Alert'
1917
};
2018
},
@@ -43,10 +41,10 @@ const Alert = React.createClass({
4341
},
4442

4543
render() {
46-
let classes = this.getBsClassSet();
44+
let classes = bootstrapUtils.getClassSet(this.props);
4745
let isDismissable = !!this.props.onDismiss;
4846

49-
classes['alert-dismissable'] = isDismissable;
47+
classes[bootstrapUtils.prefix(this.props, 'dismissable')] = isDismissable;
5048

5149
return (
5250
<div {...this.props} role="alert" className={classNames(this.props.className, classes)}>
@@ -68,4 +66,7 @@ const Alert = React.createClass({
6866
}
6967
});
7068

71-
export default Alert;
69+
70+
export default bsStyles(State.values(), State.INFO,
71+
bsClass('alert', Alert)
72+
);

src/Badge.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import ValidComponentChildren from './utils/ValidComponentChildren';
33
import classNames from 'classnames';
4-
4+
import tbsUtils from './utils/bootstrapUtils';
55

66
const Badge = React.createClass({
77
propTypes: {
@@ -10,7 +10,8 @@ const Badge = React.createClass({
1010

1111
getDefaultProps() {
1212
return {
13-
pullRight: false
13+
pullRight: false,
14+
bsClass: 'badge'
1415
};
1516
},
1617

@@ -24,7 +25,7 @@ const Badge = React.createClass({
2425
render() {
2526
let classes = {
2627
'pull-right': this.props.pullRight,
27-
'badge': this.hasContent()
28+
[tbsUtils.prefix(this.props)]: this.hasContent()
2829
};
2930
return (
3031
<span

src/BootstrapMixin.js

-55
This file was deleted.

src/Button.js

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
import React from 'react';
22
import classNames from 'classnames';
3-
import BootstrapMixin from './BootstrapMixin';
43
import elementType from 'react-prop-types/lib/elementType';
54

65
const types = ['button', 'reset', 'submit'];
76

8-
const Button = React.createClass({
9-
mixins: [BootstrapMixin],
7+
import bootstrapUtils, { bsStyles, bsSizes, bsClass } from './utils/bootstrapUtils';
8+
import { Sizes, State, DEFAULT, PRIMARY, LINK } from './styleMaps';
9+
10+
const ButtonStyles = State.values().concat(DEFAULT, PRIMARY, LINK);
11+
12+
let Button = React.createClass({
1013

1114
propTypes: {
1215
active: React.PropTypes.bool,
@@ -32,21 +35,21 @@ const Button = React.createClass({
3235
return {
3336
active: false,
3437
block: false,
35-
bsClass: 'button',
36-
bsStyle: 'default',
3738
disabled: false,
3839
navItem: false,
3940
navDropdown: false
4041
};
4142
},
4243

4344
render() {
44-
let classes = this.props.navDropdown ? {} : this.getBsClassSet();
45+
let classes = this.props.navDropdown ? {} : bootstrapUtils.getClassSet(this.props);
4546
let renderFuncName;
4647

48+
let blockClass = bootstrapUtils.prefix(this.props, 'block');
49+
4750
classes = {
4851
active: this.props.active,
49-
'btn-block': this.props.block,
52+
[blockClass]: this.props.block,
5053
...classes
5154
};
5255

@@ -104,4 +107,8 @@ const Button = React.createClass({
104107

105108
Button.types = types;
106109

107-
export default Button;
110+
export default bsStyles(ButtonStyles, DEFAULT,
111+
bsSizes([Sizes.LARGE, Sizes.SMALL, Sizes.XSMALL],
112+
bsClass('btn', Button)
113+
)
114+
);

0 commit comments

Comments
 (0)