docusaurus/packages/docusaurus-1.x/lib/core/Container.js
Yangshun Tay 32c1a92b17
chore: yearless copyright headers for source code (#2320)
* chore: yearless copyright headers for source code

* update snapshots
2020-02-25 23:12:28 +08:00

44 lines
1.3 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
const React = require('react');
const classNames = require('classnames');
class Container extends React.Component {
render() {
const containerClasses = classNames('container', this.props.className, {
darkBackground: this.props.background === 'dark',
highlightBackground: this.props.background === 'highlight',
lightBackground: this.props.background === 'light',
paddingAll: this.props.padding.indexOf('all') >= 0,
paddingBottom: this.props.padding.indexOf('bottom') >= 0,
paddingLeft: this.props.padding.indexOf('left') >= 0,
paddingRight: this.props.padding.indexOf('right') >= 0,
paddingTop: this.props.padding.indexOf('top') >= 0,
});
let wrappedChildren;
if (this.props.wrapper) {
wrappedChildren = <div className="wrapper">{this.props.children}</div>;
} else {
wrappedChildren = this.props.children;
}
return (
<div className={containerClasses} id={this.props.id}>
{wrappedChildren}
</div>
);
}
}
Container.defaultProps = {
background: null,
padding: [],
wrapper: true,
};
module.exports = Container;