diff --git a/scripts/startup/preload.js b/scripts/startup/preload.js index f934d20..fad3280 100755 --- a/scripts/startup/preload.js +++ b/scripts/startup/preload.js @@ -23,7 +23,11 @@ window.addEventListener('DOMContentLoaded', () => { name: "Alpha", semver: require('../../package.json').version }, - platform: undefined + platform: undefined, + toasts: { + total: 0, + shown: [] + } }; const platform = ipcRenderer.sendSync('preload', 'request-platform'); diff --git a/scripts/toast/createtoast.js b/scripts/toast/createtoast.js index 19d0a41..08742fc 100755 --- a/scripts/toast/createtoast.js +++ b/scripts/toast/createtoast.js @@ -40,7 +40,12 @@ module.exports = (name, text, bg = '#a172a6', persistOnClick = false, time = 5, timer.style.backgroundColor = timerColor; timer.style.animation = `toast-timer ${time}s linear`; toastWrap.appendChild(timer); - //toast.onmouseenter = () => {timer.style.animationPlayState = 'paused';}; + toast.id = `toast-${window.kade.toasts.total}`; //toast.onmouseleave = () => {timer.style.animationPlayState = 'normal';}; setTimeout(() => {if (continueTimeout) {removeToast(toast);}}, time * 1000); + window.kade.toasts.shown[window.kade.toasts.total] = { + timer, + toast, + }; + window.kade.toasts.total++; }; \ No newline at end of file