mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Add jsdoc explaining ordering behaviour
This commit is contained in:
parent
e9214f7d13
commit
58c0cfe315
1 changed files with 9 additions and 0 deletions
|
@ -39,6 +39,15 @@ export default class ToastStore extends EventEmitter {
|
|||
this._toasts = [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Add or replace a toast
|
||||
* If a toast with the same toastKey already exists, the given toast will replace it
|
||||
* Toasts are always added underneath any toasts of the same priority, so existing
|
||||
* toasts stay at the top unless a higher priority one arrives (better to not change the
|
||||
* toast unless necessary).
|
||||
*
|
||||
* @param {boject} newToast The new toast
|
||||
*/
|
||||
addOrReplaceToast(newToast) {
|
||||
if (newToast.priority === undefined) newToast.priority = ToastStore.PRIORITY_DEFAULT;
|
||||
|
||||
|
|
Loading…
Reference in a new issue