fixed code style problems.

This commit is contained in:
Nelson, Joe 2017-05-18 15:23:40 -07:00
parent 2ba6511389
commit cd3ab0fbad
3 changed files with 157 additions and 149 deletions

View File

@ -44,7 +44,12 @@ export default class PropTable extends React.Component {
? type.__docgenInfo.props[property].description ? type.__docgenInfo.props[property].description
: null; : null;
if (propType === 'other') { if (propType === 'other') {
if (type.__docgenInfo && type.__docgenInfo.props && type.__docgenInfo.props[property] && type.__docgenInfo.props[property].type) { if (
type.__docgenInfo &&
type.__docgenInfo.props &&
type.__docgenInfo.props[property] &&
type.__docgenInfo.props[property].type
) {
propType = type.__docgenInfo.props[property].type.name; propType = type.__docgenInfo.props[property].type.name;
} }
} }

View File

@ -1,119 +1,119 @@
import React from 'react' import React from 'react';
import createFragment from 'react-addons-create-fragment' import createFragment from 'react-addons-create-fragment';
const valueStyles = { const valueStyles = {
func: { func: {
color: '#170' color: '#170',
}, },
attr: { attr: {
color: '#666' color: '#666',
}, },
object: { object: {
color: '#666' color: '#666',
}, },
array: { array: {
color: '#666' color: '#666',
}, },
number: { number: {
color: '#a11' color: '#a11',
}, },
string: { string: {
color: '#22a', color: '#22a',
wordBreak: 'break-word' wordBreak: 'break-word',
}, },
bool: { bool: {
color: '#a11' color: '#a11',
}, },
empty: { empty: {
color: '#777' color: '#777',
} },
} };
function previewArray(val) { function previewArray(val) {
const items = {} const items = {};
val.slice(0, 3).forEach((item, i) => { val.slice(0, 3).forEach((item, i) => {
items[`n${i}`] = <PropVal val={item} /> items[`n${i}`] = <PropVal val={item} />;
items[`c${i}`] = ', ' items[`c${i}`] = ', ';
}) });
if (val.length > 3) { if (val.length > 3) {
items.last = '…' items.last = '…';
} else { } else {
delete items[`c${val.length - 1}`] delete items[`c${val.length - 1}`];
} }
return ( return (
<span style={valueStyles.array}> <span style={valueStyles.array}>
[{createFragment(items)}] [{createFragment(items)}]
</span> </span>
) );
} }
function previewObject(val) { function previewObject(val) {
const names = Object.keys(val) const names = Object.keys(val);
const items = {} const items = {};
names.slice(0, 3).forEach((name, i) => { names.slice(0, 3).forEach((name, i) => {
items[`k${i}`] = <span style={valueStyles.attr}>{name}</span> items[`k${i}`] = <span style={valueStyles.attr}>{name}</span>;
items[`c${i}`] = ': ' items[`c${i}`] = ': ';
items[`v${i}`] = <PropVal val={val[name]} /> items[`v${i}`] = <PropVal val={val[name]} />;
items[`m${i}`] = ', ' items[`m${i}`] = ', ';
}) });
if (names.length > 3) { if (names.length > 3) {
items.rest = '…' items.rest = '…';
} else { } else {
delete items[`m${names.length - 1}`] delete items[`m${names.length - 1}`];
} }
return ( return (
<span style={valueStyles.object}> <span style={valueStyles.object}>
{'{'}{createFragment(items)}{'}'} {'{'}{createFragment(items)}{'}'}
</span> </span>
) );
} }
function previewProp(val) { function previewProp(val) {
let braceWrap = true let braceWrap = true;
let content = null let content = null;
if (typeof val === 'number') { if (typeof val === 'number') {
content = <span style={valueStyles.number}>{val}</span> content = <span style={valueStyles.number}>{val}</span>;
} else if (typeof val === 'string') { } else if (typeof val === 'string') {
if (val.length > 50) { if (val.length > 50) {
val = `${val.slice(0, 50)}` val = `${val.slice(0, 50)}`;
} }
content = <span style={valueStyles.string}>"{val}"</span> content = <span style={valueStyles.string}>"{val}"</span>;
braceWrap = false braceWrap = false;
} else if (typeof val === 'boolean') { } else if (typeof val === 'boolean') {
content = <span style={valueStyles.bool}>{`${val}`}</span> content = <span style={valueStyles.bool}>{`${val}`}</span>;
} else if (Array.isArray(val)) { } else if (Array.isArray(val)) {
content = previewArray(val) content = previewArray(val);
} else if (typeof val === 'function') { } else if (typeof val === 'function') {
content = <span style={valueStyles.func}>{val.name ? `${val.name}()` : 'anonymous()'}</span> content = <span style={valueStyles.func}>{val.name ? `${val.name}()` : 'anonymous()'}</span>;
} else if (!val) { } else if (!val) {
content = <span style={valueStyles.empty}>{`${val}`}</span> content = <span style={valueStyles.empty}>{`${val}`}</span>;
} else if (typeof val !== 'object') { } else if (typeof val !== 'object') {
content = <span></span> content = <span></span>;
} else if (React.isValidElement(val)) { } else if (React.isValidElement(val)) {
content = ( content = (
<span style={valueStyles.object}> <span style={valueStyles.object}>
{`<${val.type.displayName || val.type.name || val.type} />`} {`<${val.type.displayName || val.type.name || val.type} />`}
</span> </span>
) );
} else { } else {
content = previewObject(val) content = previewObject(val);
} }
if (!braceWrap) return content if (!braceWrap) return content;
return <span>{content}</span> return <span>{content}</span>;
} }
export default class PropVal extends React.Component { export default class PropVal extends React.Component {
render() { render() {
return previewProp(this.props.val) return previewProp(this.props.val);
} }
} }
module.exports = PropVal module.exports = PropVal;

View File

@ -1,10 +1,10 @@
import PropTypes from 'prop-types' import PropTypes from 'prop-types';
import React from 'react' import React from 'react';
import MTRC from 'markdown-to-react-components' import MTRC from 'markdown-to-react-components';
import PropTable from './PropTable' import PropTable from './PropTable';
import Node from './Node' import Node from './Node';
import { baseFonts } from './theme' import { baseFonts } from './theme';
import { Pre } from './markdown' import { Pre } from './markdown';
const stylesheet = { const stylesheet = {
link: { link: {
@ -17,13 +17,13 @@ const stylesheet = {
background: '#28c', background: '#28c',
color: '#fff', color: '#fff',
padding: '5px 15px', padding: '5px 15px',
cursor: 'pointer' cursor: 'pointer',
}, },
topRight: { topRight: {
top: 0, top: 0,
right: 0, right: 0,
borderRadius: '0 0 0 5px' borderRadius: '0 0 0 5px',
} },
}, },
info: { info: {
position: 'fixed', position: 'fixed',
@ -33,70 +33,70 @@ const stylesheet = {
left: 0, left: 0,
right: 0, right: 0,
padding: '0 40px', padding: '0 40px',
overflow: 'auto' overflow: 'auto',
}, },
children: { children: {
position: 'relative', position: 'relative',
zIndex: 0 zIndex: 0,
}, },
infoBody: { infoBody: {
...baseFonts, ...baseFonts,
fontWeight: 300, fontWeight: 300,
lineHeight: 1.45, lineHeight: 1.45,
fontSize: '15px' fontSize: '15px',
}, },
infoContent: { infoContent: {
marginBottom: 0 marginBottom: 0,
}, },
jsxInfoContent: { jsxInfoContent: {
borderTop: '1px solid #eee', borderTop: '1px solid #eee',
margin: '20px 0 0 0' margin: '20px 0 0 0',
}, },
header: { header: {
h1: { h1: {
margin: 0, margin: 0,
padding: 0, padding: 0,
fontSize: '35px' fontSize: '35px',
}, },
h2: { h2: {
margin: '0 0 10px 0', margin: '0 0 10px 0',
padding: 0, padding: 0,
fontWeight: 400, fontWeight: 400,
fontSize: '22px' fontSize: '22px',
}, },
body: { body: {
borderBottom: '1px solid #eee', borderBottom: '1px solid #eee',
paddingTop: 10, paddingTop: 10,
marginBottom: 10 marginBottom: 10,
} },
}, },
source: { source: {
h1: { h1: {
margin: '20px 0 0 0', margin: '20px 0 0 0',
padding: '0 0 5px 0', padding: '0 0 5px 0',
fontSize: '25px', fontSize: '25px',
borderBottom: '1px solid #EEE' borderBottom: '1px solid #EEE',
} },
}, },
propTableHead: { propTableHead: {
margin: '20px 0 0 0' margin: '20px 0 0 0',
} },
} };
export default class Story extends React.Component { export default class Story extends React.Component {
constructor(...args) { constructor(...args) {
super(...args) super(...args);
this.state = { this.state = {
open: false, open: false,
stylesheet: this.props.styles(JSON.parse(JSON.stringify(stylesheet))) stylesheet: this.props.styles(JSON.parse(JSON.stringify(stylesheet))),
} };
MTRC.configure(this.props.mtrcConf) MTRC.configure(this.props.mtrcConf);
} }
componentWillReceiveProps(nextProps) { componentWillReceiveProps(nextProps) {
this.setState({ this.setState({
stylesheet: nextProps.styles(JSON.parse(JSON.stringify(stylesheet))) stylesheet: nextProps.styles(JSON.parse(JSON.stringify(stylesheet))),
}) });
} }
_renderStory() { _renderStory() {
@ -104,7 +104,7 @@ export default class Story extends React.Component {
<div> <div>
{this.props.children} {this.props.children}
</div> </div>
) );
} }
_renderInline() { _renderInline() {
@ -127,29 +127,29 @@ export default class Story extends React.Component {
</div> </div>
</div> </div>
</div> </div>
) );
} }
_renderOverlay() { _renderOverlay() {
const linkStyle = { const linkStyle = {
...stylesheet.link.base, ...stylesheet.link.base,
...stylesheet.link.topRight ...stylesheet.link.topRight,
} };
const infoStyle = Object.assign({}, stylesheet.info) const infoStyle = Object.assign({}, stylesheet.info);
if (!this.state.open) { if (!this.state.open) {
infoStyle.display = 'none' infoStyle.display = 'none';
} }
const openOverlay = () => { const openOverlay = () => {
this.setState({ open: true }) this.setState({ open: true });
return false return false;
} };
const closeOverlay = () => { const closeOverlay = () => {
this.setState({ open: false }) this.setState({ open: false });
return false return false;
} };
return ( return (
<div> <div>
@ -170,12 +170,12 @@ export default class Story extends React.Component {
</div> </div>
</div> </div>
</div> </div>
) );
} }
_getInfoHeader() { _getInfoHeader() {
if (!this.props.context || !this.props.showHeader) { if (!this.props.context || !this.props.showHeader) {
return null return null;
} }
return ( return (
@ -183,12 +183,12 @@ export default class Story extends React.Component {
<h1 style={this.state.stylesheet.header.h1}>{this.props.context.kind}</h1> <h1 style={this.state.stylesheet.header.h1}>{this.props.context.kind}</h1>
<h2 style={this.state.stylesheet.header.h2}>{this.props.context.story}</h2> <h2 style={this.state.stylesheet.header.h2}>{this.props.context.story}</h2>
</div> </div>
) );
} }
_getInfoContent() { _getInfoContent() {
if (!this.props.info) { if (!this.props.info) {
return '' return '';
} }
if (React.isValidElement(this.props.info)) { if (React.isValidElement(this.props.info)) {
@ -196,28 +196,28 @@ export default class Story extends React.Component {
<div style={this.props.showInline ? stylesheet.jsxInfoContent : stylesheet.infoContent}> <div style={this.props.showInline ? stylesheet.jsxInfoContent : stylesheet.infoContent}>
{this.props.info} {this.props.info}
</div> </div>
) );
} }
const lines = this.props.info.split('\n') const lines = this.props.info.split('\n');
while (lines[0].trim() === '') { while (lines[0].trim() === '') {
lines.shift() lines.shift();
} }
let padding = 0 let padding = 0;
const matches = lines[0].match(/^ */) const matches = lines[0].match(/^ */);
if (matches) { if (matches) {
padding = matches[0].length padding = matches[0].length;
} }
const source = lines.map(s => s.slice(padding)).join('\n') const source = lines.map(s => s.slice(padding)).join('\n');
return ( return (
<div style={this.state.stylesheet.infoContent}> <div style={this.state.stylesheet.infoContent}>
{MTRC(source).tree} {MTRC(source).tree}
</div> </div>
) );
} }
_getComponentDescription() { _getComponentDescription() {
let retDiv = null let retDiv = null;
if (Object.keys(STORYBOOK_REACT_CLASSES).length) { if (Object.keys(STORYBOOK_REACT_CLASSES).length) {
Object.keys(STORYBOOK_REACT_CLASSES).forEach((key, index) => { Object.keys(STORYBOOK_REACT_CLASSES).forEach((key, index) => {
@ -226,17 +226,17 @@ export default class Story extends React.Component {
<div> <div>
{STORYBOOK_REACT_CLASSES[key].docgenInfo.description} {STORYBOOK_REACT_CLASSES[key].docgenInfo.description}
</div> </div>
) );
} }
}) });
} }
return retDiv return retDiv;
} }
_getSourceCode() { _getSourceCode() {
if (!this.props.showSource) { if (!this.props.showSource) {
return null return null;
} }
return ( return (
@ -248,53 +248,56 @@ export default class Story extends React.Component {
))} ))}
</Pre> </Pre>
</div> </div>
) );
} }
_getPropTables() { _getPropTables() {
const types = new Map() const types = new Map();
if (this.props.propTables === null) { if (this.props.propTables === null) {
return null return null;
} }
if (!this.props.children) { if (!this.props.children) {
return null return null;
} }
if (this.props.propTables) { if (this.props.propTables) {
this.props.propTables.forEach(type => { this.props.propTables.forEach(type => {
types.set(type, true) types.set(type, true);
}) });
} }
// depth-first traverse and collect types // depth-first traverse and collect types
const extract = children => { const extract = children => {
if (!children) { if (!children) {
return return;
} }
if (Array.isArray(children)) { if (Array.isArray(children)) {
children.forEach(extract) children.forEach(extract);
return return;
} }
if (children.props && children.props.children) { if (children.props && children.props.children) {
extract(children.props.children) extract(children.props.children);
} }
if (typeof children === 'string' || typeof children.type === 'string' || if (
typeof children === 'string' ||
typeof children.type === 'string' ||
(Array.isArray(this.props.propTablesExclude) && // also ignore excluded types (Array.isArray(this.props.propTablesExclude) && // also ignore excluded types
~this.props.propTablesExclude.indexOf(children.type))) { ~this.props.propTablesExclude.indexOf(children.type))
return ) {
return;
} }
if (children.type && !types.has(children.type)) { if (children.type && !types.has(children.type)) {
types.set(children.type, true) types.set(children.type, true);
}
} }
};
// extract components from children // extract components from children
extract(this.props.children) extract(this.props.children);
const array = Array.from(types.keys()) const array = Array.from(types.keys());
array.sort((a, b) => (a.displayName || a.name) > (b.displayName || b.name)) array.sort((a, b) => (a.displayName || a.name) > (b.displayName || b.name));
const propTables = array.map((type, idx) => ( const propTables = array.map((type, idx) => (
<div key={idx}> <div key={idx}>
@ -303,10 +306,10 @@ export default class Story extends React.Component {
</h2> </h2>
<PropTable type={type} /> <PropTable type={type} />
</div> </div>
)) ));
if (!propTables || propTables.length === 0) { if (!propTables || propTables.length === 0) {
return null return null;
} }
return ( return (
@ -314,19 +317,19 @@ export default class Story extends React.Component {
<h1 style={this.state.stylesheet.source.h1}>Prop Types</h1> <h1 style={this.state.stylesheet.source.h1}>Prop Types</h1>
{propTables} {propTables}
</div> </div>
) );
} }
render() { render() {
if (this.props.showInline) { if (this.props.showInline) {
return this._renderInline() return this._renderInline();
} }
return this._renderOverlay() return this._renderOverlay();
} }
} }
Story.displayName = 'Story' Story.displayName = 'Story';
Story.propTypes = { Story.propTypes = {
context: PropTypes.object, context: PropTypes.object,
info: PropTypes.oneOfType([PropTypes.string, PropTypes.node]), info: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
@ -337,12 +340,12 @@ Story.propTypes = {
showSource: PropTypes.bool, showSource: PropTypes.bool,
styles: PropTypes.func.isRequired, styles: PropTypes.func.isRequired,
children: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), children: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
mtrcConf: PropTypes.object mtrcConf: PropTypes.object,
} };
Story.defaultProps = { Story.defaultProps = {
showInline: false, showInline: false,
showHeader: true, showHeader: true,
showSource: true, showSource: true,
mtrcConf: {} mtrcConf: {},
} };