{"version":3,"file":"index-14366b0a.js","sources":["../../../../app/frontend/components/b2c/marketplace_landing_page/cardsSectionController.js","../../../../app/frontend/components/b2c/marketplace_landing_page/relatedArticlesController.js","../../../../app/frontend/components/b2c/marketplace_landing_page/moreProvidersLinkController.js","../../../../app/frontend/components/shared/nativeApp.ts","../../../../app/frontend/components/b2c/marketplace_landing_page/nativeAppLinks.js","../../../../app/frontend/components/b2c/marketplace_landing_page/index.js"],"sourcesContent":["import Glide from '@glidejs/glide';\nimport Sizes from '../../../components/shared/glide_fixed_width_slides';\n\nconst options = {\n type: 'carousel',\n startAt: 0,\n gap: 24,\n perView: 2.2,\n slideWidth: 376,\n peek: {\n before: 0,\n after: 0,\n },\n breakpoints: {\n 1300: {\n perView: 2.2,\n },\n 800: {\n perView: 2,\n slideWidth: 330,\n },\n 675: {\n perView: 1.5,\n },\n 550: {\n perView: 1.15,\n },\n },\n};\n\ndocument\n .querySelectorAll('.marketplace-cards-section__cards.glide')\n .forEach((el) => {\n const cardsGlider = new Glide(el, options);\n cardsGlider.mount(Sizes);\n });\n","import Glide from '@glidejs/glide';\nimport Sizes from '../../../components/shared/glide_fixed_width_slides';\n\nconst options = {\n type: 'carousel',\n startAt: 0,\n perView: 4,\n slideWidth: 243,\n gap: 23,\n peek: {\n before: 0,\n after: 0,\n },\n breakpoints: {\n 320: {\n type: 'carousel',\n perView: 1.2,\n },\n },\n};\n\ndocument\n .querySelectorAll('.marketplace-related-articles__posts.glide')\n .forEach((el) => {\n const cardsGlider = new Glide(el, options);\n cardsGlider.mount(Sizes);\n });\n","import { setUpModals } from '~/components/shared/controllers/modalController';\n\nconst moreProvidersLink = document.querySelector('[data-more-providers-link]');\n\nconst loadMoreProviders = () => {\n updateButtonToPending();\n const url = createMoreProvidersUrl();\n fetch(url)\n .then((response) => response.text())\n .then((data) => {\n handleNewProvidersData(data);\n });\n};\n\nconst updateButtonToPending = () => {\n const innerText = moreProvidersLink.innerText;\n moreProvidersLink.dataset.innerText = innerText;\n moreProvidersLink.innerText = '';\n moreProvidersLink.classList.add('loading');\n};\n\nconst createMoreProvidersUrl = () => {\n const currentProviderPage = moreProvidersLink.getAttribute(\n 'data-current-provider-page',\n );\n const nextPage = parseInt(currentProviderPage) + 1;\n const currentHref = window.location.href;\n const url = new URL(currentHref);\n url.searchParams.set('page', nextPage);\n url.searchParams.set('additional_listings', 'true');\n moreProvidersLink.setAttribute('data-current-provider-page', nextPage);\n return url;\n};\n\nconst handleNewProvidersData = (data) => {\n const parser = new DOMParser();\n const html = parser.parseFromString(data, 'text/html');\n const allCards = document.querySelectorAll('.cards');\n const cards = allCards[allCards.length - 1];\n const newCards = html.querySelector('.cards');\n\n if (!newCards) {\n removeMoreProvidersLink(cards);\n } else {\n addNewModals(html);\n addNewCards(cards, newCards);\n updatePageScroll(cards, newCards);\n updateButtonToComplete();\n setUpModals();\n setTimeout(() => {\n newCards.classList.remove('new-cards');\n }, 10);\n }\n};\n\nconst removeMoreProvidersLink = (cards) => {\n moreProvidersLink.remove();\n const noMoreProviders = document.createElement('h4');\n noMoreProviders.innerText = 'No more providers meeting your criteria to show';\n noMoreProviders.style = 'text-align: center;';\n cards.insertAdjacentElement('afterend', noMoreProviders);\n};\n\nconst addNewModals = (html) => {\n const newModals = html.querySelector('.marketplace_landing_page__modals');\n const newModalsContent = newModals.innerHTML;\n const currentModals = document.querySelector('[data-modal-container]');\n currentModals.insertAdjacentHTML('beforeend', newModalsContent);\n};\n\nconst addNewCards = (cards, newCards) => {\n newCards.classList.add('new-cards');\n cards.insertAdjacentElement('afterend', newCards);\n};\n\nconst updatePageScroll = (cards) => {\n // this method improves the user experience. It is not perfect but it is better than it is without it.\n\n if (window.innerWidth < 1290) {\n return;\n }\n\n const scrollY = window.scrollY;\n const cardsTop = cards.getBoundingClientRect().top;\n const scrollPoint = scrollY + cardsTop + 100;\n if (scrollPoint < scrollY) {\n window.scrollTo(0, scrollPoint);\n }\n};\n\nconst updateButtonToComplete = () => {\n const updatedMoreProvidersLink = document.querySelector(\n '[data-more-providers-link]',\n );\n const innerText = updatedMoreProvidersLink.dataset.innerText;\n updatedMoreProvidersLink.classList.remove('loading');\n updatedMoreProvidersLink.innerText = innerText;\n};\n\nif (moreProvidersLink) {\n moreProvidersLink.addEventListener('click', function () {\n loadMoreProviders();\n });\n}\n","const NATIVE_OPEN_URL = 'openNativeUrl';\nconst NATIVE_SET_SAFE_AREA_COLOR = 'setSafeAreaColor';\nconst NATIVE_ACCEPT_PUSH_NOTIFICATIONS = 'handleAcceptIosPushNative';\nconst NATIVE_DIRECT_TO_SETTINGS = 'directToSettings';\nconst NATIVE_NOTIFICATIONS_ENABLED = 'notificationsEnabled';\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nconst NATIVE_SHOW_FIRST_PUSH_PERMISSIONS_PROMPT =\n 'shouldShowModalFullScreenPushPrompt';\nconst NATIVE_SHOW_SECOND_PUSH_PERMISSIONS_PROMPT = 'shouldShowPushPrompt';\nconst NATIVE_ASK_FOR_NATIVE_APP_RATING = 'askForRating';\n\ninterface GenericNativeFunction {\n (...args: any[]): void;\n}\n\ninterface GetNativeFunction {\n /** If the native function actually exists */\n exists: boolean;\n /**\n * Call the native function or the fallback\n * default function if it doesn't exist\n */\n call: C;\n}\n\n/**\n * Get a function to interface with the native Solv app.\n *\n * Returns an object with two properties, the .call property contains\n * the window function if it exists, else an empty object. The .exists\n * property allows you to easily check that the function was called.\n * @param functionName name of function to retrieve\n * @returns existsAndCallObject a call and an exists property\n */\nexport const getNativeFunction = (\n functionName: any,\n): GetNativeFunction => {\n const exists =\n typeof window !== 'undefined' && typeof window[functionName] === 'function';\n return {\n call: (exists ? window[functionName] : () => ({})) as unknown as C,\n exists,\n };\n};\n\nexport const getNativeFlag = (flagName: any): boolean => {\n const exists =\n typeof window !== 'undefined' && typeof window[flagName] === 'boolean';\n return exists ? (window[flagName] as unknown as boolean) : false;\n};\n\n/**\n * Helper class to support the growing list of native functions.\n *\n * Typed out following the function signatures of the\n * `webviewInjectedJavascript.ts` file inside of mapp-native repo.\n */\nexport class NativeFunctions {\n /**\n * Check if the current app is the native app.\n * @returns true if the current app is the native app, false otherwise.\n */\n static get isNativeApp() {\n return this.openNativeUrl.exists;\n }\n\n /**\n * Open a URL in the native browser.\n * @returns a wrapped native function that can open a URL in the native browser.\n */\n static get openNativeUrl() {\n return getNativeFunction<(url: string) => void>(NATIVE_OPEN_URL);\n }\n\n /**\n * Set the safe area/title bar color on the native app.\n * @returns a wrapped native function that can set the safe area/title bar color.\n */\n static get setSafeAreaColor() {\n return getNativeFunction<(color: string) => void>(\n NATIVE_SET_SAFE_AREA_COLOR,\n );\n }\n\n /**\n * Handle the user accepting push notifications on iOS OR ANDROID (poorly named old function).\n * @returns a wrapped native function that can handle the user accepting push notifications.\n */\n static get handleAcceptIosPushNative() {\n return getNativeFunction<(origin?: string) => void>(\n NATIVE_ACCEPT_PUSH_NOTIFICATIONS,\n );\n }\n\n /**\n * Direct the user to the settings page on native.\n * @returns a wrapped native function that can direct the user to the settings page.\n */\n static get directToSettings() {\n return getNativeFunction<() => void>(NATIVE_DIRECT_TO_SETTINGS);\n }\n\n static get askForNativeAppRating() {\n return getNativeFunction<() => void>(NATIVE_ASK_FOR_NATIVE_APP_RATING);\n }\n}\n\nexport class NativeFlags {\n static get notificationsEnabled() {\n return getNativeFlag(NATIVE_NOTIFICATIONS_ENABLED);\n }\n\n static get shouldShowInitialPushNotificationsPermissionsPrompt() {\n return getNativeFlag(NATIVE_SHOW_FIRST_PUSH_PERMISSIONS_PROMPT);\n }\n\n static get shouldShowFollowUpPushNotificationsPermissionsPrompt() {\n return getNativeFlag(NATIVE_SHOW_SECOND_PUSH_PERMISSIONS_PROMPT);\n }\n}","import {\n getNativeFlag,\n getNativeFunction,\n NativeFunctions,\n NativeFlags,\n} from '@/components/shared/nativeApp';\n\nconst nativeAppBanner = document.querySelector('header.solv-native-app-header');\nconst isInNativeApp = nativeAppBanner !== null;\nconsole.log(isInNativeApp);\nif (isInNativeApp) {\n const backButton = nativeAppBanner.querySelector('[data-back-button]');\n backButton.addEventListener('click', () => {\n window.history.back();\n });\n\n const allPageLinks = document.querySelectorAll('a');\n allPageLinks.forEach((link) => {\n link.addEventListener('click', (e) => {\n if (link.dataset.inAppLink === 'true') {\n // open this link in the native app\n return;\n } else {\n // open this link in an external browser\n e.preventDefault();\n NativeFunctions.openNativeUrl.call(link.href);\n }\n });\n });\n}\n","import { setUpModals } from '~/components/shared/controllers/modalController';\nimport './cardsSectionController';\nimport './relatedArticlesController';\nimport './moreProvidersLinkController';\nimport './nativeAppLinks';\n\nsetUpModals();\n"],"names":["options","el","Glide","Sizes","moreProvidersLink","loadMoreProviders","updateButtonToPending","url","createMoreProvidersUrl","response","data","handleNewProvidersData","innerText","currentProviderPage","nextPage","currentHref","html","allCards","cards","newCards","addNewModals","addNewCards","updatePageScroll","updateButtonToComplete","setUpModals","removeMoreProvidersLink","noMoreProviders","newModalsContent","scrollY","cardsTop","scrollPoint","updatedMoreProvidersLink","NATIVE_OPEN_URL","NATIVE_SET_SAFE_AREA_COLOR","NATIVE_ACCEPT_PUSH_NOTIFICATIONS","NATIVE_DIRECT_TO_SETTINGS","NATIVE_ASK_FOR_NATIVE_APP_RATING","getNativeFunction","functionName","exists","NativeFunctions","nativeAppBanner","isInNativeApp","link","e"],"mappings":"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"}