UNPKG

@activecollab/components

Version:

ActiveCollab Components

42 lines (41 loc) 3.8 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 _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } function _extends() { _extends = Object.assign ? Object.assign.bind() : 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 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