@pubsweet/ui
Version:
React component library for use in pubsweet apps
51 lines (37 loc) • 2.76 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _react = _interopRequireDefault(require("react"));
var _styledComponents = require("styled-components");
var _recompose = require("recompose");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _extends() { _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; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
var Colorize = function Colorize(Component) {
var Colorized = function Colorized(_ref) {
var primary = _ref.primary,
secondary = _ref.secondary,
warning = _ref.warning,
furniture = _ref.furniture,
success = _ref.success,
error = _ref.error,
reverse = _ref.reverse,
placeholder = _ref.placeholder,
_ref$theme = _ref.theme,
theme = _ref$theme === void 0 ? {} : _ref$theme,
props = _objectWithoutProperties(_ref, ["primary", "secondary", "warning", "furniture", "success", "error", "reverse", "placeholder", "theme"]);
var color = primary && theme.colorPrimary || secondary && theme.colorSecondary || furniture && theme.colorFurniture || warning && theme.colorWarning || success && theme.colorSuccess || error && theme.colorError || reverse && theme.colorTextReverse || placeholder && theme.colorTextPlaceholder || theme.colorText;
return /*#__PURE__*/_react["default"].createElement(Component, _extends({
color: color,
theme: theme
}, props));
};
Colorized.propTypes = Object.assign({}, Component.propTypes);
return Colorized;
};
/** @component */
var _default = (0, _recompose.compose)(_styledComponents.withTheme, Colorize);
exports["default"] = _default;