-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoast.js
97 lines (97 loc) · 3.2 KB
/
toast.js
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
//
// Toast popup notifier
//
// By: Stuart Rackham
// https://github.com/srackham/toast.js
//
// Inspired by: https://github.com/Srirangan/notifer.js
// https://github.com/CodeSeven/toastr
//
/// <reference path="jquery.d.ts" />
var Toast;
(function (Toast) {
// Modifiable defaults.
Toast.defaults = {
width: '',
displayDuration: 2000,
fadeOutDuration: 800
};
/* Popup functions */
/**
* Popup informational message.
* @param message A message string.
* @param title An optional title string.
* @param options An optional map of {@link Options}.
*/
function info(message, title, options) {
_toast('info', message, title, options);
}
Toast.info = info;
/**
* Popup warning message.
* @param message A message string.
* @param title An optional title string.
* @param options An optional map of {@link Options}.
*/
function warning(message, title, options) {
_toast('warning', message, title, options);
}
Toast.warning = warning;
/**
* Popup error message.
* @param message A message string.
* @param title An optional title string.
* @param options An optional map of {@link Options}.
*/
function error(message, title, options) {
_toast('error', message, title, options);
}
Toast.error = error;
/**
* Popup success message.
* @param message A message string.
* @param title An optional title string.
* @param options An optional map of {@link Options}.
*/
function success(message, title, options) {
_toast('success', message, title, options);
}
Toast.success = success;
/* Private variables and functions */
var _container; // Toast container DOM element.
function _toast(type, // 'info', 'success', 'error', 'warning'
message, title, options) {
if (options === void 0) { options = {}; }
options = $.extend({}, Toast.defaults, options);
if (!_container) {
_container = $('#toast-container');
if (_container.length === 0) {
// Create container element if it is not in the static HTML.
_container = $('<div>').attr('id', 'toast-container').appendTo($('body'));
}
}
if (options.width) {
_container.css({ width: options.width });
}
var toastElement = $('<div>').addClass('toast').addClass('toast-' + type);
if (title) {
var titleElement = $('<div>').addClass('toast-title').append(title);
toastElement.append(titleElement);
}
if (message) {
var messageElement = $('<div>').addClass('toast-message').append(message);
toastElement.append(messageElement);
}
if (options.displayDuration > 0) {
setTimeout(function () {
toastElement.fadeOut(options.fadeOutDuration, function () {
toastElement.remove();
});
}, options.displayDuration);
}
toastElement.on('click', function () {
toastElement.remove();
});
_container.prepend(toastElement);
}
})(Toast || (Toast = {}));