12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- "use strict";
- var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
- if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
- return cooked;
- };
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- result["default"] = mod;
- return result;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- /** @jsx jsx */
- var React = __importStar(require("react"));
- var core_1 = require("@emotion/core");
- var helpers_1 = require("./helpers");
- var scale = core_1.keyframes(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n 0% {transform: scaley(1.0)}\n 50% {transform: scaley(0.4)}\n 100% {transform: scaley(1.0)}\n"], ["\n 0% {transform: scaley(1.0)}\n 50% {transform: scaley(0.4)}\n 100% {transform: scaley(1.0)}\n"])));
- var Loader = /** @class */ (function (_super) {
- __extends(Loader, _super);
- function Loader() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- _this.style = function (i) {
- var _a = _this.props, color = _a.color, width = _a.width, height = _a.height, margin = _a.margin, radius = _a.radius, widthUnit = _a.widthUnit, heightUnit = _a.heightUnit, radiusUnit = _a.radiusUnit;
- return core_1.css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n width: ", ";\n height: ", ";\n margin: ", ";\n border-radius: ", ";\n display: inline-block;\n animation: ", " 1s ", "s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);\n animation-fill-mode: both;\n "], ["\n background-color: ", ";\n width: ", ";\n height: ", ";\n margin: ", ";\n border-radius: ", ";\n display: inline-block;\n animation: ", " 1s ", "s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);\n animation-fill-mode: both;\n "])), color, "" + width + widthUnit, "" + height + heightUnit, margin, "" + radius + radiusUnit, scale, i * 0.1);
- };
- return _this;
- }
- Loader.prototype.render = function () {
- var _a = this.props, loading = _a.loading, css = _a.css;
- return loading ? (core_1.jsx("div", { css: [css] },
- core_1.jsx("div", { css: this.style(1) }),
- core_1.jsx("div", { css: this.style(2) }),
- core_1.jsx("div", { css: this.style(3) }),
- core_1.jsx("div", { css: this.style(4) }),
- core_1.jsx("div", { css: this.style(5) }))) : null;
- };
- Loader.defaultProps = helpers_1.heightWidthRadiusDefaults(35, 4, 2);
- return Loader;
- }(React.PureComponent));
- exports.default = Loader;
- var templateObject_1, templateObject_2;
|