mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:41:07 +08:00
69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
import { Prism } from 'global';
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export class Code extends React.Component {
|
|
componentDidMount() {
|
|
this.highlight();
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.highlight();
|
|
}
|
|
|
|
highlight() {
|
|
if (typeof Prism !== 'undefined') {
|
|
Prism.highlightAll();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const codeStyle = {
|
|
fontFamily: 'Menlo, Monaco, "Courier New", monospace',
|
|
backgroundColor: '#fafafa',
|
|
};
|
|
|
|
const preStyle = {
|
|
fontFamily: 'Menlo, Monaco, "Courier New", monospace',
|
|
backgroundColor: '#fafafa',
|
|
padding: '.5rem',
|
|
lineHeight: 1.5,
|
|
overflowX: 'scroll',
|
|
};
|
|
|
|
const className = this.props.language ? `language-${this.props.language}` : '';
|
|
|
|
return (
|
|
<pre style={preStyle} className={className}>
|
|
<code style={codeStyle} className={className}>
|
|
{this.props.code}
|
|
</code>
|
|
</pre>
|
|
);
|
|
}
|
|
}
|
|
|
|
Code.propTypes = {
|
|
language: PropTypes.string,
|
|
code: PropTypes.node,
|
|
};
|
|
Code.defaultProps = {
|
|
language: null,
|
|
code: null,
|
|
};
|
|
|
|
export function Blockquote(props) {
|
|
const style = {
|
|
fontSize: '1.88em',
|
|
fontFamily: 'Menlo, Monaco, "Courier New", monospace',
|
|
borderLeft: '8px solid #fafafa',
|
|
padding: '1rem',
|
|
};
|
|
return <blockquote style={style}>{props.children}</blockquote>;
|
|
}
|
|
|
|
Blockquote.propTypes = { children: PropTypes.node };
|
|
Blockquote.defaultProps = { children: null };
|
|
|
|
export { default as Pre } from './pre/pre';
|