{"version":3,"mappings":"wCAEA,MAAMA,EAAuB,sBAO7B,eAAsBC,EAAmB,CACxC,KAAAC,EACA,iBAAAC,CACD,EAAsG,GAAI,CACrG,IAAAC,EAAU,SAAS,cAAcJ,CAAoB,EACrDI,GAAW,OACdC,EAAA,WAAO,gCAAiC,gDAC9BD,EAAA,SAAS,cAAcJ,CAAoB,EAC5C,cAAK,YAAYI,CAAO,GAG1BA,EAAA,gBAAgB,qBAAsBD,GAAoB,EAAK,EAC/DC,EAAA,gBAAgB,YAAaF,GAAQ,EAAK,CACnD,CAEO,SAASI,GAAqB,CAC9B,MAAAF,EAAU,SAAS,cAAcJ,CAAoB,EACvDI,GAAW,MAAMA,EAAQ,OAAO,CACrC","names":["LIVE_CHAT_BUTTON_TAG","loadLiveChatButton","open","removeWhenClosed","$button","__vitePreload","hideLiveChatButton"],"sources":["../../src/util/intercom-util.ts"],"sourcesContent":["import { User, Workspace } from \"shared\";\n\nconst LIVE_CHAT_BUTTON_TAG = \"bs-live-chat-button\";\n\n/**\n * Loads the live chat button async.\n * @param open\n * @param userData\n */\nexport async function loadLiveChatButton({\n\topen,\n\tremoveWhenClosed\n}: { open?: boolean; user?: User | null; workspace?: Workspace | null; removeWhenClosed?: boolean } = {}) {\n\tlet $button = document.querySelector(LIVE_CHAT_BUTTON_TAG);\n\tif ($button == null) {\n\t\timport(\"./../molecules/live-chat-button\");\n\t\t$button = document.createElement(LIVE_CHAT_BUTTON_TAG);\n\t\tdocument.body.appendChild($button);\n\t}\n\n\t$button.toggleAttribute(\"remove-when-closed\", removeWhenClosed ?? false);\n\t$button.toggleAttribute(\"auto-open\", open ?? false);\n}\n\nexport function hideLiveChatButton() {\n\tconst $button = document.querySelector(LIVE_CHAT_BUTTON_TAG);\n\tif ($button != null) $button.remove();\n}\n"],"file":"src/intercom-util-zEuTm3nL.js"}