{"version":3,"file":"useCmsPusher-BpO8Vllx.js","sources":["../../../app/javascript/src/utils/pusher/useCmsPusher.js"],"sourcesContent":["import Pusher from \"pusher-js\";\nimport { useRouter } from \"vue-router\";\nimport { metaTagContent } from \"@/helpers/documentHelpers.js\";\n\nexport const cmsRoutes = ['cms_essentials', 'cms_accommodation', 'cms_itinerary', 'cms_pricing', 'cms_addons', 'cms_policies', 'cms_marketing'];\n\nexport function useCmsPusher() {\n const pusher = createPusherGlobalInstance();\n\n const subscribedChannels = () => pusher.allChannels().filter(c => c.subscribed).map(c => c.name);\n\n const unsubscribeAllChannels = () => subscribedChannels().forEach(c => pusher.unsubscribe(c));\n\n const subscribeToPresenceChannel = (channelName) => {\n const channel = pusher.subscribe(channelName);\n const getMembers = () => Object.entries(channel.members.members)\n .filter(([id, _]) => id != channel.members.me.id)\n .map(([_, m]) => m);\n channel.bindMembers = (fn) => {\n channel.bind(\"pusher:subscription_succeeded\", () => fn(getMembers()));\n channel.bind(\"pusher:member_added\", () => fn(getMembers()));\n channel.bind(\"pusher:member_removed\", () => fn(getMembers()));\n };\n return channel;\n };\n\n function subscribeToDraftItineraryChannel(draftId) {\n const channelPrefix = 'presence-draft-itinerary-';\n const channelName = channelPrefix + draftId;\n // unsub from all other draft itinerary channels\n subscribedChannels()\n .filter(c => c.startsWith(channelPrefix) && c !== channelName)\n .forEach(c => pusher.unsubscribe(c));\n return subscribeToPresenceChannel(channelName);\n }\n\n pusher.connect();\n\n return {\n pusher,\n unsubscribeAllChannels,\n subscribeToDraftItineraryChannel\n };\n}\n\nexport function disconnectPusher() {\n if (window.pusher) {\n useCmsPusher().unsubscribeAllChannels();\n }\n}\n\nexport function registerOperatorDashboardPusherRoutes() {\n const router = useRouter();\n router.afterEach((r) => {\n if (!cmsRoutes.includes(r.name)) {\n disconnectPusher();\n }\n })\n}\n\nfunction createPusherGlobalInstance() {\n return window.pusher ??= new Pusher(PUSHER_KEY, {\n cluster: PUSHER_CLUSTER,\n channelAuthorization: {\n endpoint: \"/api/pusher/chat-auth\",\n headers: {\n \"X-CSRF-Token\": metaTagContent('csrf-token')\n },\n }\n });\n}"],"names":["cmsRoutes","useCmsPusher","pusher","createPusherGlobalInstance","subscribedChannels","c","unsubscribeAllChannels","subscribeToPresenceChannel","channelName","channel","getMembers","id","_","m","fn","subscribeToDraftItineraryChannel","draftId","channelPrefix","disconnectPusher","registerOperatorDashboardPusherRoutes","useRouter","r","Pusher","metaTagContent"],"mappings":"yIAIa,MAAAA,EAAY,CAAC,iBAAkB,oBAAqB,gBAAiB,cAAe,aAAc,eAAgB,eAAe,EAEvI,SAASC,GAAe,CAC7B,MAAMC,EAASC,EAA2B,EAEpCC,EAAqB,IAAMF,EAAO,YAAc,EAAA,OAAYG,GAAAA,EAAE,UAAU,EAAE,IAAIA,GAAKA,EAAE,IAAI,EAEzFC,EAAyB,IAAMF,EAAmB,EAAE,QAAaC,GAAAH,EAAO,YAAYG,CAAC,CAAC,EAEtFE,EAA8BC,GAAgB,CAC5C,MAAAC,EAAUP,EAAO,UAAUM,CAAW,EACtCE,EAAa,IAAM,OAAO,QAAQD,EAAQ,QAAQ,OAAO,EAC5D,OAAO,CAAC,CAACE,EAAIC,CAAC,IAAMD,GAAMF,EAAQ,QAAQ,GAAG,EAAE,EAC/C,IAAI,CAAC,CAACG,EAAGC,CAAC,IAAMA,CAAC,EACZ,OAAAJ,EAAA,YAAeK,GAAO,CAC5BL,EAAQ,KAAK,gCAAiC,IAAMK,EAAGJ,EAAY,CAAA,CAAC,EACpED,EAAQ,KAAK,sBAAuB,IAAMK,EAAGJ,EAAY,CAAA,CAAC,EAC1DD,EAAQ,KAAK,wBAAyB,IAAMK,EAAGJ,EAAY,CAAA,CAAC,CAC9D,EACOD,CACT,EAEA,SAASM,EAAiCC,EAAS,CACjD,MAAMC,EAAgB,4BAChBT,EAAcS,EAAgBD,EAEpC,OAAAZ,EAAA,EACG,OAAYC,GAAAA,EAAE,WAAWY,CAAa,GAAKZ,IAAMG,CAAW,EAC5D,QAAQH,GAAKH,EAAO,YAAYG,CAAC,CAAC,EAC9BE,EAA2BC,CAAW,CAAA,CAG/C,OAAAN,EAAO,QAAQ,EAER,CACL,OAAAA,EACA,uBAAAI,EACA,iCAAAS,CACF,CACF,CAEO,SAASG,GAAmB,CAC7B,OAAO,QACTjB,EAAA,EAAe,uBAAuB,CAE1C,CAEO,SAASkB,GAAwC,CACvCC,EAAU,EAClB,UAAWC,GAAM,CACjBrB,EAAU,SAASqB,EAAE,IAAI,GACXH,EAAA,CACnB,CACD,CACH,CAEA,SAASf,GAA6B,CACpC,OAAO,OAAO,SAAP,OAAO,OAAW,IAAImB,EAAO,uBAAY,CAC9C,QAAS,MACT,qBAAsB,CACpB,SAAU,wBACV,QAAS,CACP,eAAgBC,EAAe,YAAY,CAAA,CAC7C,CACF,CACD,EACH"}