啊鑫
9 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
"use strict";
 
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
 
exports.__esModule = true;
exports.default = void 0;
 
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
 
var _vue = _interopRequireDefault(require("vue"));
 
var _Notify = _interopRequireDefault(require("./Notify"));
 
var _utils = require("../utils");
 
var _functional = require("../utils/functional");
 
var timer;
var instance;
 
function parseOptions(message) {
  return (0, _utils.isObject)(message) ? message : {
    message: message
  };
}
 
function Notify(options) {
  /* istanbul ignore if */
  if (_utils.isServer) {
    return;
  }
 
  if (!instance) {
    instance = (0, _functional.mount)(_Notify.default, {
      on: {
        click: function click(event) {
          if (instance.onClick) {
            instance.onClick(event);
          }
        },
        close: function close() {
          if (instance.onClose) {
            instance.onClose();
          }
        },
        opened: function opened() {
          if (instance.onOpened) {
            instance.onOpened();
          }
        }
      }
    });
  }
 
  options = (0, _extends2.default)({}, Notify.currentOptions, parseOptions(options));
  (0, _extends2.default)(instance, options);
  clearTimeout(timer);
 
  if (options.duration && options.duration > 0) {
    timer = setTimeout(Notify.clear, options.duration);
  }
 
  return instance;
}
 
function defaultOptions() {
  return {
    type: 'danger',
    value: true,
    message: '',
    color: undefined,
    background: undefined,
    duration: 3000,
    className: '',
    onClose: null,
    onClick: null,
    onOpened: null
  };
}
 
Notify.clear = function () {
  if (instance) {
    instance.value = false;
  }
};
 
Notify.currentOptions = defaultOptions();
 
Notify.setDefaultOptions = function (options) {
  (0, _extends2.default)(Notify.currentOptions, options);
};
 
Notify.resetDefaultOptions = function () {
  Notify.currentOptions = defaultOptions();
};
 
Notify.install = function () {
  _vue.default.use(_Notify.default);
};
 
Notify.Component = _Notify.default;
_vue.default.prototype.$notify = Notify;
var _default = Notify;
exports.default = _default;