-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommonMessages.js
334 lines (310 loc) · 10.5 KB
/
CommonMessages.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/**
* Provides access to the most common message types.
*
* @public
* @module CommonMessages
*/
import { MESSAGE_LEVEL } from "../data/MessageLevel.js";
import * as CustomMessages from "./CustomMessages.js";
// simply forward custom message types
export {hideMessage, showMessage} from "./CustomMessages.js";
/**
* Hides the error message.
*
* @public
* @param {Object} [options]
* @param {boolean} [options.animate=false] set to true to animate the hiding
* @returns {void}
*/
export function hideError(...args) {
args.unshift(MESSAGE_LEVEL.ERROR);
CustomMessages.hideMessage(...args);
}
/**
* Hide warning message.
*
* @public
* @param {Object} [options]
* @param {boolean} [options.animate=false] set to true to animate the hiding
* @returns {void}
*/
export function hideWarning(...args) {
args.unshift(MESSAGE_LEVEL.WARNING);
CustomMessages.hideMessage(...args);
}
/**
* Hide info message.
*
* @public
* @param {Object} [options]
* @param {boolean} [options.animate=false] set to true to animate the hiding
* @returns {void}
*/
export function hideInfo(...args) {
args.unshift(MESSAGE_LEVEL.INFO);
CustomMessages.hideMessage(...args);
}
/**
* Hide loading message.
*
* @public
* @param {Object} [options]
* @param {boolean} [options.animate=false] set to true to animate the hiding
* @returns {void}
*/
export function hideLoading(...args) {
args.unshift(MESSAGE_LEVEL.LOADING);
CustomMessages.hideMessage(...args);
}
/**
* Hide success message.
*
* @public
* @param {Object} [options]
* @param {boolean} [options.animate=false] set to true to animate the hiding
* @returns {void}
*/
export function hideSuccess(...args) {
args.unshift(MESSAGE_LEVEL.SUCCESS);
CustomMessages.hideMessage(...args);
}
/**
* Show a critical error.
*
* Note this should only be used to show *short* error messages, which are
* meaningfull to the user, as the space is limited. So it is mostly only
* useful to use only one param: a string.
* Also pay attention to the fact, that it currently can only show one error
* once.
*
* @public
* @param {string} [message] optional, string to show or to translate if omitted no new text is shown
* @param {boolean} [isDismissable] optional, set to true, if user should be able to dismiss the message
* @param {Object} [actionButton] optional to show an action button
* @param {string} actionButton.text
* @param {string|function} actionButton.action URL to site to open on link OR function to execute
* @param {...*} args optional parameters for translation
* @returns {void}
*/
export function showError(...args) {
args.unshift(MESSAGE_LEVEL.ERROR);
CustomMessages.showMessage(...args);
}
/**
* Show an warning message.
*
* @public
* @param {string} [message] optional, string to show or to translate if omitted no new text is shown
* @param {boolean} [isDismissable] optional, set to true, if user should be able to dismiss the message
* @param {Object} [actionButton] optional to show an action button
* @param {string} actionButton.text
* @param {string|function} actionButton.action URL to site to open on link OR function to execute
* @param {...*} args optional parameters for translation
* @returns {void}
*/
export function showWarning(...args) {
args.unshift(MESSAGE_LEVEL.WARN);
CustomMessages.showMessage(...args);
}
/**
* Show an info message.
*
* @public
* @param {string} [message] optional, string to show or to translate if omitted no new text is shown
* @param {boolean} [isDismissable] optional, set to true, if user should be able to dismiss the message
* @param {Object} [actionButton] optional to show an action button
* @param {string} actionButton.text
* @param {string} actionButton.link URL to site to open on link
* @param {...*} args optional parameters for translation
* @returns {void}
*/
export function showInfo(...args) {
args.unshift(MESSAGE_LEVEL.INFO);
CustomMessages.showMessage(...args);
}
/**
* Shows a loading message.
*
* @public
* @param {string} [message] optional, string to show or to translate if omitted no new text is shown
* @param {boolean} [isDismissable] optional, set to true, if user should be able to dismiss the message
* @param {Object} [actionButton] optional to show an action button
* @param {string} actionButton.text
* @param {string|function} actionButton.action URL to site to open on link OR function to execute
* @param {...*} args optional parameters for translation
* @returns {void}
*/
export function showLoading(...args) {
args.unshift(MESSAGE_LEVEL.LOADING);
CustomMessages.showMessage(...args);
}
/**
* Show a success message.
*
* @public
* @param {string} [message] optional, string to show or to translate if omitted no new text is shown
* @param {boolean} [isDismissable] optional, set to true, if user should be able to dismiss the message
* @param {Object} [actionButton] optional to show an action button
* @param {string} actionButton.text
* @param {string|function} actionButton.action URL to site to open on link OR function to execute
* @param {...*} args optional parameters for translation
* @returns {void}
*/
export function showSuccess(...args) {
args.unshift(MESSAGE_LEVEL.SUCCESS);
CustomMessages.showMessage(...args);
}
/**
* Let's other functions set a hook to be called when a message type is
* shown or hidden.
*
* Set parameters to null or undefined (i.e. do not set) in order to disable
* the hook.
* The errorShown function gets one parameter: The arguments passed to the
* function, as an array.
*
* @private
* @param {MESSAGE_LEVEL|HTMLElement} messageType use string "global" for a global hook
* @param {function|null} [hookShown]
* @param {function|null} [hookHidden]
* @returns {void}
*/
function setHook(messageType, hookShown = null, hookHidden = null) {
CustomMessages.setHook(messageType, "show", hookShown);
CustomMessages.setHook(messageType, "hide", hookHidden);
}
/**
* Let's other functions set a hook to be called when a error message is
* shown or hidden.
*
* Set parameters to null or undefined (i.e. do not set) in order to disable
* the hook.
* The errorShown function gets one parameter: The arguments passed to the
* function, as an array.
*
* @public
* @param {function|null} [hookShown]
* @param {function|null} [hookHidden]
* @returns {void}
*/
export function setErrorHook(hookShown = null, hookHidden = null) {
return setHook(MESSAGE_LEVEL.ERROR, hookShown, hookHidden);
}
/**
* Let's other functions set a hook to be called when a warning message is
* shown or hidden.
*
* Set parameters to null or undefined (i.e. do not set) in order to disable
* the hook.
* The errorShown function gets one parameter: The arguments passed to the
* function, as an array.
*
* @public
* @param {function|null} [hookShown]
* @param {function|null} [hookHidden]
* @returns {void}
*/
export function setWarningHook(hookShown = null, hookHidden = null) {
return setHook(MESSAGE_LEVEL.WARN, hookShown, hookHidden);
}
/**
* Let's other functions set a hook to be called when a info message is shown
* or hidden.
*
* Set parameters to null or undefined (i.e. do not set) in order to disable
* the hook.
* The errorShown function gets one parameter: The arguments passed to the
* function, as an array.
*
* @public
* @param {function|null} [hookShown]
* @param {function|null} [hookHidden]
* @returns {void}
*/
export function setInfoHook(hookShown = null, hookHidden = null) {
return setHook(MESSAGE_LEVEL.INFO, hookShown, hookHidden);
}
/**
* Let's other functions set a hook to be called when a loading message is
* shown or hidden.
*
* Set parameters to null or undefined (i.e. do not set) in order to disable
* the hook.
* The errorShown function gets one parameter: The arguments passed to the
* function, as an array.
*
* @public
* @param {function|null} [hookShown]
* @param {function|null} [hookHidden]
* @returns {void}
*/
export function setLoadingHook(hookShown = null, hookHidden = null) {
return setHook(MESSAGE_LEVEL.LOADING, hookShown, hookHidden);
}
/**
* Let's other functions set a hook to be called when an success message is
* shown or hidden.
*
* Set parameters to null or undefined (i.e. do not set) in order to disable
* the hook.
* The errorShown function gets one parameter: The arguments passed to the
* function, as an array.
*
* @public
* @param {function|null} [hookShown]
* @param {function|null} [hookHidden]
* @returns {void}
*/
export function setSuccessHook(hookShown = null, hookHidden = null) {
return setHook(MESSAGE_LEVEL.SUCCESS, hookShown, hookHidden);
}
/**
* Called when a message is dismissed.
*
+ When called, the function does not know, which message is hidden, but you
* can determinante it by yourself.
* The called hook gets an object with two parameters:
* - {HTMLElement} elMessage – the message element, which was hidden
* - {event} event – the original click even on the dismiss button
*
* @public
* @param {function|null} [startHook]
* @param {function|null} [endHook]
* @returns {void}
*/
export function setDismissHooks(startHook = null, endHook = null) {
CustomMessages.setGlobalHook("dismissStart", startHook);
CustomMessages.setGlobalHook("dismissEnd", endHook);
}
/**
* Only registers the message type, if the HTML element exists.
*
* @private
* @param {int|string} messageType
* @param {HTMLElement} elMessage element to register with it
* @param {string} [designClass] the class to apply
* @param {string} [ariaLabelType] the "aria-label" for this message type
* @returns {void}
*/
function registerMessageTypeIfExists(messageType, elMessage, designClass, ariaLabelType) {
if (!elMessage) {
console.warn(elMessage, "does not exist. Skip registering message type.");
return;
}
CustomMessages.registerMessageType(messageType, elMessage, designClass, ariaLabelType);
}
/**
* Initialises the module.
*
* @public
* @returns {void}
*/
export function init() {
registerMessageTypeIfExists(MESSAGE_LEVEL.ERROR, document.getElementById("messageError"), "error", "error message");
registerMessageTypeIfExists(MESSAGE_LEVEL.WARN, document.getElementById("messageWarning"), "warning", "warning message");
registerMessageTypeIfExists(MESSAGE_LEVEL.INFO, document.getElementById("messageInfo"), "info", "info message");
registerMessageTypeIfExists(MESSAGE_LEVEL.SUCCESS, document.getElementById("messageSuccess"), "success", "success message");
registerMessageTypeIfExists(MESSAGE_LEVEL.LOADING, document.getElementById("messageLoading"), "info", "loading message");
}
// init module automatically
init();