@age/quantum
Version:
Catho react components
60 lines (46 loc) • 2.74 kB
JavaScript
;
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _propTypes = _interopRequireDefault(require("prop-types"));
var _styledComponents = _interopRequireWildcard(require("styled-components"));
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var skeletonAnimation = (0, _styledComponents.keyframes)(["0%{opacity:1;}50%{opacity:0.4;}100%{opacity:1;}"]);
var setSize = function setSize(_ref) {
var height = _ref.height,
width = _ref.width;
var sizes = [];
if (height !== null) {
sizes.push("height: ".concat(height, ";"));
}
if (width !== null) {
sizes.push("width: ".concat(width, ";"));
}
return sizes.join('');
};
var SkeletonBase = _styledComponents.default.div.withConfig({
displayName: "SkeletonBase",
componentId: "o94r8i-0"
})(["background-color:rgba(0,0,0,0.08);animation:", " 1.5s ease-in-out infinite;display:inline-block;box-sizing:border-box;", ""], skeletonAnimation, function (_ref2) {
var height = _ref2.height,
width = _ref2.width;
return setSize({
height: height,
width: width
});
});
SkeletonBase.displayName = 'SkeletonBase';
SkeletonBase.propTypes = {
width: _propTypes.default.string,
height: _propTypes.default.string
};
SkeletonBase.defaultProps = {
width: null,
height: null
};
var _default = SkeletonBase;
exports.default = _default;