Saving, do not close the window…

Add the saving message.
This commit is contained in:
buzz-lightsnack-2007 2024-04-16 17:56:59 +08:00
parent 230f330ebd
commit b1cceec7fc
3 changed files with 36 additions and 1 deletions

View file

@ -14,7 +14,12 @@ export default class logging {
return user_response;
}
constructor(TITLE, MESSAGE) {
/* Create a new message.
@param {string} TITLE the title
@param {string} MESSAGE the message
@param {bool} PRIORITY automatically dismiss other, older messages */
constructor(TITLE, MESSAGE, PRIORITY = true) {
// Set this message's properties.
if (MESSAGE == null) {
this.message = TITLE;
@ -23,6 +28,8 @@ export default class logging {
this.message = MESSAGE;
}
(PRIORITY) ? this.clear() : false;
// Display the message.
console.log((MESSAGE ? (this.title).concat(`\n`) : ``).concat(this.message));
try {
@ -76,4 +83,15 @@ export default class logging {
} catch (err) {};
};
}
/* Clear the current message. */
clear() {
try {
var toastElement = document.querySelectorAll('.toast');
(toastElement) ? (
toastElement.forEach((element) => {
element.style.display = "none";
})) : false;
} catch(err) {};
};
}