123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/Plugin/toastr", ["exports", "Plugin"], factory);
- } else if (typeof exports !== "undefined") {
- factory(exports, require("Plugin"));
- } else {
- var mod = {
- exports: {}
- };
- factory(mod.exports, global.Plugin);
- global.PluginToastr = mod.exports;
- }
- })(this, function (_exports, _Plugin2) {
- "use strict";
- Object.defineProperty(_exports, "__esModule", {
- value: true
- });
- _exports.default = void 0;
- _Plugin2 = babelHelpers.interopRequireDefault(_Plugin2);
- var NAME = 'toastr';
- var Toastr =
- /*#__PURE__*/
- function (_Plugin) {
- babelHelpers.inherits(Toastr, _Plugin);
- function Toastr() {
- babelHelpers.classCallCheck(this, Toastr);
- return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(Toastr).apply(this, arguments));
- }
- babelHelpers.createClass(Toastr, [{
- key: "getName",
- value: function getName() {
- return NAME;
- }
- }, {
- key: "render",
- value: function render() {
- this.$el.data('toastrWrapApi', this);
- }
- }, {
- key: "show",
- value: function show(e) {
- if (typeof toastr === 'undefined') {
- return;
- }
- e.preventDefault();
- var options = this.options;
- var message = options.message || '';
- var type = options.type || 'info';
- var title = options.title || undefined;
- switch (type) {
- case 'success':
- toastr.success(message, title, options);
- break;
- case 'warning':
- toastr.warning(message, title, options);
- break;
- case 'error':
- toastr.error(message, title, options);
- break;
- case 'info':
- toastr.info(message, title, options);
- break;
- default:
- toastr.info(message, title, options);
- }
- }
- }], [{
- key: "api",
- value: function api() {
- return 'click|show';
- }
- }]);
- return Toastr;
- }(_Plugin2.default);
- _Plugin2.default.register(NAME, Toastr);
- var _default = Toastr;
- _exports.default = _default;
- });
|