{"version":3,"file":"popup.module-DQ5kB0Wi.js","sources":["../../../../../Flow.Showcase.Static.Bundler/Root/modules/popup.module.ts"],"sourcesContent":["// @ts-nocheck\n\n/** @type {number?} */\nlet timerId = null;\n\n/**\n * Приоритет текущего уведомления\n * @type {number}\n */\nlet currentPriority = 0;\n\n/**\n * Показать всплывающее уведомление\n * @param {string} text Сообщение\n * @param {number} delay Время показа уведомления\n * @param {number} [priority=0] Уведомления с меньшим приоритетом не могут перекрыть уведомления с большим\n */\nexport function showPopup(text, delay, priority = 0) {\n try {\n if (timerId !== null) {\n if (priority < currentPriority) {\n return;\n }\n clearTimeout(timerId);\n }\n currentPriority = priority;\n\n const popup = /** @type {HTMLElement} */ (\n document.querySelector(\".js-popup\")\n );\n popup.classList.add(\"js-popup-visible\");\n\n const popupText = /** @type {HTMLElement} */ (\n popup.querySelector(\".js-popup__text\")\n );\n popupText.innerText = text;\n\n timerId = setTimeout(function () {\n popup.classList.remove(\"js-popup-visible\");\n timerId = null;\n }, delay);\n } catch (error) {\n console.log(error);\n }\n}\n"],"names":["timerId","currentPriority","showPopup","text","delay","priority","popup","popupText","error"],"mappings":"AAGA,IAAIA,EAAU,KAMVC,EAAkB,EAQf,SAASC,EAAUC,EAAMC,EAAOC,EAAW,EAAG,CAC7C,GAAA,CACA,GAAIL,IAAY,KAAM,CAClB,GAAIK,EAAWJ,EACX,OAEJ,aAAaD,CAAO,CAAA,CAENC,EAAAI,EAEZ,MAAAC,EACF,SAAS,cAAc,WAAW,EAEhCA,EAAA,UAAU,IAAI,kBAAkB,EAEhC,MAAAC,EACFD,EAAM,cAAc,iBAAiB,EAEzCC,EAAU,UAAYJ,EAEtBH,EAAU,WAAW,UAAY,CACvBM,EAAA,UAAU,OAAO,kBAAkB,EAC/BN,EAAA,MACXI,CAAK,QACHI,EAAO,CACZ,QAAQ,IAAIA,CAAK,CAAA,CAEzB"}