123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/Plugin/notie-js", ["exports", "Plugin"], factory);
- } else if (typeof exports !== "undefined") {
- factory(exports, require("Plugin"));
- } else {
- var mod = {
- exports: {}
- };
- factory(mod.exports, global.Plugin);
- global.PluginNotieJs = mod.exports;
- }
- })(this, function (_exports, _Plugin2) {
- "use strict";
- Object.defineProperty(_exports, "__esModule", {
- value: true
- });
- _exports.default = void 0;
- _Plugin2 = babelHelpers.interopRequireDefault(_Plugin2);
- var NAME = 'notie';
- var Notie =
- /*#__PURE__*/
- function (_Plugin) {
- babelHelpers.inherits(Notie, _Plugin);
- function Notie() {
- babelHelpers.classCallCheck(this, Notie);
- return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(Notie).apply(this, arguments));
- }
- babelHelpers.createClass(Notie, [{
- key: "getName",
- value: function getName() {
- return NAME;
- }
- }, {
- key: "render",
- value: function render() {
- this.$el.data('notieApi', this);
- }
- }, {
- key: "show",
- value: function show() {
- var options = this.options;
- if (options.type !== undefined) {
- switch (options.type) {
- case 'confirm':
- notie.confirm(Object.assign(options, {
- submitCallback: function submitCallback() {
- if (options.submitCallback && typeof window[options.submitCallback] === 'function') {
- window[options.submitCallback]();
- } else {
- notie.alert({
- type: 1,
- text: options.submitMsg,
- time: 1.5
- });
- }
- },
- cancelCallback: function cancelCallback() {
- if (options.cancelCallback && typeof window[options.cancelCallback] === 'function') {
- window[options.cancelCallback]();
- } else {
- notie.alert({
- type: 3,
- text: options.cancelMsg,
- time: 1.5
- });
- }
- }
- }));
- break;
- case 'input':
- notie.input(Object.assign(options, {
- submitCallback: function submitCallback(value) {
- if (options.submitCallback && typeof window[options.submitCallback] === 'function') {
- window[options.submitCallback](value);
- } else {
- notie.alert({
- type: 1,
- text: "you entered: ".concat(value),
- time: 1.5
- });
- }
- },
- cancelCallback: function cancelCallback(value) {
- if (options.cancelCallback && typeof window[options.cancelCallback] === 'function') {
- window[options.cancelCallback](value);
- } else {
- notie.alert({
- type: 1,
- text: "You cancelled with this value: ".concat(value),
- time: 1.5
- });
- }
- }
- }));
- break;
- case 'select':
- notie.select(options);
- break;
- case 'date':
- notie.date(options);
- break;
- default:
- notie.alert(options);
- }
- }
- }
- }], [{
- key: "api",
- value: function api() {
- return 'click|show';
- }
- }]);
- return Notie;
- }(_Plugin2.default);
- _Plugin2.default.register(NAME, Notie);
- var _default = Notie;
- _exports.default = _default;
- });
|