@txdfe/at
Version:
一个设计体系组件库
138 lines • 7.86 kB
JavaScript
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 _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : 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 React, { createRef } from 'react';
import PropTypes from 'prop-types';
import ServiceManager from './base/service-manager/service-manager';
import { guid } from '../util';
import ToastQueue from './toast.queue';
import ToastContainer from './toast-group.container';
import { ToastStatus } from './toast.schema';
var ToastManager = /*#__PURE__*/function (_ServiceManager) {
function ToastManager() {
var _this;
var _queue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : new ToastQueue();
_classCallCheck(this, ToastManager);
_this = _callSuper(this, ToastManager, [_queue, 'span']);
_defineProperty(_this, "render", function (queue) {
_this.flush(/*#__PURE__*/React.createElement(ToastContainer, {
ref: _this.containerRef,
onClose: _this.handleClose,
toasts: queue,
placement: "bottomLeft",
className: _this.className,
tmpl: _this.tmpl
}), _this.flushCallback);
});
_defineProperty(_this, "flushCallback", function () {
if (_this.initialCommand.length !== 0) {
_this.initialCommand.forEach(function (cmd) {
return cmd();
});
_this.initialCommand.length = 0;
}
});
_defineProperty(_this, "createToastInstance", function (props) {
var key = props.key,
_props$duration = props.duration,
duration = _props$duration === void 0 ? ToastManager.DefaultDuration : _props$duration,
_props$pauseable = props.pauseable,
pauseable = _props$pauseable === void 0 ? ToastManager.DefaultPauseable : _props$pauseable;
var _this$createSlice = _this.createSlice(key, duration),
clearTimeout = _this$createSlice.clearTimeout,
startTimeout = _this$createSlice.startTimeout;
var nextProps = _objectSpread(_objectSpread({
closeable: ToastManager.DefaultClosable
}, props), {}, {
clearTimeout: clearTimeout,
duration: duration,
pauseable: pauseable,
startTimeout: startTimeout
});
_this.queue.add(nextProps);
return key;
});
_this.containerRef = /*#__PURE__*/createRef();
_this.initialCommand = [];
_this.queue.subscribe(_this.render);
return _this;
}
_inherits(ToastManager, _ServiceManager);
return _createClass(ToastManager, [{
key: "error",
value: function error(props) {
return this.createToastInstance(_objectSpread(_objectSpread({}, props), {}, {
key: guid(),
status: ToastStatus.Error
}));
}
}, {
key: "success",
value: function success(props) {
return this.createToastInstance(_objectSpread(_objectSpread({}, props), {}, {
key: guid(),
status: ToastStatus.Success
}));
}
}, {
key: "warning",
value: function warning(props) {
return this.createToastInstance(_objectSpread(_objectSpread({}, props), {}, {
key: guid(),
status: ToastStatus.Warning
}));
}
}, {
key: "info",
value: function info(props) {
return this.createToastInstance(_objectSpread(_objectSpread({}, props), {}, {
key: guid(),
status: ToastStatus.Info
}));
}
}, {
key: "closeAll",
value: function closeAll() {
this.queue.deleteAll();
}
}, {
key: "getDuplicationKey",
value: function getDuplicationKey(props) {
return this.queue.getDuplicationKey(props);
}
}, {
key: "setTemplate",
value: function setTemplate(tmpl) {
var _this2 = this;
if (this.containerRef.current) {
this.containerRef.current.replaceTemplate(tmpl);
} else {
this.initialCommand.push(function () {
return _this2.containerRef.current.replaceTemplate(tmpl);
});
}
this.tmpl = tmpl;
}
}]);
}(ServiceManager);
_defineProperty(ToastManager, "propTypes", {
className: PropTypes.string,
style: PropTypes.object
});
_defineProperty(ToastManager, "DefaultDuration", 5000);
_defineProperty(ToastManager, "DefaultClosable", true);
_defineProperty(ToastManager, "DefaultPauseable", true);
export default ToastManager;