UNPKG

carbon-react

Version:

A library of reusable React components and an interface for easily building user interfaces based on Flux.

251 lines (204 loc) • 7.05 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _react2 = require('react'); var _react3 = _interopRequireDefault(_react2); var _babelTransform = require('livereactload/babel-transform'); var _babelTransform2 = _interopRequireDefault(_babelTransform); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _class, _temp; var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames); var _tags = require('../../utils/helpers/tags'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var _components = { Content: { displayName: 'Content' } }; var _livereactloadBabelTransform2 = (0, _babelTransform2.default)({ filename: 'src/components/content/content.js', components: _components, locals: [], imports: [_react3.default] }); function _wrapComponent(id) { return function (Component) { return _livereactloadBabelTransform2(Component, id); }; } /** * Renders content with a title and body text. * * @class Content * @constructor */ var Content = _wrapComponent('Content')((_temp = _class = function (_React$Component) { _inherits(Content, _React$Component); function Content(args) { _classCallCheck(this, Content); var _this = _possibleConstructorReturn(this, (Content.__proto__ || Object.getPrototypeOf(Content)).call(this, args)); _this.titleStyle = _this.titleStyle.bind(_this); _this.bodyStyle = _this.bodyStyle.bind(_this); _this.classes = _this.classes.bind(_this); return _this; } /** * @method render * @return {Object} JSX */ _createClass(Content, [{ key: 'render', value: function render() { if (this.props.children) { return _react3.default.createElement( 'div', _extends({ className: this.classes() }, (0, _tags.tagComponent)('content', this.props)), _react3.default.createElement( 'div', { className: 'carbon-content__title', 'data-element': 'title', style: this.titleStyle() }, this.props.title ), _react3.default.createElement( 'div', { className: 'carbon-content__body', 'data-element': 'body', style: this.bodyStyle() }, this.props.children ) ); } return null; } /** * Returns the HTML classes for the component. * * @method * @return {String} */ }, { key: 'classes', value: function classes() { return (0, _classnames2.default)('carbon-content', this.props.className, 'carbon-content--' + this.props.as, 'carbon-content--align-' + this.props.align, { 'carbon-content--inline': this.props.inline, 'carbon-content--body-full-width': this.props.bodyFullWidth }); } /** * Returns styling for the title element. * * @method titleStyle * @return {Object} */ }, { key: 'titleStyle', value: function titleStyle() { var style = {}; if (this.props.titleWidth) { style.width = 'calc(' + this.props.titleWidth + '% - 30px)'; } return style; } /** * Returns styling for the body element. * * @method bodyStyle * @return {Object} */ }, { key: 'bodyStyle', value: function bodyStyle() { var style = {}; if (this.props.titleWidth) { style.width = 100 - Number(this.props.titleWidth) + '%'; } if (this.props.bodyFullWidth) { style.width = '100%'; } return style; } }]); return Content; }(_react3.default.Component), _class.propTypes = { /** * The body of the content component. * * @property children * @type {Object} */ children: _propTypes2.default.node, /** * Custom className * * @property className * @type {String} */ className: _propTypes2.default.string, /** * The title of the content component. * * @property title * @type {String} */ title: _propTypes2.default.string, /** * Applies a theme to the Content * Value: primary, secondary * * @property as * @type {String} * @default primary */ as: _propTypes2.default.string, /** * Displays the content inline with it's title. * * @property inline * @type {Boolean} * @default false */ inline: _propTypes2.default.bool, /** * Aligns the content (left, center or right). * * @property align * @type {String} * @default left */ align: _propTypes2.default.string, /** * Sets a custom width for the title element. * * @property titleWidth * @type {String} */ titleWidth: _propTypes2.default.string, /** * Over-rides the calculation of body width based on titleWidth * Sometimes we need the body to be full width while keeping a title width similar to other widths * * @property bodyFullWidth * @type {Boolean} * @default false */ bodyFullWidth: _propTypes2.default.bool }, _class.defaultProps = { align: 'left', as: 'primary', bodyFullWidth: false, inline: false }, _temp)); exports.default = Content;