UNPKG

@oceanbase/ui

Version:

The UI library based on OceanBase Design

142 lines 10.1 kB
var _excluded = ["children", "onClick", "enableLoading", "tooltip", "loading"], _excluded2 = ["disabled", "onClick", "children", "enableLoading", "tooltip", "loading", "type", "style"]; 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); } 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 _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; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(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); } import { LoadingOutlined } from '@oceanbase/icons'; import { Button, Tooltip, Typography } from '@oceanbase/design'; import React from 'react'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; export var ActionButton = /*#__PURE__*/function (_React$PureComponent) { _inherits(ActionButton, _React$PureComponent); var _super = _createSuper(ActionButton); function ActionButton() { var _this; _classCallCheck(this, ActionButton); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _super.call.apply(_super, [this].concat(args)); _defineProperty(_assertThisInitialized(_this), "state", { loading: false }); return _this; } _createClass(ActionButton, [{ key: "render", value: function render() { var _this2 = this; var _this$props = this.props, children = _this$props.children, _onClick = _this$props.onClick, _this$props$enableLoa = _this$props.enableLoading, enableLoading = _this$props$enableLoa === void 0 ? true : _this$props$enableLoa, tooltip = _this$props.tooltip, loading = _this$props.loading, restProps = _objectWithoutProperties(_this$props, _excluded); return /*#__PURE__*/_jsx(Tooltip, { placement: "top", title: tooltip, children: /*#__PURE__*/_jsx(Button, _objectSpread(_objectSpread({ loading: enableLoading && (loading || this.state.loading), onClick: function onClick(e) { var handle = _onClick === null || _onClick === void 0 ? void 0 : _onClick(e); if (enableLoading && handle !== null && handle !== void 0 && handle.then) { _this2.setState({ loading: true }); handle.then(function () { _this2.setState({ loading: false }); }); } } }, restProps), {}, { children: children })) }); } }]); return ActionButton; }(React.PureComponent); _defineProperty(ActionButton, "__DISPLAY_NAME", 'button'); export var ActionLink = /*#__PURE__*/function (_React$PureComponent2) { _inherits(ActionLink, _React$PureComponent2); var _super2 = _createSuper(ActionLink); function ActionLink() { var _this3; _classCallCheck(this, ActionLink); for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { args[_key2] = arguments[_key2]; } _this3 = _super2.call.apply(_super2, [this].concat(args)); _defineProperty(_assertThisInitialized(_this3), "state", { loading: false, disabled: false }); return _this3; } _createClass(ActionLink, [{ key: "render", value: function render() { var _this4 = this; var _this$props2 = this.props, disabled = _this$props2.disabled, _onClick2 = _this$props2.onClick, children = _this$props2.children, _this$props2$enableLo = _this$props2.enableLoading, enableLoading = _this$props2$enableLo === void 0 ? true : _this$props2$enableLo, tooltip = _this$props2.tooltip, loading = _this$props2.loading, type = _this$props2.type, style = _this$props2.style, restProps = _objectWithoutProperties(_this$props2, _excluded2); return /*#__PURE__*/_jsx(Typography.Link, _objectSpread(_objectSpread({ style: _objectSpread({ padding: 0 }, style), disabled: loading || disabled || this.state.disabled, onClick: function onClick(e) { var handle = _onClick2 === null || _onClick2 === void 0 ? void 0 : _onClick2(e); if (enableLoading && handle !== null && handle !== void 0 && handle.then) { _this4.setState({ loading: true, disabled: true }); handle.then(function () { _this4.setState({ loading: false, disabled: false }); }); } } }, restProps), {}, { children: /*#__PURE__*/_jsxs(Tooltip, { placement: "top", title: tooltip, children: [loading || this.state.disabled ? /*#__PURE__*/_jsx(LoadingOutlined, {}) : '', " ", children] }) })); } }]); return ActionLink; }(React.PureComponent); _defineProperty(ActionLink, "__DISPLAY_NAME", 'link');