{"version":3,"file":"static/js/main.3fde0b04.chunk.js","sources":["utils/userHelper.js","utils/apiHelpers.js","components/logo/styles.js","components/logo/Logo.js","components/close-button/styles.js","components/close-icon/styles.js","components/close-icon/CloseIcon.js","components/close-button/CloseButton.js","components/loading/message/styles.js","components/loading/message/Message.js","components/loading/Loading.js","layouts/private-layout/index.js","hoc/checklist/withChecklist.js","components/button/styles.js","components/button/Button.js","components/loading-box/styles.js","components/loading-box/LoadingBox.js","components/head/Head.js","utils/dataHelpers.js","components/arrow/styles.js","components/arrow/Arrow.js","components/loading-spinner/LoadingSpinner.js","components/incompletion/Incompletion.js","components/heading/styles.js","components/heading/Heading.js","layouts/private-layout/styles.js","layouts/private-layout/PrivateLayout.js","context/MenuContext.js","components/menu/styles.js","components/menu/top/styles.js","components/menu/top/Top.js","components/menu/profile-info/styles.js","components/menu/profile-info/ProfileInfo.js","components/menu/items/styles.js","components/menu/items/Items.js","components/menu/mobile-application-list/styles.js","components/menu/mobile-application-list/MobileApplicationList.js","components/live-chat/LiveChat.js","integrations/IntegrationLiveChatWidget.js","components/menu/Menu.js","components/header/styles.js","components/tagline/styles.js","components/tagline/Tagline.js","components/open-menu-button/styles.js","components/open-menu-button/OpenMenuButton.js","components/open-messages-button/styles.js","components/open-messages-button/OpenMessagesButton.js","components/open-notifications-button/styles.js","components/open-notifications-button/OpenNotificationsButton.js","components/header/Header.js","layouts/loading-layout/styles.js","layouts/loading-layout/LoadingLayout.js","components/application-progress/styles.js","components/application-progress/ApplicationProgress.js","context/UserContext.js","utils/sentry.js","routes/public-route/redirect-to-home/RedirectToHome.js","routes/public-route/PublicRoute.js","routes/private-route/redirect-to-login/RedirectToLogin.js","routes/private-route/PrivateRoute.js","routes/Routes.js","utils/googleTagHelpers.js","utils/fathomSiteHelpers.js","components/app/App.js","index.js","utils/tabHelpers.js","components/loading-spinner/styles.js","assets/images/backgrounds/smallerearth.jpg","themes/smallerearth.js","assets/images/backgrounds/campleaders.jpg","themes/campleaders.js","assets/images/backgrounds/resortleaders.jpg","themes/resortleaders.js","assets/images/backgrounds/adventurechina.jpg","themes/adventurechina.js","assets/images/backgrounds/adventureasia.jpg","themes/adventureasia.js","assets/images/backgrounds/campcanada.jpg","themes/campcanada.js","assets/images/backgrounds/americancampco.jpg","themes/americancampco.js","assets/images/backgrounds/canago.jpg","themes/canago.js","themes/index.js","brands/index.js","brands/smallerearth.js","brands/campleaders.js","brands/resortleaders.js","brands/adventurechina.js","brands/adventureasia.js","brands/campcanada.js","brands/americancampco.js","brands/canago.js","utils/siteHelpers.js","components/separator/styles.js","components/separator/Separator.js","utils/stringHelpers.js","context/BrandContext.js"],"sourceRoot":"","sourcesContent":["export const touchUserContextData = (context) => {\n context.setUser({\n ...context.user,\n touchedAt: Date.now()\n })\n}\n","import { touchUserContextData } from \"@helpers/userHelper\"\n\nexport function getRequest(path, token = \"\", userContext = null, signal = null, version = \"v1\") {\n const base = version === \"v1\" ? process.env.REACT_APP_API_BASE_URL : process.env.REACT_APP_API_V2_BASE_URL\n const payload = {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-API-KEY\": process.env.REACT_APP_API_KEY,\n \"X-AUTH-TOKEN\": token\n }\n }\n if (signal !== null) payload[\"signal\"] = signal\n return fetch(`${base}${path}`, payload).then((response) => {\n if (signal !== null && signal.aborted) {\n return false\n } else {\n if (userContext !== null) touchUserContextData(userContext)\n return handleResponse(response)\n }\n })\n}\n\nexport function getFileRequest(url, token = \"\") {\n return fetch(url, {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-API-KEY\": process.env.REACT_APP_API_KEY,\n \"X-AUTH-TOKEN\": token\n }\n }).then((response) => handleFileErrors(response))\n}\n\nexport function postRequest(path, token = \"\", body = \"\", userContext = null, version = \"v1\") {\n const base = version === \"v1\" ? process.env.REACT_APP_API_BASE_URL : process.env.REACT_APP_API_V2_BASE_URL\n return fetch(`${base}${path}`, {\n method: \"POST\",\n body: body,\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-API-KEY\": process.env.REACT_APP_API_KEY,\n \"X-AUTH-TOKEN\": token\n }\n }).then((response) => {\n if (userContext !== null) touchUserContextData(userContext)\n return handleResponse(response)\n })\n}\n\nexport function patchRequest(path, token = \"\", body = \"\", userContext = null) {\n return fetch(`${process.env.REACT_APP_API_BASE_URL}${path}`, {\n method: \"PATCH\",\n body: body,\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-API-KEY\": process.env.REACT_APP_API_KEY,\n \"X-AUTH-TOKEN\": token\n }\n }).then((response) => {\n if (userContext !== null) touchUserContextData(userContext)\n return handleResponse(response)\n })\n}\n\nexport function patchRequestNoContentType(path, token = \"\", body = \"\", userContext = null) {\n return fetch(`${process.env.REACT_APP_API_BASE_URL}${path}`, {\n method: \"PATCH\",\n body: body,\n headers: {\n \"X-API-KEY\": process.env.REACT_APP_API_KEY,\n \"X-AUTH-TOKEN\": token\n }\n }).then((response) => {\n if (userContext !== null) touchUserContextData(userContext)\n return handleResponse(response)\n })\n}\n\nexport function deleteRequest(path, token = \"\", userContext = null) {\n return fetch(`${process.env.REACT_APP_API_BASE_URL}${path}`, {\n method: \"DELETE\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-API-KEY\": process.env.REACT_APP_API_KEY,\n \"X-AUTH-TOKEN\": token\n }\n }).then((response) => {\n if (userContext !== null) touchUserContextData(userContext)\n return handleResponse(response)\n })\n}\n\nfunction handleResponse(response) {\n try {\n return response.json().then((result) => {\n // if (process.env.REACT_APP_ENV === 'development') console.log(result)\n console.log(result)\n\n if (shouldInterceptResponse(response)) {\n interceptResponse(response)\n }\n\n if (response.ok) {\n return result\n } else {\n return handleErrors(result)\n }\n })\n } catch (error) {\n console.error(error)\n throw new Error(response.statusText)\n }\n}\n\nfunction shouldInterceptResponse(response) {\n // process unless we are hitting sign_in\n const url = response?.url\n if (!url) return true\n if (url.includes(\"/sessions/sign_in\")) return false\n return response.status === 401\n}\n\nfunction interceptResponse(response) {\n switch (response.status) {\n case 401:\n intercept401Response(response)\n break\n default:\n break\n }\n}\n\nfunction intercept401Response(response) {\n let authState = {\n isAuthenticated: false,\n user: {}\n }\n\n document.cookie = `authState=; path=/; max-age=0;`\n sessionStorage[\"authState\"] = JSON.stringify(authState)\n\n window.location.href = `/login?code=${response.status}&redirect_to=${window.location.pathname}`\n}\n\nfunction handleErrors(result) {\n console.log(\"result\", result)\n throw new Error(extractErrorFromResult(result))\n}\n\nfunction extractErrorFromResult(result) {\n try {\n if (\"error\" in result) {\n if (typeof result[\"error\"] === \"object\" && result[\"error\"] !== null) return result[\"error\"][\"message\"]\n else return result[\"error\"]\n } else if (\"errors\" in result && Array.isArray(result[\"errors\"])) {\n return result[\"errors\"].join(\", \").replace('[\"', \"\").replace('\"]', \"\")\n } else if (\"message\" in result) {\n return result[\"message\"]\n } else {\n return \"Something went wrong\"\n }\n } catch (error) {\n console.error(error)\n return \"Something went wrong\"\n }\n}\n\nfunction handleFileErrors(response) {\n console.log(response)\n if (response.ok) return response.blob()\n else throw new Error(response.statusText)\n}\n\nexport function prepareParams(object = {}, whitelist = []) {\n return Object.keys(object)\n .filter((key) => whitelist.includes(key))\n .reduce((obj, key) => {\n obj[key] = object[key]\n return obj\n }, {})\n}\n","import styled, { css } from \"styled-components\"\nimport breakpoint from \"styled-components-breakpoint\"\n\nexport const Container = styled.div`\n width: 60%;\n position: relative;\n top: 2px;\n display: flex;\n align-items: center;\n max-width: 50%;\n\n ${breakpoint(\"tablet\")`\n max-width: 60%;\n `}\n\n ${(props) =>\n props.small &&\n css`\n width: 30%;\n `}\n\n ${(props) =>\n props.medium &&\n css`\n width: 44%;\n\n ${breakpoint(\"tablet\")`\n width: 30%;\n `}\n `}\n\n ${(props) =>\n props.mobileOnly &&\n css`\n height: 25px;\n\n > img {\n height: 100%;\n width: auto;\n }\n `}\n\n ${(props) =>\n props.mobileOnly &&\n breakpoint(\"desktop\")`\n display: none;\n `}\n\n ${(props) =>\n props.marginBottom &&\n css`\n margin-bottom: 60px;\n `}\n\n\n ${breakpoint(\"desktop\")`\n top: 0;\n max-width: 300px;\n `}\n`\n\nexport const Img = styled.img`\n width: 100%;\n`\n","import React, { Component } from \"react\"\nimport BrandContext from \"@context/BrandContext.js\"\nimport { Container, Img } from \"./styles\"\nimport PropTypes from \"prop-types\"\nclass Logo extends Component {\n static contextType = BrandContext\n\n render() {\n const src = this.props.coloured\n ? `/assets/${this.context.name}/coloured_logo.svg`\n : `/assets/${this.context.name}/logo.svg`\n return (\n \n