UNPKG

kitchensink

Version:

Dispatch's awesome components and style guide

103 lines (84 loc) 4.2 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); 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 _react = require('react'); var _react2 = _interopRequireDefault(_react); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _styles = require('../styles'); var _styles2 = _interopRequireDefault(_styles); 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 ColorStyleDisplay = function (_React$Component) { _inherits(ColorStyleDisplay, _React$Component); function ColorStyleDisplay() { _classCallCheck(this, ColorStyleDisplay); return _possibleConstructorReturn(this, (ColorStyleDisplay.__proto__ || Object.getPrototypeOf(ColorStyleDisplay)).apply(this, arguments)); } _createClass(ColorStyleDisplay, [{ key: 'render', value: function render() { var colorFlanderBoxStyles = Object.assign({ backgroundColor: this.props.color }, ColorStyleDisplay.colorFlanderBoxStyles); return _react2.default.createElement( 'div', { style: ColorStyleDisplay.boxStyles }, _react2.default.createElement('div', { style: colorFlanderBoxStyles }), _react2.default.createElement( 'div', { style: ColorStyleDisplay.labelWrapperStyles }, _react2.default.createElement( 'div', { style: ColorStyleDisplay.labelNameStyles }, this.props.name ), _react2.default.createElement( 'div', { style: ColorStyleDisplay.labelValueStyles }, this.props.color ) ) ); } }]); return ColorStyleDisplay; }(_react2.default.Component); ColorStyleDisplay.propTypes = { color: _propTypes2.default.string, name: _propTypes2.default.string }; ColorStyleDisplay.boxStyles = { flex: 'none', width: _styles2.default.padding.five, height: _styles2.default.padding.five, marginBottom: _styles2.default.padding.default, marginRight: _styles2.default.padding.default, backgroundColor: 'white', border: _styles2.default.border.default, borderRadius: _styles2.default.border.radius }; ColorStyleDisplay.colorFlanderBoxStyles = { display: 'inline-block', float: 'left', height: '60%', width: '100%' }; ColorStyleDisplay.labelNameStyles = { fontWeight: _styles2.default.font.weight.boldSemi, lineHeight: _styles2.default.font.lineHeight.loose }; ColorStyleDisplay.labelValueStyles = { color: '#969799' }; ColorStyleDisplay.labelWrapperStyles = { display: 'inline-block', float: 'left', height: '40%', width: '100%', padding: _styles2.default.padding.quarter, fontSize: _styles2.default.font.size.small }; exports.default = ColorStyleDisplay;