{"version":3,"mappings":";uPAGA,SAASA,GAAU,CACjB,OAAOC,EAAQ,QACbC,EAAA,wBAAAC,CAAA,eACE,oBACF,EACC,KAAAC,KAAA,kBAAAD,EAAA,+BAAK,CAAC,CAAC,QAASA,MACfA,EAAK,iBAAiB,CACpB,QAAU,IACV,OAAU,YACV,MAAU,SACX,EAEMA,EACR,CACH,CACF,CCMA,MAAME,EAAiB,CACrB,OAAU,oBACV,QAAU,qBACV,MAAU,mBACV,QAAU,qBACV,KAAU,iBACZ,EAEMC,EAAW,CACf,UAAU,CACAN,EAAA,EACP,KAAMG,GAAS,CACdA,EAAK,SAAS,EACf,CACH,EACA,WAAWI,EAAiBC,EAAkB,IAAK,CACzCR,EAAA,EACP,KAAMG,GAAS,CACd,IAAIA,EAAK,CACP,KAAcI,EACd,QAAAC,CACD,GAAE,KAAK,EACT,CACH,EACA,YAAYD,EAAiBC,EAAkB,IAAK,CAC1CR,EAAA,EACP,KAAMG,GAAS,CACd,IAAIA,EAAK,CACP,KAAUI,EACV,KAAU,UACV,QAAAC,CACD,GAAE,KAAK,EACT,CACH,EACA,UAAUD,EAAiBC,EAAkB,IAAK,CACxCR,EAAA,EACP,KAAMG,GAAS,CACd,IAAIA,EAAK,CACP,KAAcI,EACd,KAAc,QACd,QAAAC,CACD,GAAE,KAAK,EACT,CACH,EACA,YAAYD,EAAiBC,EAAkB,IAAK,CAC1CR,EAAA,EACP,KAAMG,GAAS,CACd,IAAIA,EAAK,CACP,KAAcI,EACd,KAAc,UACd,QAAAC,CACD,GAAE,KAAK,EACT,CACH,EACA,SAASD,EAAiBC,EAAkB,IAAK,CACvCR,EAAA,EACP,KAAMG,GAAS,CACd,IAAIA,EAAK,CACP,KAAcI,EACd,KAAc,cACd,QAAAC,CACD,GAAE,KAAK,EACT,CACH,EAEA,KAAKC,EAAcF,EAAiBC,EAAkB,IAAK,CACzD,OAAQC,EAAK,CACX,IAAK,SACMH,EAAA,WAAWC,EAASC,CAAO,EACpC,MAEF,IAAK,UACMF,EAAA,YAAYC,EAASC,CAAO,EACrC,MAEF,IAAK,QACMF,EAAA,UAAUC,EAASC,CAAO,EACnC,MAEF,IAAK,UACMF,EAAA,YAAYC,EAASC,CAAO,EACrC,MAEF,IAAK,OACMF,EAAA,SAASC,EAASC,CAAO,EAClC,KAGA,CAEN,EAEA,YAAY,CACVE,EAAoB,IAAM,CACxBC,EAAY,IAAM,CACQC,EAAA,kCAAkC,EACzD,KAAK,IAAM,CACH,eAAQP,CAAc,EAAE,QAAQ,CAAC,CAACQ,EAAUC,CAAY,IAAM,CAEnE,MAAMC,EAAeC,EAAEF,CAAY,EAAE,KAAK,EAErCC,EAAK,OAAO,OAAS,GACfT,EAAA,KAAKO,EAAUE,CAAI,CAC9B,CACD,CACF,GACA,KAAK,EACP,EACF,CACH,EAEA,uBAAuBR,EAAiBC,EAA0B,GAAO,CACvEN,EAAA,wBAAAC,CAAA,eACE,oBACF,EACC,KAAAC,KAAA,kBAAAD,EAAA,+BAAK,CAAC,CAAC,QAASA,KAAU,CACzB,IAAIA,EAAK,CACP,KAAcI,EACd,QAAAC,EACA,KAAc,QACd,OAAc,aACd,MAAc,OACd,YAAc,EACf,GAAE,KAAK,EACT,EAEL","names":["getNoty","Promise","__vitePreload","Noty","n","text_selectors","Notifier","message","timeout","type","requestIdleCallback","on_domready","WaitObjectByPathPromise","msg_type","dom_selector","text","u"],"ignoreList":[],"sources":["../../../app/assets/javascripts/plugins/noty/index.ts","../../../app/assets/javascripts/app/notifier/index.ts"],"sourcesContent":["\nimport Promise from \"plugins/bluebird\"\n\nfunction getNoty() {\n return Promise.resolve(\n import(\n \"noty\"\n )\n .then(({default: Noty}) => {\n Noty.overrideDefaults({\n timeout: 8000,\n layout: \"topCenter\",\n theme: \"sunset\",\n })\n\n return Noty\n }),\n )\n}\n\nexport {\n getNoty,\n}\n","\n// region JS Imports\n\n// region External Modules\nimport on_domready from \"domready\"\nimport u from \"umbrellajs\"\nimport { getNoty } from \"plugins/noty\"\nimport {\n requestIdleCallback,\n} from \"plugins/request-animation-frame-polyfill\"\n// endregion External Modules\n\n// Private Modules\nimport WaitObjectByPathPromise from \"app/wait_object_by_path_promise\"\n// Private Modules\n\n// region Public Components\n// endregion Public Components\n\n// region Private Components\n// endregion Private Components\n\n// endregion JS Imports\n\nconst text_selectors = {\n notice: \"#mod-flash-notice\",\n success: \"#mod-flash-success\",\n error: \"#mod-flash-error\",\n warning: \"#mod-flash-warning\",\n info: \"#mod-flash-info\",\n}\n\nconst Notifier = {\n closeAll(){\n getNoty()\n .then((Noty) => {\n Noty.closeAll()\n })\n },\n showNotice(message: string, timeout: number = 3000){\n getNoty()\n .then((Noty) => {\n new Noty({\n text: message,\n timeout: timeout,\n }).show()\n })\n },\n showSuccess(message: string, timeout: number = 3000){\n getNoty()\n .then((Noty) => {\n new Noty({\n text: message,\n type: \"success\",\n timeout: timeout,\n }).show()\n })\n },\n showError(message: string, timeout: number = 3000){\n getNoty()\n .then((Noty) => {\n new Noty({\n text: message,\n type: \"error\",\n timeout: timeout,\n }).show()\n })\n },\n showWarning(message: string, timeout: number = 3000){\n getNoty()\n .then((Noty) => {\n new Noty({\n text: message,\n type: \"warning\",\n timeout: timeout,\n }).show()\n })\n },\n showInfo(message: string, timeout: number = 3000){\n getNoty()\n .then((Noty) => {\n new Noty({\n text: message,\n type: \"information\",\n timeout: timeout,\n }).show()\n })\n },\n // facade pattern\n show(type: string, message: string, timeout: number = 3000){\n switch (type){\n case \"notice\":\n Notifier.showNotice(message, timeout)\n break\n\n case \"success\":\n Notifier.showSuccess(message, timeout)\n break\n\n case \"error\":\n Notifier.showError(message, timeout)\n break\n\n case \"warning\":\n Notifier.showWarning(message, timeout)\n break\n\n case \"info\":\n Notifier.showInfo(message, timeout)\n break\n\n default:\n break\n }\n },\n\n onPageLoad(){\n requestIdleCallback(() => {\n on_domready(() => {\n WaitObjectByPathPromise(\"window._spacious_main_css_loaded\")\n .then(() => {\n Object.entries(text_selectors).forEach(([msg_type, dom_selector]) => {\n // jquery text must return string so we only check empty string\n const text: string = u(dom_selector).text()\n\n if ( text.trim().length > 0 ){\n Notifier.show(msg_type, text)\n }\n })\n })\n .done()\n })\n })\n },\n\n showSpaciousBlackAlert(message: string, timeout: number | false = false) {\n import(\n \"noty\"\n )\n .then(({default: Noty}) => {\n new Noty({\n text: message,\n timeout: timeout,\n type: \"alert\",\n layout: \"bottomLeft\",\n theme: \"mint\",\n progressBar: false,\n }).show()\n })\n },\n}\n\nexport default Notifier\n"],"file":"assets/index-CxF2x3mH.js"}