@catho/quantum
Version:
Catho react components
65 lines (64 loc) • 5.07 kB
JavaScript
;
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _propTypes = _interopRequireDefault(require("prop-types"));
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _theme = require("../../shared/theme");
var _excluded = ["active", "theme"];
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.indexOf(n) >= 0) continue; t[n] = r[n]; } return t; }
var PageButton = _styledComponents["default"].a.attrs(function (_ref) {
var active = _ref.active,
theme = _ref.theme,
rest = _objectWithoutProperties(_ref, _excluded);
return _objectSpread({
active: !!active,
theme: _objectSpread({
baseFontSize: _theme.baseFontSize,
colors: _theme.colors,
spacing: _theme.spacing
}, theme)
}, rest);
}).withConfig({
displayName: "PageButton",
componentId: "sc-1ou28ey-0"
})(["font-weight:bold;align-items:center;border-radius:10px;box-sizing:border-box;cursor:pointer;display:flex;justify-content:center;min-height:40px;min-width:40px;outline:none;text-decoration:none;transition:background-color 0.2s ease-in-out,border-color 0.2s ease-in-out,color 0.2s ease-in-out;user-select:none;", ""], function (_ref2) {
var active = _ref2.active,
_ref2$theme = _ref2.theme,
baseFontSize = _ref2$theme.baseFontSize,
_ref2$theme$colors = _ref2$theme.colors,
_ref2$theme$colors$ne = _ref2$theme$colors.neutral,
neutral0 = _ref2$theme$colors$ne[0],
neutral300 = _ref2$theme$colors$ne[300],
neutral700 = _ref2$theme$colors$ne[700],
_ref2$theme$colors$pr = _ref2$theme$colors.primary,
primary100 = _ref2$theme$colors$pr[100],
primary700 = _ref2$theme$colors$pr[700],
primary900 = _ref2$theme$colors$pr[900],
_ref2$theme$spacing = _ref2$theme.spacing,
xxsmall = _ref2$theme$spacing.xxsmall,
xsmall = _ref2$theme$spacing.xsmall;
return "\n background-color: ".concat(active ? primary700 : neutral0, ";\n border: 1px solid ").concat(active ? primary700 : neutral300, ";\n color: ").concat(active ? neutral0 : neutral700, ";\n font-size: ").concat(baseFontSize, "px;\n margin: 0 ").concat(xxsmall, "px;\n padding: ").concat(xxsmall, "px ").concat(xsmall, "px;\n\n &:hover, &:focus {\n background-color: ").concat(active ? primary900 : primary100, ";\n border-color: ").concat(active ? primary900 : primary700, ";\n color: ").concat(active ? neutral0 : primary700, ";\n }\n ");
});
PageButton.displayName = 'PageButton';
PageButton.propTypes = {
active: _propTypes["default"].bool,
tabIndex: _propTypes["default"].number,
children: _propTypes["default"].number.isRequired,
onClick: _propTypes["default"].func,
theme: _propTypes["default"].shape({
baseFontSize: _propTypes["default"].number,
colors: _propTypes["default"].object,
spacing: _propTypes["default"].object
})
};
var _default = exports["default"] = PageButton;