UNPKG

@activecollab/components

Version:

ActiveCollab Components

41 lines (40 loc) 3.28 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SpinnerLoader = void 0; var _react = _interopRequireWildcard(require("react")); var _Styles = require("./Styles"); var _excluded = ["radius", "stroke", "activeStrokeColor", "inactiveStrokeColor", "activeColorPercentage", "rotateDurationInSeconds", "className"]; function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); } function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } 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], -1 === t.indexOf(o) && {}.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 (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; } var SpinnerLoader = exports.SpinnerLoader = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) { var _ref$radius = _ref.radius, radius = _ref$radius === void 0 ? 10 : _ref$radius, _ref$stroke = _ref.stroke, stroke = _ref$stroke === void 0 ? 2 : _ref$stroke, _ref$activeStrokeColo = _ref.activeStrokeColor, activeStrokeColor = _ref$activeStrokeColo === void 0 ? "var(--color-secondary)" : _ref$activeStrokeColo, _ref$inactiveStrokeCo = _ref.inactiveStrokeColor, inactiveStrokeColor = _ref$inactiveStrokeCo === void 0 ? "var(--color-theme-transparent-300)" : _ref$inactiveStrokeCo, _ref$activeColorPerce = _ref.activeColorPercentage, activeColorPercentage = _ref$activeColorPerce === void 0 ? "25%" : _ref$activeColorPerce, _ref$rotateDurationIn = _ref.rotateDurationInSeconds, rotateDurationInSeconds = _ref$rotateDurationIn === void 0 ? 0.75 : _ref$rotateDurationIn, className = _ref.className, rest = _objectWithoutProperties(_ref, _excluded); return /*#__PURE__*/_react.default.createElement(_Styles.StyledSpinnerLoader, _extends({ ref: ref, className: className, $diameter: radius * 2, $stroke: stroke, $activeStrokeColor: activeStrokeColor, $inactiveStrokeColor: inactiveStrokeColor, $activeColorPercentage: activeColorPercentage, $rotateDurationInSeconds: rotateDurationInSeconds }, rest)); }); SpinnerLoader.displayName = "SpinnerLoader"; //# sourceMappingURL=SpinnerLoader.js.map