\r\n \r\n Have we met before? If so,\r\n you can login here. \r\n \r\n \r\n If you're new to the app, we're happy to see a new face. To get more out of the app,\r\n we recommend\r\n registering an account here. \r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n Membership expires\r\n
\r\n
\r\n {{ $moment(membershipExpires).format('dddd, Do MMMM YYYY') }}\r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./desktopHeader.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./desktopHeader.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./desktopHeader.vue?vue&type=template&id=3e6bb08b&\"\nimport script from \"./desktopHeader.vue?vue&type=script&lang=js&\"\nexport * from \"./desktopHeader.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\r\n
\r\n \r\n
\r\n \r\n
\r\n\r\n
\r\n
\r\n \r\n \r\n\r\n
\r\n \r\n
\r\n\r\n
\r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n {{ windowView }}\r\n
\r\n
\r\n\r\n \r\n\r\n
\r\n You are currently impersonating {{ username }}\r\n
\r\n\r\n
\r\n \r\n
\r\n\r\n \r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n\r\n \r\n\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./app.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./app.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./app.vue?vue&type=template&id=0bcc397d&\"\nimport script from \"./app.vue?vue&type=script&lang=js&\"\nexport * from \"./app.vue?vue&type=script&lang=js&\"\nimport style0 from \"../assets/site.css?vue&type=style&index=0&prod&lang=css&\"\nimport style1 from \"./app.vue?vue&type=style&index=1&id=0bcc397d&prod&lang=scss&\"\nimport style2 from \"./app.vue?vue&type=style&index=2&id=0bcc397d&prod&lang=scss&\"\nimport style3 from \"./app.vue?vue&type=style&index=3&id=0bcc397d&prod&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","/* eslint-disable no-param-reassign */\r\nimport { Services } from 'pmg-services';\r\nimport { Datetime } from 'vue-datetime';\r\nimport 'vue-datetime/dist/vue-datetime.css';\r\n\r\nimport Vue from 'vue';\r\nimport VueOffline from 'vue-offline';\r\nimport VueBbob from '@bbob/vue2';\r\nimport VueTour from 'vue-tour';\r\n\r\nimport * as Sentry from '@sentry/vue';\r\nimport { BrowserTracing } from '@sentry/tracing';\r\n\r\nimport { store } from '@/app/shared/stores/store';\r\nimport { Events } from '@/app/shared/events';\r\nimport i18n from '@/i18n';\r\nimport router from '@/app/app-routes';\r\nimport App from '@/app/app.vue';\r\nimport moment from 'moment';\r\nimport Vue2TouchEvents from 'vue2-touch-events';\r\nimport VueCompositionAPI from '@vue/composition-api';\r\nimport mixpanel from 'mixpanel-browser';\r\n\r\nrequire('vue-tour/dist/vue-tour.css');\r\n\r\nVue.config.productionTip = false;\r\nVue.prototype.$services = new Services({\r\n apiUrl: `${process.env.VUE_APP_API_URL}/api/`,\r\n withCredentials: true,\r\n nodeEnv: process.env.VUE_APP_ENV,\r\n redirect401: process.env.VUE_APP_ENV_RESTRICTED !== 'true',\r\n unauthorizedRoute: `${process.env.VUE_APP_BASE_URL}Login`,\r\n stripePK: process.env.VUE_APP_STRIPE_API_KEY,\r\n});\r\n\r\nVue.prototype.$moment = moment;\r\nVue.prototype.$event = new Events(Vue.prototype);\r\n\r\nVue.use(VueCompositionAPI);\r\nVue.use(Datetime);\r\nVue.use(Vue2TouchEvents);\r\nVue.use(VueTour);\r\n\r\n// pretty sure where it was before it was being applied globally anyway\r\nVue.use(VueBbob);\r\n\r\n// To-do: no need to inject into every component\r\n// https://www.npmjs.com/package/vue-offline\r\nVue.use(VueOffline);\r\n\r\nVue.directive('click-outside', {\r\n bind(el, binding, vnode) {\r\n el.eventSetDrag = () => {\r\n el.setAttribute('data-dragging', 'yes');\r\n };\r\n el.eventClearDrag = () => {\r\n el.removeAttribute('data-dragging');\r\n };\r\n el.eventOnClick = (event) => {\r\n const dragging = el.getAttribute('data-dragging');\r\n // Check that the click was outside the el and its children, and wasn't a drag\r\n if (!(el === event.target || el.contains(event.target)) && !dragging) {\r\n // call method provided in attribute value\r\n vnode.context[binding.expression](event);\r\n }\r\n };\r\n document.addEventListener('touchstart', el.eventClearDrag);\r\n document.addEventListener('touchmove', el.eventSetDrag);\r\n document.addEventListener('click', el.eventOnClick);\r\n document.addEventListener('touchend', el.eventOnClick);\r\n },\r\n unbind(el) {\r\n document.removeEventListener('touchstart', el.eventClearDrag);\r\n document.removeEventListener('touchmove', el.eventSetDrag);\r\n document.removeEventListener('click', el.eventOnClick);\r\n document.removeEventListener('touchend', el.eventOnClick);\r\n el.removeAttribute('data-dragging');\r\n },\r\n});\r\n\r\nVue.directive('local-img', {\r\n // When the bound element is inserted into the DOM...\r\n inserted: (el, binding) => {\r\n if (binding.value.includes('https://')) {\r\n el.src = binding;\r\n } else {\r\n el.src = `${process.env.VUE_APP_BASE_URL}img/${binding.value}`;\r\n }\r\n },\r\n});\r\n\r\nVue.directive('local-img-bg', {\r\n // When the bound element is inserted into the DOM...\r\n inserted: (el, binding) => {\r\n const backgroundText = binding.value.match(/(?=url\\().*?(?=\\))/);\r\n backgroundText[0] = backgroundText[0].replace('\"', '');\r\n backgroundText[0] = backgroundText[0].replace('url(', '');\r\n const backgroundTextToUse = binding.value.replace(\r\n backgroundText[0],\r\n `\"${process.env.VUE_APP_BASE_URL}img/${backgroundText[0]}\"`,\r\n );\r\n const cssToUse = `background-image: ${backgroundTextToUse}`;\r\n el.style.cssText += cssToUse;\r\n },\r\n});\r\nVue.prototype.$logError = (err) => {\r\n console.log(err);\r\n};\r\n\r\nVue.prototype.$isProduction = process.env.VUE_APP_ENV === 'production';\r\n\r\nVue.prototype.$isStandard = process.env.VUE_APP_PMG_ENV === 'Standard';\r\nVue.prototype.$isNine = process.env.VUE_APP_PMG_ENV === 'IX';\r\n\r\nVue.prototype.$isMobileApp = process.env.VUE_APP_ENV === 'cordova';\r\nVue.prototype.$isMobile = Vue.observable({\r\n value: process.env.VUE_APP_ENV === 'cordova' || window.innerWidth < 924,\r\n});\r\n\r\nVue.prototype.$isIOS = process.env.VUE_APP_ENV === 'cordova' && process.env.VUE_APP_CORDOVA_PLATFORM === 'ios';\r\nVue.prototype.$isAndroid = process.env.VUE_APP_ENV === 'cordova' && process.env.VUE_APP_CORDOVA_PLATFORM === 'android';\r\n\r\n// maybe wrong but easy and feels safe\r\nstore.$isNine = Vue.prototype.$isNine;\r\nstore.$isStandard = Vue.prototype.$isStandard;\r\nstore.$isIOS = Vue.prototype.$isIOS;\r\nstore.$isMobileApp = Vue.prototype.$isMobileApp;\r\n\r\nconst vue = new Vue({\r\n router,\r\n store,\r\n i18n,\r\n render: h => h(App),\r\n});\r\n\r\nvue.$mount('#app');\r\n\r\nif (process.env.NODE_ENV === 'production' && process.env.VUE_APP_ENV !== 'cordova') {\r\n Sentry.init({\r\n Vue,\r\n dsn: 'https://1265d2005dda49dc90069f385d063cca@o1203955.ingest.sentry.io/6330579',\r\n integrations: [\r\n new BrowserTracing({\r\n routingInstrumentation: Sentry.vueRouterInstrumentation(router),\r\n tracingOrigins: ['playmore.golf', 'account.playmore.golf', /^\\//],\r\n }),\r\n ],\r\n // Set tracesSampleRate to 1.0 to capture 100%\r\n // of transactions for performance monitoring.\r\n // We recommend adjusting this value in production\r\n tracesSampleRate: 1.0,\r\n });\r\n}\r\n\r\nVue.prototype.$mixpanel = mixpanel;\r\nVue.prototype.$action = (event) => { console.log(`Event ${event}`); };\r\n\r\nfunction initMixpanel() {\r\n Vue.prototype.$mixpanel.init('3662a5b3cb2c2b138704ddc6ceef75dd', { debug: true });\r\n Vue.prototype.$action = (event) => {\r\n Vue.prototype.$mixpanel.track(event);\r\n };\r\n}\r\n\r\nfunction getHubspotCookie() {\r\n let hutkId;\r\n const value = `; ${document.cookie}`;\r\n // eslint-disable-next-line no-useless-concat\r\n const parts = value.split('; ' + 'hubspotutk' + '=');\r\n if (parts.length === 2) {\r\n // eslint-disable-next-line no-unused-vars, no-return-assign\r\n return (hutkId = parts.pop().split(';').shift());\r\n }\r\n return null;\r\n}\r\n\r\nlet checkIndex = 0;\r\nfunction startHSCheck() {\r\n if (getHubspotCookie() !== null) {\r\n initMixpanel();\r\n } else {\r\n setTimeout(() => {\r\n if (getHubspotCookie() !== null) {\r\n initMixpanel();\r\n } else {\r\n try {\r\n // eslint-disable-next-line no-undef\r\n _hsp.push(['addPrivacyConsentListener', (consent) => {\r\n if (consent.allowed) {\r\n initMixpanel();\r\n }\r\n }]);\r\n } catch (err) {\r\n checkIndex += 1;\r\n if (checkIndex <= 10) {\r\n setTimeout(startHSCheck(), 1500);\r\n }\r\n }\r\n }\r\n }, 1500);\r\n }\r\n}\r\n\r\nif (process.env.VUE_APP_ENV !== 'cordova' && process.env.NODE_ENV === 'production') {\r\n startHSCheck();\r\n}\r\n\r\n\r\n// Vue.use(VueGtm, {\r\n// id: 'GTM-MNTLS9S', // Your GTM single container ID, array of container ids ['GTM-xxxxxx', 'GTM-yyyyyy'] or array of objects [{id: 'GTM-xxxxxx', queryParams: { gtm_auth: 'abc123', gtm_preview: 'env-4', gtm_cookies_win: 'x'}}, {id: 'GTM-yyyyyy', queryParams: {gtm_auth: 'abc234', gtm_preview: 'env-5', gtm_cookies_win: 'x'}}], // Your GTM single container ID or array of container ids ['GTM-xxxxxx', 'GTM-yyyyyy']\r\n// defer: false, // Script can be set to `defer` to speed up page load at the cost of less accurate results (in case visitor leaves before script is loaded, which is unlikely but possible). Defaults to false, so the script is loaded `async` by default\r\n// compatibility: false, // Will add `async` and `defer` to the script tag to not block requests for old browsers that do not support `async`\r\n// debug: process.env.NODE_ENV !== 'production', // Whether or not display console logs debugs (optional)\r\n// loadScript: true, // Whether or not to load the GTM Script (Helpful if you are including GTM manually, but need the dataLayer functionality in your components) (optional)\r\n// vueRouter: router, // Pass the router instance to automatically sync with router (optional)\r\n// trackOnNextTick: false, // Whether or not call trackView in Vue.nextTick\r\n// });\r\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:\"titleHack\"},[(_vm.existNow)?_c('img',{directives:[{name:\"local-img\",rawName:\"v-local-img\",value:(_vm.sauce),expression:\"sauce\"}],attrs:{\"classes\":_vm.classes}}):_vm._e()])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./informationBox.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./informationBox.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./informationBox.vue?vue&type=template&id=612bd1ee&\"\nimport script from \"./informationBox.vue?vue&type=script&lang=js&\"\nexport * from \"./informationBox.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","class ClubTheme {\r\n constructor(params) {\r\n this.clubId = params.clubId;\r\n this.packageLogoPosition = params.packageLogoPosition;\r\n const pathToImages = `club${this.clubId}/`;\r\n\r\n this.cssTheme = `club${this.clubId}`;\r\n this.logo = params.logo === undefined ? `${pathToImages}Logo.png` : `${pathToImages}${params.Logo}`;\r\n this.logoAlt = params.logoAlt === undefined\r\n ? `${pathToImages}LogoAlt.png`\r\n : `${pathToImages}${params.logoAlt}`;\r\n this.cover1 = params.cover1 === undefined ? `${pathToImages}Cover1.jpg` : `${pathToImages}${params.cover1}`;\r\n this.cover2 = params.cover2 === undefined ? `${pathToImages}Cover2.jpg` : `${pathToImages}${params.cover2}`;\r\n this.logoSmall = params.logoSmall === undefined\r\n ? `${pathToImages}LogoSmall.png`\r\n : `${pathToImages}${params.logoSmall}`;\r\n this.logoSmallAlt = params.logoSmallAlt === undefined\r\n ? `${pathToImages}LogoSmallAlt.png`\r\n : `${pathToImages}${params.logoSmallAlt}`;\r\n this.loginBackground = params.loginBackground === undefined\r\n ? `${pathToImages}LoginBackground.jpg`\r\n : `${pathToImages}${params.loginBackground}`;\r\n }\r\n}\r\n\r\nexport { ClubTheme };\r\n","class Club {\r\n constructor(params) {\r\n this.clubId = params.clubId;\r\n this.clubName = params.clubName;\r\n this.clubNameShort = params.clubNameShort;\r\n this.mapsLink = params.mapsLink;\r\n this.email = params.email;\r\n this.loginText = params.loginText;\r\n this.dashboardMessage = params.dashboardMessage;\r\n this.address = params.address;\r\n this.introduction = params.introduction;\r\n this.standardPackage = params.standardPackage;\r\n this.corporatePackage = params.corporatePackage;\r\n this.quotes = params.quotes;\r\n this.explainerImages = params.explainerImages;\r\n this.renew = params.renew;\r\n this.renewButton = params.renewButton;\r\n this.numberOfGuests = params.numberOfGuests;\r\n this.topup = params.topup;\r\n this.termsAndConditions = params.termsAndConditions;\r\n this.hideNetwork = params.hideNetwork;\r\n this.hideVouchers = params.hideVouchers;\r\n }\r\n}\r\n\r\nexport { Club };\r\n","import { ClubTheme } from '../classes';\r\n\r\n// hacky and maybe not needed\r\nconst defaultClub = new ClubTheme({\r\n clubId: 0,\r\n clubName: 'Golf',\r\n});\r\n\r\nconst astburyTest = new ClubTheme({\r\n clubId: 264,\r\n clubName: 'Astbury',\r\n packageLogoPosition: 'Top',\r\n});\r\n\r\nconst astbury = new ClubTheme({\r\n clubId: 472,\r\n clubName: 'Astbury',\r\n packageLogoPosition: 'Top',\r\n});\r\n\r\nconst westEssex = new ClubTheme({\r\n clubId: 211,\r\n clubName: 'West Essex',\r\n});\r\n\r\nconst misRiverShoreline = new ClubTheme({\r\n clubId: 520,\r\n clubName: 'Missouri River Points Pass',\r\n});\r\n\r\nconst misRiverDodge = new ClubTheme({\r\n clubId: 521,\r\n clubName: 'Missouri River Points Pass',\r\n});\r\n\r\nconst pebbleCoveTest = new ClubTheme({\r\n clubId: 269,\r\n clubName: 'Missouri River Pass Test',\r\n});\r\n\r\nconst langlandBay = new ClubTheme({\r\n clubId: 544,\r\n clubName: 'Langland Bay Golf Club',\r\n});\r\n\r\nconst theShire = new ClubTheme({\r\n clubId: 560,\r\n clubName: 'Bridgedown Collection',\r\n packageLogoPosition: 'Top',\r\n});\r\n\r\nconst theShireTest = new ClubTheme({\r\n clubId: 592,\r\n clubName: 'Bridgedown Collection',\r\n packageLogoPosition: 'Top',\r\n});\r\n\r\nconst themeList = [\r\n astburyTest,\r\n defaultClub,\r\n westEssex,\r\n astbury,\r\n misRiverShoreline,\r\n misRiverDodge,\r\n pebbleCoveTest,\r\n langlandBay,\r\n theShire,\r\n theShireTest,\r\n];\r\n\r\nexport { themeList };\r\n","import { themeList } from './lists/themeList';\r\n\r\nconst themeStore = {\r\n state: {\r\n showLayout: true,\r\n squeezePage: false,\r\n hideHomeClub: false,\r\n overrideStyle: false,\r\n hideGlobalLoader: false,\r\n overridingClubId: 0,\r\n },\r\n\r\n getters: {\r\n // uses themeList instead of state because should never need to set a theme manually maybe\r\n getCurrentTheme: (state, getters, rootState) => {\r\n if (state.overrideStyle) {\r\n return themeList.find(theme => theme.clubId === state.overridingClubId) !== undefined\r\n ? themeList.find(theme => theme.clubId === state.overridingClubId)\r\n : themeList.find(theme => theme.clubId === 0);\r\n }\r\n return themeList.find(theme => theme.clubId === rootState.user.homeClubId) !== undefined\r\n ? themeList.find(theme => theme.clubId === rootState.user.homeClubId)\r\n : themeList.find(theme => theme.clubId === 0);\r\n },\r\n },\r\n\r\n mutations: {\r\n setTheme(state, id) {\r\n state.currentThemeId = id;\r\n },\r\n\r\n toggleLayout(state, showLayout) {\r\n state.showLayout = showLayout;\r\n },\r\n toggleHideGlobalLoader(state, hideGlobalLoader) {\r\n state.hideGlobalLoader = hideGlobalLoader;\r\n },\r\n toggleSqueezePage(state, squeezePage) {\r\n state.squeezePage = squeezePage;\r\n },\r\n toggleHideHomeClub(state, hideHomeClub) {\r\n state.hideHomeClub = hideHomeClub;\r\n },\r\n setOverrideStyle(state, value) {\r\n state.overrideStyle = value;\r\n },\r\n setOverridingClubId(state, value) {\r\n if (!isNaN(value)) {\r\n state.overrideStyle = true;\r\n state.overridingClubId = Number(value);\r\n } else {\r\n state.overridingClubId = 0;\r\n }\r\n },\r\n },\r\n\r\n actions: {},\r\n};\r\n\r\nexport { themeStore };\r\n","import { MemberSummaryModel, TimeUntilExpiryModel } from 'pmg-services';\r\nimport i18n, { selectedLocale } from '@/i18n';\r\n// eslint-disable-next-line import/no-cycle\r\nimport router from '@/app/app-routes';\r\nimport { services } from '../services';\r\n\r\nfunction expiringSoon(expiry) {\r\n const expiryDate = new Date(expiry);\r\n expiryDate.setMonth(expiryDate.getMonth() - 2);\r\n\r\n const currentDate = new Date();\r\n if (expiryDate <= currentDate) {\r\n return true;\r\n }\r\n\r\n return false;\r\n}\r\n\r\n\r\nconst userStore = {\r\n state: {\r\n homePoints: 0,\r\n flexiPoints: 0,\r\n refreshingPoints: true, // true because it happens on mount\r\n userGuid: '',\r\n username: '',\r\n forename: '',\r\n surname: '',\r\n contactNumber: '',\r\n homeClubId: 0,\r\n homeClubName: '',\r\n membershipType: null,\r\n completedFirstPayment: false,\r\n membershipExpires: null,\r\n isCorporateMember: false,\r\n companyName: '',\r\n bannerUrl: '',\r\n thumbUrl: '',\r\n autoRenewOn: false,\r\n isAdmin: false,\r\n isInArrears: false,\r\n // these 2 capital i's are upsetting\r\n IsExpired: false,\r\n IsImpersonating: false,\r\n refreshingMemberSummary: true, // true because it happens on mount\r\n refreshingMemberSummaryError: false,\r\n pointlessIncrement: 0,\r\n notPersistedIncrement: 0,\r\n isAuthenticated: false,\r\n flexiPointsAllowed: true,\r\n packageName: undefined,\r\n locale: selectedLocale,\r\n expiringSoon: false,\r\n tier: undefined,\r\n achievementScore: 0,\r\n someFormOfExperienceMembership: false,\r\n canChangeHomeClub: false,\r\n referredBy: null,\r\n canUserBeReferred: false,\r\n additionalDetailsRequired: false,\r\n promptForAppReview: false,\r\n associates: null,\r\n associateSlotsOverride: 4,\r\n },\r\n\r\n getters: {\r\n // this is out of date now, it doesnt have expiry info in it\r\n getMemberSummary: state => new MemberSummaryModel(\r\n 0,\r\n state.userGuid,\r\n state.username,\r\n state.forename,\r\n state.surname,\r\n state.contactNumber,\r\n state.homeClubId,\r\n state.homeClubName,\r\n state.homePoints,\r\n state.flexiPoints,\r\n state.membershipType,\r\n state.completedFirstPayment,\r\n state.membershipExpires,\r\n state.isCorporateMember,\r\n state.companyName,\r\n state.bannerUrl,\r\n true,\r\n state.thumbUrl,\r\n state.autoRenewOn,\r\n state.isAdmin,\r\n state.isInArrears,\r\n state.IsExpired,\r\n state.IsImpersonating,\r\n state.flexiPointsAllowed,\r\n state.packageName,\r\n state.tier,\r\n state.someFormOfExperienceMembership,\r\n state.canChangeHomeClub,\r\n state.promptForAppReview,\r\n ),\r\n\r\n getMemberExpiryInfo: state => new TimeUntilExpiryModel(\r\n state.membershipExpires,\r\n ),\r\n\r\n isExperienceMember: state => (state.membershipType === 2 || state.someFormOfExperienceMembership || state.homeClubId === 555 || state.homeClubId === 590 || state.homeClubId === 196) && !state.isCorporateMember,\r\n },\r\n\r\n mutations: {\r\n setMemberSummaryError(state, value) {\r\n state.refreshingMemberSummaryError = value;\r\n },\r\n setRefreshingPoints(state, value) {\r\n state.refreshingPoints = value;\r\n },\r\n setHomePoints(state, value) {\r\n state.homePoints = value;\r\n },\r\n setFlexiPoints(state, value) {\r\n state.flexiPoints = value;\r\n },\r\n\r\n setAssociates(state, value) {\r\n if (value !== null) {\r\n state.associates = value.Associates;\r\n if (value.AssociateSlotsOverride !== null) {\r\n state.associateSlotsOverride = value.AssociateSlotsOverride;\r\n }\r\n }\r\n },\r\n\r\n setCanUserBeReferred(state, value) {\r\n state.canUserBeReferred = value && !state.someFormOfExperienceMembership;\r\n },\r\n\r\n pushMemberSummary(state, memberSummary) {\r\n state.userGuid = memberSummary.UserGuid;\r\n state.username = memberSummary.Username;\r\n state.forename = memberSummary.Forename;\r\n state.surname = memberSummary.Surname;\r\n state.contactNumber = memberSummary.ContactNumber;\r\n state.homeClubId = memberSummary.HomeClubId;\r\n state.homeClubName = memberSummary.HomeClubName;\r\n state.membershipType = memberSummary.MembershipType;\r\n state.completedFirstPayment = memberSummary.CompletedFirstPayment;\r\n state.membershipExpires = memberSummary.MembershipExpires;\r\n state.isCorporateMember = memberSummary.IsCorporateMember;\r\n state.companyName = memberSummary.CompanyName;\r\n state.bannerUrl = memberSummary.BannerUrl;\r\n state.thumbUrl = memberSummary.ThumbUrl;\r\n state.autoRenewOn = memberSummary.AutoRenewOn;\r\n state.isAdmin = memberSummary.IsAdmin;\r\n state.isInArrears = memberSummary.IsInArrears;\r\n state.IsExpired = memberSummary.IsExpired;\r\n state.IsImpersonating = memberSummary.IsImpersonating;\r\n state.flexiPointsAllowed = memberSummary.FlexiPointsAllowed;\r\n state.packageName = memberSummary.packageName;\r\n state.expiringSoon = expiringSoon(memberSummary.MembershipExpires);\r\n state.tier = memberSummary.Tier;\r\n state.someFormOfExperienceMembership = memberSummary.SomeFormOfExperienceMembership;\r\n state.refreshingMemberSummaryError = false;\r\n state.canChangeHomeClub = memberSummary.CanChangeHomeClub;\r\n state.referredBy = memberSummary.ReferredBy;\r\n state.additionalDetailsRequired = memberSummary.AdditionalDetailsRequired;\r\n state.promptForAppReview = memberSummary.PromptForAppReview;\r\n\r\n if (!this.$isMobileApp && memberSummary.IsAdmin) {\r\n // window.location = process.env.VUE_APP_ADMIN_URL;\r\n }\r\n },\r\n\r\n emptyMemberSummary(state) {\r\n state.userGuid = '';\r\n state.username = '';\r\n state.forename = '';\r\n state.surname = '';\r\n state.contactNumber = '';\r\n state.homeClubId = 0;\r\n state.homeClubName = '';\r\n state.membershipType = null;\r\n state.completedFirstPayment = false;\r\n state.membershipExpires = null;\r\n state.isCorporateMember = false;\r\n state.companyName = '';\r\n state.bannerUrl = '';\r\n state.thumbUrl = '';\r\n state.autoRenewOn = false;\r\n state.isAdmin = false;\r\n state.isInArrears = false;\r\n state.IsExpired = false;\r\n state.IsImpersonating = false;\r\n state.flexiPointsAllowed = false;\r\n state.packageName = undefined;\r\n state.tier = undefined;\r\n state.someFormOfExperienceClub = false;\r\n },\r\n setRefreshingMemberSummary(state, value) {\r\n state.refreshingMemberSummary = value;\r\n },\r\n setIsAuth(state, value) {\r\n state.isAuthenticated = value;\r\n },\r\n updateLocale(state, newLocale) {\r\n state.locale = newLocale;\r\n },\r\n setAchievementScore(state, value) {\r\n state.achievementScore = value;\r\n },\r\n },\r\n\r\n actions: {\r\n setAuth(context, value) {\r\n context.commit('setIsAuth', value);\r\n },\r\n\r\n populateAssociates(context) {\r\n context.commit('setAssociates', null);\r\n services.associates.getAssociates().then((data) => {\r\n context.commit('setAssociates', data);\r\n });\r\n },\r\n\r\n populateCanUserBeReferred(context, value) {\r\n context.commit('setCanUserBeReferred', value);\r\n },\r\n\r\n async refreshPoints({ commit }, realtime = false) {\r\n commit('setRefreshingPoints', true);\r\n await services.member.getMemberPoints(realtime).then(\r\n (memberPoints) => {\r\n commit('setHomePoints', memberPoints.homePoints);\r\n commit('setFlexiPoints', memberPoints.flexiPoints);\r\n commit('setRefreshingPoints', false);\r\n },\r\n (error) => {\r\n console.log(error);\r\n },\r\n );\r\n },\r\n\r\n async refreshPointsUntilUpdate({ commit, dispatch, state }) {\r\n await services.member.getMemberPoints(true).then((points) => {\r\n if (points.homePoints !== state.homePoints || points.flexiPoints !== state.flexiPoints) {\r\n commit('setHomePoints', points.homePoints);\r\n commit('setFlexiPoints', points.flexiPoints);\r\n } else {\r\n setTimeout(() => { dispatch('refreshPointsUntilUpdate'); }, 1000);\r\n }\r\n });\r\n },\r\n\r\n async emptyMemberSummary({ commit }) {\r\n commit('emptyMemberSummary');\r\n },\r\n\r\n async populateMemberSummary(context) {\r\n return new Promise((resolve) => {\r\n services.account.cookieAuthenticated().then((data) => {\r\n context.commit('setRefreshingPoints', true);\r\n context.commit('setRefreshingMemberSummary', true);\r\n context.commit('setMemberSummaryError', false);\r\n if (data) {\r\n services.member.memberSummary().then((summary) => {\r\n if (summary !== undefined) {\r\n context.commit('setIsAuth', true);\r\n if (summary.Tier === 'Standard' || summary.Tier === null) {\r\n context.dispatch('getClubDetails', summary.HomeClubId);\r\n }\r\n\r\n if (summary.IsInArrears) {\r\n context.commit('pushMemberSummary', summary);\r\n router.push('/arrears');\r\n resolve();\r\n } else {\r\n context.commit('pushMemberSummary', summary);\r\n resolve();\r\n }\r\n\r\n if (summary.IsCorporateMember) {\r\n context.dispatch('populateAssociates');\r\n }\r\n\r\n context.commit('setHomePoints', summary.HomePoints);\r\n context.commit('setFlexiPoints', summary.AwayPoints);\r\n } else if (context.state.isAuthenticated) {\r\n context.commit('setIsAuth', false);\r\n location.reload();\r\n }\r\n\r\n context.commit('setRefreshingPoints', false);\r\n context.commit('setRefreshingMemberSummary', false);\r\n services.member.memberAchievementScore().then((score) => {\r\n context.commit('setAchievementScore', score);\r\n });\r\n\r\n context.dispatch('populateShareCode');\r\n }).catch(() => {\r\n context.commit('setMemberSummaryError', true);\r\n });\r\n } else {\r\n context.commit('setIsAuth', false);\r\n context.commit('setRefreshingPoints', true);\r\n context.commit('setRefreshingMemberSummary', true);\r\n // location.reload();\r\n }\r\n });\r\n });\r\n },\r\n\r\n changeLocale({ commit }, newLocale) {\r\n i18n.locale = newLocale;\r\n commit('updateLocale', newLocale);\r\n },\r\n\r\n },\r\n\r\n};\r\n\r\nexport { userStore };\r\n","import { Club } from '../classes';\r\n\r\n// hacky and maybe not needed\r\nconst defaultClub = new Club({\r\n clubId: 0,\r\n clubName: 'Golf',\r\n});\r\n\r\nconst astbury = new Club({\r\n clubId: 472,\r\n clubName: 'The Astbury',\r\n clubNameShort: 'Astbury',\r\n mapsLink: 'https://goo.gl/maps/rWe8mZi2Wtv8ZbY47',\r\n numberOfGuests: 7,\r\n renewButton: 'Club Astbury Packages',\r\n email: 'admin@theastbury.com',\r\n termsAndConditions: [\r\n 'Payment must be made in advance, by choosing a package on our Clarendon Collection portal.',\r\n 'Both our Hyde and Villiers packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our Clarendon Collection portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the Clarendon Collection portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Golfers choosing the Hyde Package can use points for up to 8 golfers per day.',\r\n 'Golfers choosing the Villiers Package can use the points for up to 12 golfers per day.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at The Grove, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to tee.time@thegrove.co.uk.',\r\n 'The Clarendon Collection cannot be used in conjunction with any other offers.',\r\n ],\r\n});\r\n\r\nconst astburyTest = new Club({\r\n clubId: 264,\r\n clubName: 'The Astbury',\r\n clubNameShort: 'Astbury',\r\n mapsLink: 'https://goo.gl/maps/rWe8mZi2Wtv8ZbY47',\r\n email: 'admin@theastbury.com',\r\n numberOfGuests: 7,\r\n renewButton: 'Club Astbury Packages',\r\n termsAndConditions: [\r\n 'Payment must be made in advance, by choosing a package on our Clarendon Collection portal.',\r\n 'Both our Hyde and Villiers packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our Clarendon Collection portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the Clarendon Collection portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Golfers choosing the Hyde Package can use points for up to 8 golfers per day.',\r\n 'Golfers choosing the Villiers Package can use the points for up to 12 golfers per day.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at The Grove, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to tee.time@thegrove.co.uk.',\r\n 'The Clarendon Collection cannot be used in conjunction with any other offers.',\r\n ],\r\n});\r\n\r\nconst westEssex = new Club({\r\n clubId: 211,\r\n clubName: 'West Essex Golf Club',\r\n clubNameShort: 'West Essex',\r\n mapsLink: 'https://goo.gl/maps/pYK8fBHkdfAE7nMC6',\r\n address: ['West Essex Golf Club', 'Bury Road', 'E4 7QL'],\r\n email: 'sec@westessexgolfclub.co.uk',\r\n termsAndConditions: [\r\n 'Payment must be made in advance, by choosing a package on our Clarendon Collection portal.',\r\n 'Both our Hyde and Villiers packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our Clarendon Collection portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the Clarendon Collection portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Golfers choosing the Hyde Package can use points for up to 8 golfers per day.',\r\n 'Golfers choosing the Villiers Package can use the points for up to 12 golfers per day.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at The Grove, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to tee.time@thegrove.co.uk.',\r\n 'The Clarendon Collection cannot be used in conjunction with any other offers.',\r\n ],\r\n});\r\n\r\nconst foxhills = new Club({\r\n clubId: 234,\r\n clubName: 'Foxhills Club & Resort',\r\n clubNameShort: 'Foxhills',\r\n mapsLink: 'https://g.page/FoxhillsSurrey?share',\r\n loginText: 'Learn more about Foxhills',\r\n address: ['Foxhills', 'Stonehill Road', 'Ottershaw', 'Surrey KT16 0EL'],\r\n dashboardMessage:\r\n 'Utilise your points to play golf on our Championship courses 7-days a week. Invite friends, colleagues, clients and customers.',\r\n introduction:\r\n 'Set in 400 acres of pristine countryside, and just 25 miles from London city centre, Foxhills has been Surrey’s favourite playground for over forty years. From the early days as just a golf club, to today’s full country club and resort (offering golf, leisure, spa, tennis, cycling and more), there really is something for everyone at Foxhills.',\r\n standardPackage: {\r\n titleStrapline: 'Our Brand New…',\r\n title: 'Corporate Membership',\r\n introduction: [\r\n 'An evolution of our traditional options, our brand new points-based corporate memberships are designed for companies looking for the ultimate flexibility. The naming of both packages, celebrates Foxhills’ rich history as the estate of the mercurial 18th century politician Charles James Fox.',\r\n 'Utilise your points to play golf on either of our two Championship courses or our fabulous par-3 9-hole Manor course. Plus redeem points for our Country Club day passes which can used to experience our healthSpa, gym, swimming pools and tennis courts.',\r\n 'Invite clients, entertain guests or reward members of staff; the choice is yours.',\r\n ],\r\n },\r\n corporatePackage: {\r\n titleStrapline: 'Our Brand New…',\r\n title: 'Corporate Membership',\r\n introduction: [\r\n 'An evolution of our traditional options, our brand new points-based corporate memberships are designed for companies looking for the ultimate flexibility. The naming of both packages, celebrates Foxhills’ rich history as the estate of the mercurial 18th century politician Charles James Fox.',\r\n 'Utilise your points to play golf on either of our two Championship courses or our fabulous par-3 9-hole Manor course. Plus redeem points for our Country Club day passes which can used to experience our healthSpa, gym, swimming pools and tennis courts.',\r\n 'Invite clients, entertain guests or reward members of staff; the choice is yours.',\r\n ],\r\n },\r\n quotes: ['When you leave, you’ll feel better than when you arrived'],\r\n explainerImages: [\r\n {\r\n link: 'https://www.foxhills.co.uk/dine',\r\n title: 'Meet',\r\n desc: 'Experience the most unique meeting venue in Surrey. Just 40 miles from London city centre, Foxhills provides a glamorous retreat for your meeting, ensuring privacy and productivity sit side by side.',\r\n },\r\n {\r\n link: 'https://www.foxhills.co.uk/play',\r\n title: 'Play',\r\n desc: 'With unrivalled leisure facilities, the Foxhills Country Club is the ideal place for families and friends to enjoy a relaxed afternoon or an active weekend.',\r\n },\r\n {\r\n link: 'https://www.foxhills.co.uk/spa',\r\n title: 'Spa',\r\n desc: 'Welcome to a world of pure relaxation and bliss. Experience the ultimate healthspa break with a visit to Foxhills’ award-winning spa.',\r\n },\r\n ],\r\n renew: {\r\n title: 'Extend your Foxhills experience',\r\n body: 'Utilise your points to play golf on our Championship courses 7-days a week. Invite friends, colleagues, clients and customers. Plus unlock significant savings on tuition, retail and selected food outlets.',\r\n },\r\n topup: {\r\n title: 'More points to play',\r\n },\r\n termsAndConditions: {\r\n link: 'https://www.foxhills.co.uk/legal-terms-and-conditions',\r\n points: [\r\n 'Payment must be made in advance, by choosing a package on our portal.',\r\n 'Both our Fox and Hayton packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Golfers choosing the Fox Package can use points for up to 8 golfers per day.',\r\n 'Golfers choosing the Hayton Package can use the points for up to 12 golfers per day.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at Foxhills, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to golfservices@foxhills.co.uk.',\r\n ],\r\n },\r\n});\r\n\r\nconst theGrove = new Club({\r\n clubId: 449,\r\n clubName: 'The Grove',\r\n clubNameShort: 'The Grove',\r\n mapsLink: 'https://goo.gl/maps/NK3TPXWkTeiTt1jp9',\r\n address: ['The Grove', \"Chandler's Cross\", 'Hertfordshire WD3 4TG'],\r\n loginText: 'Learn more about the Clarendon Collection',\r\n email: 'tee.time@thegrove.co.uk',\r\n dashboardMessage:\r\n 'Utilise your points to play golf on our Championship course 7-days a week. Invite friends, colleagues, clients and customers.',\r\n introduction:\r\n 'Set in 300 acres of stunning Hertfordshire countryside, The Grove is the ultimate five-star retreat. Lovingly restored, the former home of the Earls of Clarendon is situated just 18 miles from London. With it’s immaculate greens and stunning views, the 7,152 yard championship golf courses is one of the finest in England.',\r\n standardPackage: {\r\n titleStrapline: 'Our Brand New…',\r\n title: 'Clarendon Collection',\r\n introduction: [\r\n 'An evolution of the popular Green Book, our new Clarendon Collection is a points-based programme aimed at golfers looking for the ultimate flexibility.',\r\n \"The naming of Clarendon Collection, and its two packages, celebrates The Grove’s rich history as the family seat of the Earls of Clarendon, a heritage that dates back to the 1600's.\",\r\n 'Utilise your points to play golf on our Kyle Phillips-designed Championship course 7-days a week. Invite friends, colleagues, clients and customers. Plus unlock significant savings on tuition, retail and selected food outlets.',\r\n ],\r\n },\r\n quotes: [\r\n {\r\n text: 'The greens are somewhat undulating but they are really smooth. The golf course is in fantastic shape, the greens are absolutely perfect.',\r\n name: 'Tiger Woods',\r\n title: 'Winner of The World Golf Championships 2006',\r\n },\r\n {\r\n text: 'It’s been great to play here over the last few days and the course is in great shape! I’d love to come back and play again!',\r\n name: 'Alex Noren',\r\n title: 'Winner of the 2016 British Masters',\r\n },\r\n {\r\n text: 'To everyone at The Grove, thank you for making me look like a great host. Fantastic week!',\r\n name: 'Luke Donald',\r\n title: 'Host of the 2016 British Masters',\r\n },\r\n ],\r\n explainerImages: [\r\n {\r\n link: 'https://www.thegrove.co.uk/golf/golf-tuition/',\r\n title: 'Tuition & Practice Facilities',\r\n desc: 'Whether it’s a warm-up before your round, or a lesson with one of our PGA Professional Team, our grass driving range is the perfect way to improve your golf.',\r\n },\r\n {\r\n link: 'https://www.thegrove.co.uk/golf/plan-your-upcoming-golf-visit/',\r\n title: 'Rental Items',\r\n desc: 'Why not hire a golf cart too? With the industry leading state-of-the-art Visage GPS systems installed, our Club Car carts are the perfect way to experience our Championship course.',\r\n },\r\n {\r\n link: 'https://www.thegrove.co.uk/dining/the-stables/',\r\n title: 'The Stables',\r\n desc: 'After your round, tuck into The Stables’ menu – homemade, wholesome and wholehearted. Our refreshed restaurant is sporting an elegant new interior. And outside on the terrace, enjoy views across our golf course.',\r\n },\r\n ],\r\n termsAndConditions: [\r\n 'Payment must be made in advance, by choosing a package on our Clarendon Collection portal.',\r\n 'Both our Hyde and Villiers packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our Clarendon Collection portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the Clarendon Collection portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Golfers choosing the Hyde Package can use points for up to 8 golfers per day.',\r\n 'Golfers choosing the Villiers Package can use the points for up to 12 golfers per day.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at The Grove, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to tee.time@thegrove.co.uk.',\r\n 'The Clarendon Collection cannot be used in conjunction with any other offers.',\r\n ],\r\n renew: {\r\n title: 'Clarendon Collection… Renewal Options',\r\n body: 'Utilise your points to play golf on our Kyle Phillips-designed Championship course 7-days a week. Invite friends, colleagues, clients and customers. Plus unlock significant savings on tuition, retail and selected food outlets.',\r\n },\r\n topup: {\r\n title: 'Clarendon Collection… Top-up Options',\r\n },\r\n});\r\n\r\nconst theGroveTest = new Club({\r\n clubId: 238,\r\n clubName: 'The Grove',\r\n clubNameShort: 'The Grove',\r\n email: 'tee.time@thegrove.co.uk',\r\n mapsLink: 'https://goo.gl/maps/NK3TPXWkTeiTt1jp9',\r\n address: ['The Grove', \"Chandler's Cross\", 'Hertfordshire WD3 4TG'],\r\n loginText: 'Learn more about the Clarendon Collection',\r\n dashboardMessage:\r\n 'Utilise your points to play golf on our Championship courses 7-days a week. Invite friends, colleagues, clients and customers.',\r\n introduction:\r\n 'Set in 300 acres of stunning Hertfordshire countryside, The Grove is the ultimate five-star retreat. Lovingly restored, the former home of the Earls of Clarendon is situated just 18 miles from London. With it’s immaculate greens and stunning views, the 7,152 yard championship golf courses is one of the finest in England.',\r\n standardPackage: {\r\n titleStrapline: 'Our Brand New…',\r\n title: 'Clarendon Collection',\r\n introduction: [\r\n 'An evolution of the popular Green Book, our new Clarendon Collection is a points-based programme aimed at golfers looking for the ultimate flexibility.',\r\n \"The naming of Clarendon Collection, and its two packages, celebrates The Grove’s rich history as the family seat of the Earls of Clarendon, a heritage that dates back to the 1600's.\",\r\n 'Utilise your points to play golf on our Kyle Phillips-designed Championship course 7-days a week. Invite friends, colleagues, clients and customers. Plus unlock significant savings on tuition, retail and selected food outlets.',\r\n ],\r\n },\r\n quotes: [\r\n {\r\n text: 'The greens are somewhat undulating but they are really smooth. The golf course is in fantastic shape, the greens are absolutely perfect.',\r\n name: 'Tiger Woods',\r\n title: 'Winner of The World Golf Championships 2006',\r\n },\r\n {\r\n text: 'It’s been great to play here over the last few days and the course is in great shape! I’d love to come back and play again!',\r\n name: 'Alex Noren',\r\n title: 'Winner of the 2016 British Masters',\r\n },\r\n {\r\n text: 'To everyone at The Grove, thank you for making me look like a great host. Fantastic week!',\r\n name: 'Luke Donald',\r\n title: 'Host of the 2016 British Masters',\r\n },\r\n ],\r\n explainerImages: [\r\n {\r\n link: 'https://www.thegrove.co.uk/golf/golf-tuition/',\r\n title: 'Tuition & Practice Facilities',\r\n desc: 'Whether it’s a warm-up before your round, or a lesson with one of our PGA Professional Team, our grass driving range is the perfect way to improve your golf.',\r\n },\r\n {\r\n link: 'https://www.thegrove.co.uk/golf/plan-your-upcoming-golf-visit/',\r\n title: 'Rental Items',\r\n desc: 'Why not hire a golf cart too? With the industry leading state-of-the-art Visage GPS systems installed, our Club Car carts are the perfect way to experience our Championship course.',\r\n },\r\n {\r\n link: 'https://www.thegrove.co.uk/dining/the-stables/',\r\n title: 'The Stables',\r\n desc: 'After your round, tuck into The Stables’ menu – homemade, wholesome and wholehearted. Our refreshed restaurant is sporting an elegant new interior. And outside on the terrace, enjoy views across our golf course.',\r\n },\r\n ],\r\n termsAndConditions: [\r\n 'Payment must be made in advance, by choosing a package on our Clarendon Collection portal.',\r\n 'Both our Hyde and Villiers packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our Clarendon Collection portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the Clarendon Collection portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Golfers choosing the Hyde Package can use points for up to 8 golfers per day.',\r\n 'Golfers choosing the Villiers Package can use the points for up to 12 golfers per day.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at The Grove, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to tee.time@thegrove.co.uk.',\r\n 'The Clarendon Collection cannot be used in conjunction with any other offers.',\r\n ],\r\n renew: {\r\n title: 'Clarendon Collection… Renewal Options',\r\n body: 'Utilise your points to play golf on our Kyle Phillips-designed Championship course 7-days a week. Invite friends, colleagues, clients and customers. Plus unlock significant savings on tuition, retail and selected food outlets.',\r\n },\r\n topup: {\r\n title: 'Clarendon Collection… Top-up Options',\r\n },\r\n});\r\n\r\nconst playMoreGolfResort = new Club({\r\n clubId: 151,\r\n clubName: 'PlayMoreGolf Resort',\r\n packages: [\r\n {\r\n id: 0,\r\n name: 'Hyde',\r\n price: '£3,200',\r\n homePoints: '800',\r\n playersPerDay: 8,\r\n shortDescription: '£3,200 for 800 points, plus receive the following benefits',\r\n longDescription:\r\n 'Play up to 50 rounds of golf and receive selected benefits. Manage your account and book golf online.',\r\n benefits: [\r\n 'Play up to 50 rounds of golf',\r\n 'Manage your account and book golf online',\r\n 'Use your points for up to 8 people per day',\r\n 'Includes ability to maintain your handicap',\r\n '10% off all food and beverage purchased in The Stables restaurant and The Halfway House',\r\n '10% off services including tuition, retail and rental items',\r\n '18-hole playing lesson with a member of the PGA golf professional team',\r\n '55-minute Trackman lesson with a member of the PGA golf professional team',\r\n '5 driving range passes',\r\n 'Preferential group golf rate',\r\n ],\r\n },\r\n {\r\n id: 1,\r\n name: 'Villiers',\r\n price: '£6,000',\r\n homePoints: '1500',\r\n playersPerDay: 12,\r\n shortDescription: '£6,000 for 1500 points, plus receive the following benefits',\r\n longDescription:\r\n 'Play up to 100 rounds of golf and receive selected benefits. Manage your account and book golf online.',\r\n benefits: [\r\n 'Play up to 100 rounds of golf',\r\n 'Manage your account and book golf online',\r\n 'Use your points for up to 12 people per day',\r\n 'Includes ability to maintain your handicap',\r\n '15% off all food and beverage purchased in The Stables restaurant and The Halfway House',\r\n '15% off services including tuition, retail and rental items',\r\n '18-hole playing lesson with a member of the PGA golf professional team',\r\n '120-minute Trackman lesson with a member of the PGA golf professional team',\r\n '5 driving range passes',\r\n 'Preferential group golf rate',\r\n ],\r\n },\r\n ],\r\n});\r\n\r\nconst eighteenClubDemo = new Club({\r\n clubId: 259,\r\n clubName: 'EighteenClub',\r\n clubNameShort: 'XVIII',\r\n mapsLink: 'https://goo.gl/maps/YYMjiV97qSFubLm29',\r\n loginText: 'Learn more about EighteenClub',\r\n address: ['XVIII Golf', 'Demo Road', 'Demoton', 'XM4 5AS'],\r\n dashboardMessage:\r\n 'Utilise your points to play golf on our courses 7-days a week. Invite friends, colleagues, clients and customers.',\r\n introduction:\r\n 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis quis elit cursus, tempus nisi id, dapibus nulla. Donec commodo nulla purus, ac tristique augue mattis at. Maecenas consequat commodo elit eget feugiat. Ut at sem est. Praesent id luctus quam, sit amet condimentum felis.',\r\n standardPackage: {\r\n titleStrapline: 'Our Brand New…',\r\n title: 'Premium Membership',\r\n introduction: [\r\n 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis quis elit cursus, tempus nisi id, dapibus nulla. Donec commodo nulla purus, ac tristique augue mattis at. Maecenas consequat commodo elit eget feugiat. Ut at sem est. Praesent id luctus quam, sit amet condimentum felis.',\r\n 'Donec semper consequat massa, non consequat eros consequat nec. Nunc id dapibus nisi. Donec pretium massa vel lectus tincidunt tempus. Nulla facilisi.',\r\n 'Nulla venenatis varius massa vitae bibendum.',\r\n ],\r\n },\r\n corporatePackage: {\r\n titleStrapline: 'Our Brand New…',\r\n title: 'Corporate Membership',\r\n introduction: [\r\n 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis quis elit cursus, tempus nisi id, dapibus nulla. Donec commodo nulla purus, ac tristique augue mattis at. Maecenas consequat commodo elit eget feugiat. Ut at sem est. Praesent id luctus quam, sit amet condimentum felis.',\r\n 'Donec semper consequat massa, non consequat eros consequat nec. Nunc id dapibus nisi. Donec pretium massa vel lectus tincidunt tempus. Nulla facilisi.',\r\n 'Nulla venenatis varius massa vitae bibendum.',\r\n ],\r\n },\r\n quotes: ['Curabitur congue vel ante eu malesuada, non consequat eros consequat nec.'],\r\n explainerImages: [\r\n {\r\n link: 'https://www.xviii.golf',\r\n title: 'Meet',\r\n desc: 'Vivamus libero augue, congue ac tincidunt eget, faucibus vel neque. Vestibulum a tincidunt eros. Donec nec est tortor. Aliquam erat volutpat. Donec laoreet dui erat, sit amet ultricies ex fermentum at.',\r\n },\r\n {\r\n link: 'https://www.xviii.golf',\r\n title: 'Play',\r\n desc: 'Nunc condimentum justo vitae sem tempus, sollicitudin elementum metus fermentum. Duis at laoreet sem, vel posuere lacus.',\r\n },\r\n {\r\n link: 'https://www.xviii.golf',\r\n title: 'Spa',\r\n desc: 'Nunc et risus hendrerit, rutrum magna at, dignissim eros. In vestibulum ex euismod massa ornare, et porta felis bibendum.',\r\n },\r\n ],\r\n renew: {\r\n title: 'Extend your XVIII experience',\r\n body: 'Curabitur congue vel ante eu malesuada. Praesent viverra sollicitudin metus, et congue felis commodo ut. Vivamus ullamcorper sollicitudin risus eu pulvinar. Vivamus sollicitudin turpis nec justo imperdiet varius.',\r\n },\r\n topup: {\r\n title: 'More points to play',\r\n },\r\n termsAndConditions: {\r\n link: 'https://www.xviii.golf',\r\n points: [\r\n 'Payment must be made in advance, by choosing a package on our portal.',\r\n 'Both our Fox and Hayton packages are valid for 12 months only.',\r\n 'Any unused home points will be carried over upon renewal into the following year.',\r\n 'If you choose not to renew into the following year, any unused points will be lost.',\r\n 'Bookings should be made online through your individual account on our portal.',\r\n 'Bookings can be made up to 30 days in advance.',\r\n 'Bookings can be made on any available tee-time, seven days a week.',\r\n 'Cancellations must be made online through your individual account on the portal.',\r\n 'Cancellations cannot be made within 14 days of the tee-time, unless approved by Golf Management.',\r\n 'Any cancellations made less than 14 days prior to the day of play will be non-refundable. Providing we have a minimum of 48 hours’ notice we will permit the transfer of the pre-payment to a future date once within 3 months of the original date. Please note cancellations also apply to a reduction in player numbers.',\r\n 'Each individual player should check in with the Golf Shop/Reception before play.',\r\n 'We require you to be on the tee, ready for play at least 10 minutes prior to your tee time.',\r\n 'The re-sale of tee-times is not permitted.',\r\n 'Any applicable discounts at XVIII, as part of the package benefits, are valid only for the account holder or main contact.',\r\n 'Any disputes relating to points balances should be made in writing to golfservices@xviii.golf.',\r\n ],\r\n },\r\n});\r\n\r\nconst langland = new Club({\r\n clubId: 544,\r\n clubName: 'Langland Bay Golf Club',\r\n clubNameShort: 'Langland Bay',\r\n mapsLink: 'https://www.google.com/maps/@51.5673407,-4.0210632,15z',\r\n numberOfGuests: 7,\r\n renewButton: 'Langland Bay Packages',\r\n email: 'info@langlandbaygolfclub.com',\r\n termsAndConditions: [\r\n ],\r\n hideNetwork: true,\r\n hideVouchers: true,\r\n});\r\n\r\nconst theShire = new Club({\r\n clubId: 560,\r\n clubName: 'Bridgedown Collection',\r\n clubNameShort: 'Bridgedown Collection',\r\n mapsLink: 'https://www.google.com/maps',\r\n numberOfGuests: 7,\r\n renewButton: 'Bridgedown Collection Packages',\r\n email: 'shire@test.com',\r\n termsAndConditions: [\r\n ],\r\n hideNetwork: false,\r\n hideVouchers: true,\r\n});\r\n\r\nconst theShireTest = new Club({\r\n clubId: 592,\r\n clubName: 'Bridgedown Collection',\r\n clubNameShort: 'Bridgedown Collection',\r\n mapsLink: 'https://www.google.com/maps',\r\n numberOfGuests: 7,\r\n renewButton: 'Bridgedown Collection Packages',\r\n email: 'shire@test.com',\r\n termsAndConditions: [\r\n ],\r\n hideNetwork: false,\r\n hideVouchers: true,\r\n});\r\n\r\n\r\nconst clubList = [\r\n defaultClub,\r\n astbury,\r\n astburyTest,\r\n westEssex,\r\n theGrove,\r\n theGroveTest,\r\n foxhills,\r\n playMoreGolfResort,\r\n eighteenClubDemo,\r\n langland,\r\n theShire,\r\n theShireTest,\r\n];\r\n\r\nexport { clubList };\r\n","import { services } from '../services';\r\nimport { clubList } from './lists/clubList';\r\n\r\nconst clubStore = {\r\n state: {\r\n overrideClub: false,\r\n overridingClubId: 0,\r\n clubLoaded: false,\r\n logoUrl: null,\r\n bannerUrl: null,\r\n coverUrl: 'cover.jpg',\r\n },\r\n\r\n getters: {\r\n getClub: (state, getters, rootState) => {\r\n if (state.overrideClub) {\r\n return clubList.find(club => club.clubId === state.overridingClubId) !== undefined\r\n ? clubList.find(club => club.clubId === state.overridingClubId)\r\n : clubList.find(club => club.clubId === 0);\r\n }\r\n return clubList.find(club => club.clubId === rootState.user.homeClubId) !== undefined\r\n ? clubList.find(club => club.clubId === rootState.user.homeClubId)\r\n : clubList.find(club => club.clubId === 0);\r\n },\r\n },\r\n\r\n mutations: {\r\n setOverrideStyle(state, value) {\r\n state.overrideClub = value;\r\n },\r\n\r\n setOverridingClubId(state, value) {\r\n state.clubLoaded = false;\r\n if (!isNaN(value)) {\r\n state.overridingClubId = Number(value);\r\n services.club.clubDetails(state.overridingClubId).then((data) => {\r\n state.logoUrl = data.LogoUrl;\r\n state.bannerUrl = data.BannerUrl;\r\n state.coverUrl = data.CoverUrl === null ? `${process.env.VUE_APP_BASE_URL}img/cover.jpg` : data.CoverUrl;\r\n state.clubLoaded = true;\r\n });\r\n } else {\r\n state.overridingClubId = 0;\r\n state.clubLoaded = true;\r\n }\r\n },\r\n\r\n setClubDetails(state, value) {\r\n state.coverUrl = value.CoverUrl;\r\n state.bannerUrl = value.BannerUrl;\r\n },\r\n },\r\n\r\n actions: {\r\n getClubDetails(context, value) {\r\n services.club.clubDetails(value).then((data) => {\r\n // eslint-disable-next-line no-param-reassign\r\n data.CoverUrl = data.CoverUrl === null ? 'cover.jpg' : data.CoverUrl;\r\n context.commit('setClubDetails', data);\r\n });\r\n },\r\n },\r\n};\r\n\r\nexport { clubStore };\r\n","import { SetBasketModel } from 'pmg-services';\r\nimport { services } from '../services';\r\n\r\nconst basketStore = {\r\n state: {\r\n basket: undefined,\r\n clubExtrasAvailable: false, // don't call this without doing the dispatch checkIfClubExtrasAvailable\r\n donation: {\r\n bundleId: 0,\r\n clubId: 0,\r\n amount: 0,\r\n },\r\n },\r\n\r\n getters: {\r\n getBasket: state => state.basket,\r\n },\r\n\r\n mutations: {\r\n setCharityDonation(state, amount) {\r\n state.donation = {\r\n bundleId: state.basket.BundleId,\r\n clubId: state.basket.NewClubId,\r\n amount,\r\n };\r\n },\r\n\r\n emptyCharityDonation(state) {\r\n state.donation = {\r\n bundleId: 0,\r\n clubId: 0,\r\n amount: 0,\r\n };\r\n },\r\n\r\n pushBasket(state, basket) {\r\n state.basket = basket;\r\n\r\n if (basket === null || basket.NewClubId !== state.donation.clubId || basket.BundleId !== state.donation.bundleId) {\r\n state.donation = {\r\n bundleId: 0,\r\n clubId: 0,\r\n amount: 0,\r\n };\r\n }\r\n },\r\n\r\n setClubExtrasAvailable(state, available) {\r\n state.clubExtrasAvailable = available;\r\n },\r\n\r\n },\r\n\r\n actions: {\r\n setCharityDonation(context, amount) {\r\n context.commit('setCharityDonation', amount);\r\n },\r\n\r\n emptyCharityDonation(context) {\r\n context.commit('emptyCharityDonation');\r\n },\r\n\r\n async setBasketBundle(context, bundle) {\r\n return new Promise((resolve) => {\r\n context.commit('setRefreshingBasket', true, { root: true });\r\n if (bundle.preserveCharity === undefined || bundle.preserveCharity !== true) {\r\n context.commit('emptyCharityDonation');\r\n }\r\n services.checkout.emptyBasket().then(() => {\r\n services.checkout\r\n .setBasket(\r\n bundle.BundleId,\r\n bundle.PromoCode,\r\n bundle.NewClubId,\r\n bundle.AdditionalBundleIds,\r\n null,\r\n bundle.AdditionalExtrasIds,\r\n )\r\n .then(() => {\r\n services.checkout.getBasket(null, true).then((basket) => {\r\n context.commit('pushBasket', basket);\r\n context.commit('setRefreshingBasket', false, { root: true });\r\n\r\n resolve();\r\n });\r\n });\r\n });\r\n });\r\n },\r\n\r\n async toggleExtraInBasket(context, payload) {\r\n let selectedIds = [...context.state.basket.AdditionalExtras.filter(x => x.Selected === true)\r\n .map(x => x.Id)];\r\n const exists = selectedIds.filter(x => x === payload.id);\r\n\r\n if (exists.length > 0) {\r\n selectedIds = [...selectedIds.filter(x => x !== payload.id)];\r\n // eslint-disable-next-line no-param-reassign\r\n if (payload.skipBackend) context.state.basket.AdditionalExtras.filter(x => x.Id === payload.id)[0].Selected = false;\r\n } else {\r\n selectedIds.push(payload.id);\r\n // eslint-disable-next-line no-param-reassign\r\n if (payload.skipBackend) context.state.basket.AdditionalExtras.filter(x => x.Id === payload.id)[0].Selected = true;\r\n }\r\n\r\n\r\n const selectedAddons = [...context.state.basket.AdditionalItems.filter(x => x.Selected === true).map(x => x.Id)];\r\n const bundle = new SetBasketModel(context.state.basket.BundleId, context.state.basket.PromoCode, context.state.basket.NewClubId, null, selectedAddons, selectedIds);\r\n // bad\r\n bundle.preserveCharity = true;\r\n\r\n if (payload.skipBackend === undefined || !payload.skipBackend) { await context.dispatch('setBasketBundle', bundle); }\r\n },\r\n\r\n async toggleAddOnInBasket(context, id) {\r\n let selectedIds = [...context.state.basket.AdditionalItems.filter(x => x.Selected === true)\r\n .map(x => x.Id)];\r\n\r\n const exists = [...selectedIds.filter(x => x === id)];\r\n if (exists.length > 0) {\r\n selectedIds = [];\r\n } else {\r\n selectedIds = [id];\r\n }\r\n\r\n const selectedExtras = [...context.state.basket.AdditionalExtras.filter(x => x.Selected === true).map(x => x.Id)];\r\n const bundle = new SetBasketModel(context.state.basket.BundleId, context.state.basket.PromoCode, context.state.basket.NewClubId, null, selectedIds, selectedExtras);\r\n // bad\r\n bundle.preserveCharity = true;\r\n\r\n await context.dispatch('setBasketBundle', bundle);\r\n },\r\n\r\n async togglePromoCodeInBasket(context, promoCode) {\r\n const selectedIds = [...context.state.basket.AdditionalItems.filter(x => x.Selected === true).map(x => x.Id)];\r\n const selectedExtras = [...context.state.basket.AdditionalExtras.filter(x => x.Selected === true).map(x => x.Id)];\r\n\r\n const bundle = new SetBasketModel(context.state.basket.BundleId, promoCode, context.state.basket.NewClubId, null, selectedIds, selectedExtras);\r\n // bad\r\n bundle.preserveCharity = true;\r\n\r\n await context.dispatch('setBasketBundle', bundle);\r\n },\r\n\r\n\r\n refreshBasket(context) {\r\n return new Promise((resolve) => {\r\n context.commit('setRefreshingBasket', true, { root: true });\r\n services.checkout.getBasket(null, true).then((basket) => {\r\n context.commit('pushBasket', basket);\r\n context.commit('setRefreshingBasket', false, { root: true });\r\n resolve();\r\n });\r\n });\r\n },\r\n\r\n emptyBasket(context) {\r\n return new Promise((resolve) => {\r\n context.commit('setRefreshingBasket', true, { root: true });\r\n services.checkout.emptyBasket().then(() => {\r\n services.checkout.getBasket(null, true).then((basket) => {\r\n context.commit('pushBasket', basket);\r\n context.commit('setRefreshingBasket', false, { root: true });\r\n resolve();\r\n });\r\n });\r\n });\r\n },\r\n\r\n async checkIfClubExtrasAvailable(context, homeClubId = 0) {\r\n if (homeClubId > 0) {\r\n context.commit('setClubExtrasAvailable', await services.member.homeClubHasPurchasableExtras());\r\n }\r\n },\r\n },\r\n};\r\n\r\nexport { basketStore };\r\n","const halfSecondish = 300;\r\n\r\nconst layoutStore = {\r\n state: {\r\n openNotificationMenu: false,\r\n openBasketMenu: false,\r\n refreshingBasket: false,\r\n openSideMenu: false,\r\n sideMenuStateLastChanged: undefined,\r\n notificationMenuStateLastChanged: undefined,\r\n basketMenuStateLastChanged: undefined,\r\n },\r\n\r\n mutations: {\r\n switchSideMenuState(state) {\r\n this.commit('setSideMenuState', !state.openSideMenu);\r\n },\r\n\r\n setSideMenuState(state, value) {\r\n const timeNow = new Date();\r\n if (\r\n state.sideMenuStateLastChanged === undefined\r\n || timeNow - state.sideMenuStateLastChanged > halfSecondish\r\n ) {\r\n state.openSideMenu = value;\r\n state.sideMenuStateLastChanged = timeNow;\r\n }\r\n },\r\n\r\n switchNotificationMenuState(state) {\r\n this.commit('setNotificationMenuState', !state.openNotificationMenu);\r\n },\r\n\r\n setNotificationMenuState(state, value) {\r\n const timeNow = new Date();\r\n if (\r\n state.notificationMenuStateLastChanged === undefined\r\n || timeNow - state.notificationMenuStateLastChanged > halfSecondish\r\n ) {\r\n state.openNotificationMenu = value;\r\n state.notificationMenuStateLastChanged = timeNow;\r\n }\r\n },\r\n switchBasketMenuState(state) {\r\n this.commit('setBasketMenuState', !state.openBasketMenu);\r\n },\r\n\r\n setBasketMenuState(state, value) {\r\n const timeNow = new Date();\r\n if (\r\n state.basketMenuStateLastChanged === undefined\r\n || timeNow - state.basketMenuStateLastChanged > halfSecondish\r\n ) {\r\n state.openBasketMenu = value;\r\n state.basketMenuStateLastChanged = timeNow;\r\n }\r\n },\r\n\r\n setRefreshingBasket(state, value) {\r\n state.refreshingBasket = value;\r\n },\r\n },\r\n\r\n actions: {\r\n async setNotificationMenuState({ commit }, value) {\r\n commit('setNotificationMenuState', value);\r\n },\r\n\r\n async switchNotificationMenuState({ commit }) {\r\n commit('switchNotificationMenuState');\r\n },\r\n\r\n async setSideMenuState({ commit }, value) {\r\n commit('setSideMenuState', value);\r\n },\r\n\r\n async switchSideMenuState({ commit }) {\r\n commit('switchSideMenuState');\r\n },\r\n\r\n async setBasketMenuState({ commit }, value) {\r\n commit('setBasketMenuState', value);\r\n },\r\n\r\n async switchBasketMenuState({ commit }) {\r\n commit('switchBasketMenuState');\r\n },\r\n },\r\n};\r\n\r\nexport { layoutStore };\r\n","import { services } from '../services';\r\n\r\nconst packagesStore = {\r\n state: {\r\n packages: undefined,\r\n lastFetch: undefined,\r\n lastMemberGuid: '',\r\n },\r\n\r\n mutations: {\r\n updatePackages(state, payload) {\r\n state.packages = payload.packages;\r\n state.lastFetch = new Date();\r\n state.lastMemberGuid = payload.memberGuid;\r\n },\r\n emptyPackagesCache(state) {\r\n state.packages = undefined;\r\n state.lastFetch = undefined;\r\n },\r\n },\r\n\r\n actions: {\r\n async updatePackages(context) {\r\n const packages = await services.checkout.availablePackages();\r\n const payload = {};\r\n payload.packages = packages;\r\n payload.memberGuid = context.rootState.user.userGuid;\r\n context.commit('updatePackages', payload);\r\n },\r\n async emptyPackages({ commit }) {\r\n commit('emptyPackagesCache');\r\n },\r\n },\r\n};\r\n\r\nexport { packagesStore };\r\n","import { services } from '../services';\r\n\r\nconst buddyStore = {\r\n state: {\r\n buddies: undefined,\r\n pendingBuddies: undefined,\r\n buddyRequests: undefined,\r\n lastFetchBuddies: undefined,\r\n lastFetchPending: undefined,\r\n lastFetchRequests: undefined,\r\n shareCode: undefined,\r\n lastupdateBuddiesMemberGuid: '',\r\n lastupdateBuddyRequestsMemberGuid: '',\r\n lastupdatePendingBuddiesMemberGuid: '',\r\n },\r\n\r\n mutations: {\r\n updateBuddies(state, payload) {\r\n state.buddies = payload.buddies;\r\n state.lastupdateBuddiesMemberGuid = payload.memberGuid;\r\n state.lastFetchBuddies = new Date();\r\n },\r\n updatePendingBuddies(state, payload) {\r\n state.pendingBuddies = payload.pendingBuddies;\r\n state.lastupdatePendingBuddiesMemberGuid = payload.memberGuid;\r\n state.lastFetchPending = new Date();\r\n },\r\n updateBuddyRequests(state, payload) {\r\n state.buddyRequests = payload.buddyRequests;\r\n state.lastupdateBuddyRequestsMemberGuid = payload.memberGuid;\r\n state.lastFetchRequests = new Date();\r\n },\r\n updateShareCode(state, code) {\r\n state.shareCode = code;\r\n },\r\n emptyBuddyCache(state) {\r\n state.buddies = undefined;\r\n state.pendingBuddies = undefined;\r\n state.buddyRequests = undefined;\r\n state.lastFetchBuddies = undefined;\r\n state.lastFetchPending = undefined;\r\n state.lastFetchRequests = undefined;\r\n state.shareCode = undefined;\r\n },\r\n },\r\n\r\n actions: {\r\n async updateBuddies(context) {\r\n const buddies = await services.buddy.buddies();\r\n const payload = {};\r\n payload.buddies = buddies;\r\n payload.memberGuid = context.rootState.user.userGuid;\r\n context.commit('updateBuddies', payload);\r\n },\r\n async updatePendingBuddies(context) {\r\n const pending = await services.buddy.pendingBuddies();\r\n const payload = {};\r\n payload.pendingBuddies = pending;\r\n payload.memberGuid = context.rootState.user.userGuid;\r\n context.commit('updatePendingBuddies', payload);\r\n },\r\n async updateBuddyRequests(context) {\r\n const requests = await services.buddy.buddyRequests();\r\n const payload = {};\r\n payload.buddyRequests = requests;\r\n payload.memberGuid = context.rootState.user.userGuid;\r\n context.commit('updateBuddyRequests', payload);\r\n },\r\n async populateShareCode(context) {\r\n const shareCode = await services.buddy.buddyShareToken();\r\n context.commit('updateShareCode', shareCode);\r\n },\r\n async emptyBuddyStore({ commit }) {\r\n commit('emptyBuddyCache');\r\n },\r\n },\r\n};\r\n\r\nexport { buddyStore };\r\n","const settingsStore = {\r\n state: {\r\n textSize: 2,\r\n calendarSync: false,\r\n },\r\n\r\n mutations: {\r\n pushTextSize(state, value) {\r\n state.textSize = value;\r\n },\r\n\r\n pushCalendarSync(state, value) {\r\n state.calendarSync = value;\r\n },\r\n },\r\n\r\n actions: {\r\n setTextSize(context, value) {\r\n return new Promise(() => {\r\n context.commit('pushTextSize', value);\r\n });\r\n },\r\n\r\n setCalendarSync(context, value) {\r\n if (value) {\r\n window.cordova.plugins.diagnostic.getCalendarAuthorizationStatus(\r\n (status) => {\r\n if (status === window.cordova.plugins.diagnostic.permissionStatus.GRANTED) {\r\n context.commit('pushCalendarSync', value);\r\n } else {\r\n window.cordova.plugins.diagnostic.requestCalendarAuthorization(\r\n (authStatus) => {\r\n if (authStatus === window.cordova.plugins.diagnostic.permissionStatus.GRANTED) {\r\n context.commit('pushCalendarSync', value);\r\n }\r\n },\r\n () => {\r\n alert('Unable to access your calendar, please check the app permissions.');\r\n },\r\n );\r\n }\r\n },\r\n () => {\r\n alert('Unable to access your calendar, please check the app permissions.');\r\n },\r\n );\r\n } else {\r\n context.commit('pushCalendarSync', value);\r\n }\r\n },\r\n },\r\n};\r\n\r\nexport { settingsStore };\r\n","// import moment from 'moment';\r\nimport { services } from '../services';\r\n\r\nconst stateStore = {\r\n state: {\r\n blackFriday: {\r\n State: 'Hide',\r\n EarlyAccessStart: '2022-11-22T20:20:00Z',\r\n Discount: 15,\r\n BlackFridayFinish: '2022-11-30T23:59:59Z',\r\n BonusVoucherAmount: 15,\r\n },\r\n twelveDaysOfChristmas: {\r\n StartDate: '2021-12-13T09:00:00Z',\r\n EndDate: '2021-12-24T23:59:00Z',\r\n },\r\n hasCompletedTour: false,\r\n dashboardMessage: {\r\n title: '',\r\n },\r\n },\r\n\r\n getters: {\r\n isBFHide: state => state.blackFriday.State === 'Hide',\r\n isBFRegister: state => state.blackFriday.State === 'EarlyAccessRegister',\r\n isBFEarlyAccess: state => state.blackFriday.State === 'EarlyAccessStart',\r\n isBF: state => state.blackFriday.State === 'BlackFridayStart',\r\n isTDC: state => new Date() < new Date(state.twelveDaysOfChristmas.EndDate)\r\n && new Date() > new Date(state.twelveDaysOfChristmas.StartDate),\r\n isTDCStart: state => new Date() > new Date(state.twelveDaysOfChristmas.StartDate),\r\n isTDCEnd: state => new Date() < new Date(state.twelveDaysOfChristmas.EndDate),\r\n },\r\n\r\n mutations: {\r\n pushDashboardMessage(state, value) {\r\n state.dashboardMessage = value;\r\n },\r\n pushBlackFridayState(state, value) {\r\n state.blackFriday = value;\r\n },\r\n pushTutorialState(state, value) {\r\n state.hasCompletedTour = value;\r\n },\r\n },\r\n\r\n actions: {\r\n updateDashboardMessage(context, value) {\r\n context.commit('pushDashboardMessage', value);\r\n },\r\n\r\n updateTutorialState(context, value) {\r\n context.commit('pushTutorialState', value);\r\n },\r\n\r\n updateStates(context) {\r\n return new Promise(() => {\r\n services.state.getBlackFridayState().then((result) => {\r\n context.commit('pushBlackFridayState', result);\r\n });\r\n });\r\n },\r\n },\r\n};\r\n\r\nexport { stateStore };\r\n","// import moment from 'moment';\r\nconst statsStore = {\r\n state: {\r\n networkStats: {\r\n ReferralPayoutAmount: 10,\r\n },\r\n },\r\n\r\n mutations: {\r\n pushNetworkStatsState(state, value) {\r\n state.networkStats = value;\r\n },\r\n },\r\n\r\n actions: {\r\n updateNetworkStats(context, value) {\r\n context.commit('pushNetworkStatsState', value);\r\n },\r\n },\r\n};\r\n\r\nexport { statsStore };\r\n","const giftCardStore = {\r\n state: {\r\n enteredCode: false,\r\n },\r\n\r\n mutations: {\r\n setEnteredCode(state) {\r\n state.enteredCode = true;\r\n },\r\n },\r\n\r\n actions: {\r\n setEnteredCode(context) {\r\n return new Promise(() => {\r\n context.commit('setEnteredCode');\r\n });\r\n },\r\n },\r\n};\r\n\r\nexport { giftCardStore };\r\n","import { services } from '../services';\r\n\r\nconst contentStore = {\r\n state: {\r\n lastGiftCardFetch: undefined,\r\n giftCardMembershipText: undefined,\r\n giftCardExperienceText: undefined,\r\n giftCardBannerText: undefined,\r\n giftCardBannerImage: undefined,\r\n giftCardCustomText: undefined,\r\n },\r\n\r\n mutations: {\r\n updateGiftCardContent(state, payload) {\r\n state.giftCardBannerImage = payload.bannerImage;\r\n state.giftCardBannerText = payload.bannerText;\r\n state.giftCardMembershipText = payload.membershipText;\r\n state.giftCardExperienceText = payload.experienceText;\r\n state.giftCardCustomText = payload.customText;\r\n state.lastGiftCardFetch = new Date();\r\n },\r\n },\r\n\r\n actions: {\r\n async updateGiftCardContent(context) {\r\n const content = await services.cmsService.getGiftCardPages();\r\n context.commit('updateGiftCardContent', {\r\n bannerImage: content.bannerImage,\r\n bannerText: content.bannerText,\r\n membershipText: content.membershipGiftCardText,\r\n experienceText: content.experienceGiftCardText,\r\n customText: content.customGiftCardText,\r\n });\r\n },\r\n },\r\n};\r\n\r\nexport { contentStore };\r\n","import Vue from 'vue';\r\nimport Vuex from 'vuex';\r\nimport VuexPersistence from 'vuex-persist';\r\n\r\nimport { themeStore } from './themeStore';\r\n// eslint-disable-next-line import/no-cycle\r\nimport { userStore } from './userStore';\r\nimport { clubStore } from './clubStore';\r\nimport { basketStore } from './basketStore';\r\nimport { layoutStore } from './layoutStore';\r\nimport { packagesStore } from './packagesStore';\r\nimport { buddyStore } from './buddyStore';\r\nimport { settingsStore } from './settingsStore';\r\nimport { stateStore } from './stateStore';\r\nimport { statsStore } from './statsStore';\r\nimport { giftCardStore } from './giftCardStore';\r\nimport { contentStore } from './contentStore';\r\n\r\nconst persistenceBit = new VuexPersistence({\r\n storage: window.localStorage,\r\n reducer: state => ({\r\n user: {\r\n isAuthenticated: state.user.isAuthenticated,\r\n homeClubId: state.user.homeClubId,\r\n homeClubName: state.user.homeClubName,\r\n locale: state.user.locale,\r\n membershipExpires: state.user.membershipExpires,\r\n },\r\n packages: {\r\n packages: state.packages.packages,\r\n lastFetch: state.packages.lastFetch,\r\n lastMemberGuid: state.packages.lastMemberGuid,\r\n },\r\n buddy: {\r\n shareCode: state.buddy.shareCode,\r\n },\r\n settings: {\r\n textSize: state.settings.textSize,\r\n calendarSync: state.settings.calendarSync,\r\n },\r\n state: {\r\n blackFriday: state.state.blackFriday,\r\n hasCompletedTour: state.state.hasCompletedTour,\r\n },\r\n statsStore: {\r\n networkStats: state.stats.networkStats,\r\n },\r\n giftCard: {\r\n enteredCode: state.giftCard.enteredCode,\r\n },\r\n basket: {\r\n donation: state.basket.donation,\r\n },\r\n }),\r\n});\r\n\r\nVue.use(Vuex);\r\nconst store = new Vuex.Store({\r\n modules: {\r\n user: userStore,\r\n theme: themeStore,\r\n basket: basketStore,\r\n club: clubStore,\r\n layout: layoutStore,\r\n packages: packagesStore,\r\n buddy: buddyStore,\r\n settings: settingsStore,\r\n state: stateStore,\r\n stats: statsStore,\r\n giftCard: giftCardStore,\r\n content: contentStore,\r\n },\r\n plugins: [persistenceBit.plugin],\r\n});\r\n\r\nexport { store };\r\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"fixed left-0 top-0 z-40 flex h-full max-h-full min-h-full w-full min-w-full items-center justify-center bg-black text-center\",class:_vm.bgOpacity},[_c('div',{staticClass:\"mx-2 max-h-screen sm:m-0 sm:ml-20\",class:[\n _vm.$isMobile.value ? 'max-h-screen overflow-y-auto' : '',\n _vm.setWidth === '' ? 'max-w-full' : (\" w-full \" + _vm.setWidth) ]},[_c('div',{staticClass:\" z-50 my-2 overflow-hidden rounded-lg shadow \",class:[{'w-full': _vm.$isMobile.value}, {'max-h-screen overflow-y-auto' : !_vm.$isMobile.value}, _vm.maxWidth, _vm.bgColor]},[(_vm.title !== '')?_c('div',{staticClass:\" relative overflow-hidden rounded-t-lg bg-gradient-to-br from-secondary-600 to-secondary-400 p-4 text-left text-white\"},[_c('div',{staticClass:\"relative z-20 flex items-start justify-start\"},[(!_vm.$isMobile.value)?_c('div',{ref:\"svgBit\",staticClass:\"mr-4\",class:{ 'h-0': !_vm.hasSvg, '': _vm.hasSvg }},[_vm._t(\"svg\")],2):_vm._e(),_c('div',{staticClass:\"pr-24\"},[_c('div',{staticClass:\"brand-heading text-lg font-normal\"},[_vm._v(\"\\n \"+_vm._s(_vm.title)+\"\\n \")]),_c('div',{staticClass:\"brand-body z-20 mt-1 text-sm font-normal tracking-tight text-gray-300\"},[_c('div',{staticClass:\"relative z-20\"},[_vm._v(\"\\n \"+_vm._s(_vm.description)+\"\\n \")])])])]),_c('div',{staticClass:\"absolute bottom-0 right-0 -mb-16 mr-4 md:-mb-20\"},[_c('img',{directives:[{name:\"local-img\",rawName:\"v-local-img\",value:('players/1.png'),expression:\"'players/1.png'\"}],staticClass:\"z-10 h-40 opacity-30 md:opacity-60\",staticStyle:{\"z-index\":\"10 !important\"}})])]):_vm._e(),_c('div',{staticClass:\"max-w-full\",class:_vm.padding},[_vm._t(\"content\"),_c('div',{staticClass:\"mt-5 sm:mt-4 sm:grid sm:grid-flow-row-dense sm:grid-cols-2 sm:gap-3\"},[_c('span',{staticClass:\"flex w-full shadow-sm sm:col-start-2\"},[_vm._t(\"primaryButton\")],2),_c('span',{staticClass:\"mt-3 flex w-full sm:col-start-1 sm:mt-0\"},[_vm._t(\"secondaryButton\")],2)])],2)])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n {{ title }}\r\n
\r\n
\r\n
\r\n {{ description }}\r\n
\r\n
\r\n
\r\n
\r\n\r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modalBase.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modalBase.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./modalBase.vue?vue&type=template&id=b3a9e4aa&\"\nimport script from \"./modalBase.vue?vue&type=script&lang=js&\"\nexport * from \"./modalBase.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"lds-ellipsis\"},[_c('div',{class:_vm.white ? 'bg-white' : 'bg-brand-500'}),_c('div',{class:_vm.white ? 'bg-white' : 'bg-brand-500'}),_c('div',{class:_vm.white ? 'bg-white' : 'bg-brand-500'}),_c('div',{class:_vm.white ? 'bg-white' : 'bg-brand-500'})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n