{"version":3,"file":"app-e6266db0.9729664bca28a8e6916d.bundle.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAcA;AAAA;AAXA;AACA;AACA;AAEA;AAEA;AACA;AAEA;AA6FA;AAAA;AAAA;AAAA;AACA;AA3FA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAAA;AAAA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAAA;AAEA;AAAA;AAEA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAYA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAGA;AAEA;AACA;AAMA;AACA;AACA;AACA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAhPA;AAkPA;AAIA;AAAA;AACA;AACA;AAEA;AACA;AAAA;AAAA;AACA;AACA;AACA;AACA;AAbA;AAeA;AAIA;AAAA;AACA;AACA;AAEA;AACA;AAAA;AAAA;AACA;AACA;AACA;AACA;AAbA;AAeA;AAGA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAhBA;AAkBA;AAGA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAxBA;AA0BA;AAGA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAdA;AAgBA;AAIA;AAAA;AAHA;AAIA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;AC/WA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA","sources":["webpack://www.zeusteam.com/./src/app.js","webpack://www.zeusteam.com/./src/app.scss","webpack://www.zeusteam.com/./src/app.html"],"sourcesContent":["import { PLATFORM } from 'aurelia-pal';\r\nimport { Redirect } from 'aurelia-router';\r\nimport { EventAggregator } from 'aurelia-event-aggregator';\r\nimport { Security } from './common/security';\r\nimport { c } from './common/common';\r\nimport { UiWidgets } from 'services/ui-widgets';\r\nimport { I18n } from './common/i18n';\r\nimport { Bootstrapper } from 'common/bootstrapper';\r\nimport { Versions } from 'services/versions';\r\nimport { Config } from 'services/config';\r\nimport { Sites } from 'services/sites';\r\nimport { hideSplashScreen, addAppStateChangeListener, initializeKeyboardEvents, screenOrientation, addScreenOrientationListener } from 'services/capacitor';\r\nimport environment from '../config/environment.json';\r\nimport { CapacitorUpdater } from '@capgo/capacitor-updater';\r\n\r\nexport class App {\r\n static inject = [EventAggregator, Security, UiWidgets, I18n, Bootstrapper, Versions, Config, Sites];\r\n\r\n language = null;\r\n languageOptions = [];\r\n env = environment.env;\r\n\r\n _handlers = [];\r\n\r\n pageTitle = 'Dashboard';\r\n pageDescription = 'This is the text under the title';\r\n\r\n _sidebarDrawer;\r\n\r\n constructor(ea, security, uiWidgets, i18n, bootstrapper, versions, config, sites) {\r\n this._ea = ea;\r\n\t this.security = security;\r\n\t this.uiWidgets = uiWidgets;\r\n\t this.i18n = i18n;\r\n this._bootstrapper = bootstrapper;\r\n this._versions = versions;\r\n this._config = config;\r\n this._sites = sites;\r\n\r\n this._initializeMobileApp();\r\n }\r\n\r\n _initializeMobileApp() {\r\n try {\r\n addAppStateChangeListener(async(state) => await this._onAppStateChanged(state));\r\n addScreenOrientationListener((orientation) => this._applyScreenOrientation(orientation));\r\n CapacitorUpdater.notifyAppReady();\r\n CapacitorUpdater.setChannel({ channel: environment.capgoChannel });\r\n } catch (err) {\r\n console.log(err);\r\n }\r\n }\r\n\r\n async _onAppStateChanged(state) {\r\n if (state && state.isActive) {\r\n // console.log('app.device-resume');\r\n } else {\r\n // console.log('app.device-pause');\r\n }\r\n }\r\n\r\n async _applyScreenOrientation(orientation) {\r\n try {\r\n if (!orientation) orientation = await screenOrientation();\r\n document.body.classList.remove('zeus-orientation-landscape');\r\n document.body.classList.remove('zeus-orientation-portrait');\r\n document.body.classList.add(`zeus-orientation-${orientation}`);\r\n } catch (err) {\r\n console.log(err);\r\n }\r\n }\r\n\r\n configureRouter(config, router){\r\n config.title = this._sites.title();\r\n\t\tconfig.addPipelineStep('authorize', AuthXStep);\r\n\t\tconfig.addPipelineStep('authorize', AuthZStep);\r\n\t\tconfig.addPipelineStep('authorize', AuthOnboardingStep);\r\n\t\tconfig.addPreRenderStep(onPreRender);\r\n\t\tconfig.addPostRenderStep(onPostRender);\r\n config.addPostRenderStep(new CheckClientVersionStep(this._ea, this._versions));\r\n\t\tconfig.map([\r\n {\r\n route: [\r\n '',\r\n 'login',\r\n 'sign-up',\r\n 'sign-up/:email',\r\n 'reset-password',\r\n 'reset-password-confirm/:token',\r\n 'logout',\r\n 'privacy-policy',\r\n 'terms-of-use',\r\n 'writing-agent-agreement'\r\n ],\r\n moduleId: PLATFORM.moduleName('account/index'),\r\n settings: {},\r\n },\r\n {\r\n route: 'writing-agent-agreement',\r\n moduleId: PLATFORM.moduleName('writing-agent-agreement'),\r\n settings: {},\r\n },\r\n {\r\n route: 'members',\r\n moduleId: PLATFORM.moduleName('members/_index'),\r\n settings: {},\r\n },\r\n {\r\n route: 'admin',\r\n moduleId: PLATFORM.moduleName('admin/_index'),\r\n settings: {},\r\n },\r\n\t ]);\r\n\r\n config.mapUnknownRoutes(this.handleUnknownRoutes);\r\n\r\n\t\tthis.router = router;\r\n\t}\r\n\r\n handleUnknownRoutes = (instruction) => {\r\n return { route: '', moduleId: 'login' };\r\n }\r\n\r\n async activate() {\r\n try {\r\n await this._bootstrapper.forApp();\r\n this.languageOptions.push({locale:'en', name: 'English'});\r\n this.language = this.languageOptions[0];\r\n this.languageOptions = this.i18n.supportedLanguages;\r\n this.language = this.i18n.language;\r\n\r\n if (!this.security.isAuthenticated) return;\r\n await this._bootstrapper.forLogin();\r\n } catch (err) {\r\n console.log(err);\r\n }\r\n\t}\r\n\r\n async attached() {\r\n try {\r\n this._handlers.push(this._ea.subscribe(c.EventKeys.site.openLightbox, (data) => this._openLightbox(data)));\r\n this._handlers.push(this._ea.subscribe(c.EventKeys.loginAuthenticationUpdated, () => this._addScripts()));\r\n this._handlers.push(this._ea.subscribe(c.EventKeys.site.openRightPanel, (data) => this._openRightPanel(data)));\r\n\r\n this._addScripts();\r\n await this._applyTheme();\r\n initializeKeyboardEvents(this._ea);\r\n this._applyScreenOrientation();\r\n if (!this.security.isAuthenticated) return;\r\n this._bootstrapper.forLoginBackground();\r\n } catch (err) {\r\n console.log('app attached error', err);\r\n } finally {\r\n hideSplashScreen();\r\n }\r\n }\r\n\r\n detached() {\r\n this._handlers.forEach(h => h.dispose());\r\n this._handlers = [];\r\n }\r\n\r\n _addScripts() {\r\n try {\r\n const chatWidgetContainer = document.getElementById('chat-widget-container');\r\n if (this.security.isAuthenticated) {\r\n const existingBodyScript = document.getElementById('zeus-body-script');\r\n if (!existingBodyScript) {\r\n const bodyJs = this._config.value('bodyScript');\r\n if (bodyJs) {\r\n const bodyScriptEl = document.createElement('script');\r\n bodyScriptEl.setAttribute('id', 'zeus-body-script');\r\n bodyScriptEl.text = c.Helpers.replaceVariables(this.security, bodyJs);\r\n document.body.appendChild(bodyScriptEl);\r\n }\r\n } else if (chatWidgetContainer) {\r\n chatWidgetContainer.style.display = 'block';\r\n }\r\n } else {\r\n if (chatWidgetContainer) {\r\n chatWidgetContainer.style.display = 'none';\r\n }\r\n }\r\n if (this.security.isAuthenticated) {\r\n const existingHeadScript = document.getElementById('zeus-head-script');\r\n if (!existingHeadScript) {\r\n const script = this._config.value('headScript');\r\n if (script) {\r\n const headScript = document.createElement('script');\r\n headScript.setAttribute('id', 'zeus-head-script');\r\n headScript.text = script;\r\n document.head.appendChild(headScript);\r\n }\r\n }\r\n }\r\n } catch (err) {\r\n console.log(err);\r\n }\r\n }\r\n\r\n async _applyTheme() {\r\n try {\r\n const theme = await this._sites.theme();\r\n var styleEl = document.createElement('style');\r\n styleEl.type = 'text/css';\r\n if (styleEl.styleSheet) styleEl.styleSheet.cssText = theme.css;\r\n else styleEl.appendChild(document.createTextNode(theme.css));\r\n document.getElementsByTagName(\"head\")[0].appendChild(styleEl);\r\n } catch (err) {\r\n console.log(err);\r\n }\r\n }\r\n\r\n\tasync changeLanguage(lang) {\r\n try {\r\n \t this.language = lang;\r\n\t await this.i18n.setLocale(lang.locale);\r\n await this.uiWidgets.initialize();\r\n this._ea.publish(c.EventKeys.reloadUiWidget, null);\r\n } catch (err) {\r\n console.log(err);\r\n }\r\n }\r\n\r\n _openLightbox(data) {\r\n if (data.jotform) {\r\n const existing = document.getElementById('zeus-jotform-script');\r\n if (existing) existing.remove();\r\n const qsParams = data.jotform.variablesQS.split('&');\r\n const iframeParameters = {};\r\n qsParams.forEach(qsParam => {\r\n const param = qsParam.split('=');\r\n iframeParameters[param[0]] = param[1];\r\n });\r\n const js = `var JFL_${data.jotform.id} = new JotformFeedback({formId:'${data.jotform.id}',base:'https://form.jotform.com/',windowTitle:'${data.jotform.windowTitle}',background:'#FFA500',fontColor:'#FFFFFF',type:'false',height:500,width:700,openOnLoad:true,iframeParameters:${JSON.stringify(iframeParameters)}})`;\r\n const bodyScript = document.createElement('script');\r\n bodyScript.setAttribute('id', 'zeus-jotform-script');\r\n bodyScript.text = js;\r\n document.body.appendChild(bodyScript);\r\n return;\r\n }\r\n this.showLightbox = true;\r\n if (data.embedSrc) {\r\n this.showEmbedLightbox = true;\r\n this.embedSrc = data.embedSrc;\r\n }\r\n this.embedSrcIsVideo = data.isVideo;\r\n this.lightboxVM.open(data.isVideo, data.fullHeight, data.zIndex);\r\n }\r\n\r\n lightboxClosed() {\r\n this.showLightbox = false;\r\n this.showEmbedLightbox = false;\r\n this.embedSrc = 'about:blank';\r\n }\r\n}\r\n\r\nclass onPostRender {\r\n static inject = [EventAggregator];\r\n _ea;\r\n\r\n constructor(ea) {\r\n this._ea = ea;\r\n }\r\n\r\n run(navigationInstruction, next) {\r\n this._ea.publish(c.EventKeys.navigation.changed, { fragment: navigationInstruction.fragment });\r\n window.scrollTo(0, 0);\r\n return next();\r\n }\r\n}\r\n\r\nclass onPreRender {\r\n static inject = [EventAggregator];\r\n _ea;\r\n\r\n constructor(ea) {\r\n this._ea = ea;\r\n }\r\n\r\n run(navigationInstruction, next) {\r\n this._ea.publish(c.EventKeys.navigation.changing, { fragment: navigationInstruction.fragment });\r\n window.scrollTo(0, 0);\r\n return next();\r\n }\r\n}\r\n\r\nclass AuthXStep {\r\n static inject = [Security];\r\n\r\n constructor(security) {\r\n\t\tthis.security = security;\r\n\t}\r\n\t\r\n\trun(navigationInstruction, next) {\r\n\t\tif (navigationInstruction.getAllInstructions().some(i => i.config.membersOnly)) {\r\n\t\t\tif (!this.security.isAuthenticated) {\r\n\t\t\t\tthis.security.setOrigin(navigationInstruction.fragment);\r\n\t\t\t\treturn next.cancel(new Redirect('login'));\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn next();\r\n\t}\r\n}\r\n\r\nclass AuthZStep {\r\n static inject = [Security];\r\n\r\n\tconstructor(security) {\r\n\t\tthis._security = security;\r\n\t}\r\n\t\r\n\trun(navigationInstruction, next) {\r\n if (navigationInstruction.getAllInstructions().some(i => i.config.settings.roles)) {\r\n const allInstructions = navigationInstruction.getAllInstructions();\r\n for (let i = 0; i < allInstructions.length; i++) {\r\n if (!allInstructions[i].config || !allInstructions[i].config.settings || !allInstructions[i].config.settings.roles) continue;\r\n if (this._security.isInRole(allInstructions[i].config.settings.roles)) continue;\r\n return next.cancel(new Redirect('#/'));\r\n }\r\n }\r\n\t\tif (navigationInstruction.getAllInstructions().some(i => i.config.adminOnly)) {\r\n\t\t\tif (!this._security.isAdmin) {\r\n console.log('isAdmin, not admin');\r\n\t\t\t\treturn next.cancel(new Redirect('#/'));\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn next();\r\n\t}\r\n}\r\n\r\nclass AuthOnboardingStep {\r\n static inject = [Security];\r\n\r\n\tconstructor(security) {\r\n\t\tthis._security = security;\r\n\t}\r\n\t\r\n\trun(navigationInstruction, next) {\r\n if (!this._security.isAuthenticated) return next();\r\n if (!this._security.agent.onboardingComplete && (navigationInstruction.fragment === '/members')) {\r\n return next.cancel(new Redirect('#/members/onboarding'));\r\n }\r\n\t\treturn next();\r\n\t}\r\n}\r\n\r\nclass CheckClientVersionStep {\r\n _ea;\r\n _version;\r\n\r\n constructor(ea, version) {\r\n this._ea = ea;\r\n this._version = version;\r\n }\r\n\r\n async run(navigationInstruction, next) {\r\n try {\r\n // For now, only doing the new client version check for admin\r\n if (await this._version.hasNewClientVersion()) {\r\n this._ea.publish(c.EventKeys.newClientVersion);\r\n }\r\n } catch (err) {\r\n console.log('CheckClientVersionStep', err);\r\n }\r\n return next();\r\n }\r\n}\r\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".zeus-env-banner {\\n position: fixed;\\n top: 0;\\n left: 0;\\n right: 0;\\n height: 6px;\\n z-index: 1031;\\n background: red;\\n font-size: 6px;\\n text-align: center;\\n color: white;\\n text-transform: uppercase;\\n font-weight: bold;\\n line-height: 6px;\\n letter-spacing: 3px;\\n}\\n.zeus-env-banner.zeus-env-prod {\\n display: none;\\n background: transparent;\\n}\\n\\n.zeus-app {\\n position: absolute;\\n overflow: auto;\\n top: var(--zeus-safe-area-top);\\n bottom: var(--zeus-safe-area-bottom);\\n left: var(--zeus-safe-area-left);\\n right: var(--zeus-safe-area-right);\\n}\\n.zeus-app > .zeus-app-root {\\n height: 100%;\\n}\", \"\",{\"version\":3,\"sources\":[\"webpack://./src/app.scss\"],\"names\":[],\"mappings\":\"AAAA;EACI,eAAA;EACA,MAAA;EACA,OAAA;EACA,QAAA;EACA,WAAA;EACA,aAAA;EACA,eAAA;EACA,cAAA;EACA,kBAAA;EACA,YAAA;EACA,yBAAA;EACA,iBAAA;EACA,gBAAA;EACA,mBAAA;AACJ;AACI;EACI,aAAA;EACA,uBAAA;AACR;;AAGA;EACI,kBAAA;EACA,cAAA;EACA,8BAAA;EACA,oCAAA;EACA,gCAAA;EACA,kCAAA;AAAJ;AAEI;EACI,YAAA;AAAR\",\"sourcesContent\":[\".zeus-env-banner {\\r\\n position: fixed;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n height: 6px;\\r\\n z-index: 1031;\\r\\n background: red;\\r\\n font-size: 6px;\\r\\n text-align: center;\\r\\n color: white;\\r\\n text-transform: uppercase;\\r\\n font-weight: bold;\\r\\n line-height: 6px;\\r\\n letter-spacing: 3px;\\r\\n\\r\\n &.zeus-env-prod {\\r\\n display: none;\\r\\n background: transparent;\\r\\n }\\r\\n}\\r\\n\\r\\n.zeus-app {\\r\\n position: absolute;\\r\\n overflow: auto;\\r\\n top: var(--zeus-safe-area-top);\\r\\n bottom: var(--zeus-safe-area-bottom);\\r\\n left: var(--zeus-safe-area-left);\\r\\n right: var(--zeus-safe-area-right);\\r\\n\\r\\n > .zeus-app-root {\\r\\n height: 100%;\\r\\n }\\r\\n}\\r\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Module\nvar code = \"\\r\\n\";\n// Exports\nexport default code;"],"names":[],"sourceRoot":""}