> = observer(({ Invoice: { Items, Total }, PayOnline }) => (\n \n \n {Items.map(item => (\n \n ))}\n \n \n \n \n));\n","import React, { useEffect } from 'react';\nimport UIContainer from '../../../components/UIContainer';\nimport { observer } from 'mobx-react-lite';\nimport { Box } from '../../../components/vensaComponents';\nimport { useParams, useLocation } from 'react-router';\nimport { usePaymentsStore } from '../../../store/mobx/mobx';\nimport { getDateText } from '../TransactionHistoryPage/HistoryListItem';\nimport { DoctorNote } from './components/DoctorNote';\nimport { Status } from './components/StatusText';\nimport { NameSection } from './components/NameSection';\nimport { MedicineList } from './components/MedicineList';\nimport { PickUpLocation } from './components/PickUpLocation';\nimport { PaymentDetails } from './components/PaymentDetails';\nimport { LOADING_STATUS } from '../../../libs/newHttp';\nimport { HealthTransactionItemType } from '../../../store/mobx/paymentStore/paymentStore.type';\nimport { Redirect } from 'react-router-dom';\n\nconst TransactionItemPage: React.FC = observer(() => {\n const store = usePaymentsStore();\n const params = useParams<{ transactionId?: string } | undefined>();\n const { search } = useLocation();\n const {\n healthTransaction,\n healthTransactionLoadingStatus,\n } = store;\n\n if (!(params && params.transactionId) || !search) {\n return ;\n }\n\n const type = (search.replace(\n '?type=',\n '',\n ) as unknown) as HealthTransactionItemType;\n\n useEffect(() => {\n store.getTransactionItem(params!.transactionId!, type);\n }, [store.getTransactionItem, params, type, store]);\n\n const Item = healthTransaction;\n\n return (\n \n \n {healthTransactionLoadingStatus === LOADING_STATUS.LOADED ? (\n
\n \n \n \n {Item.Medications && (\n \n )}\n {(Item.LocationName || Item.LocationAddress) && (\n \n )}\n \n \n ) : null}\n
\n \n );\n});\n\nexport default TransactionItemPage;\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport AddCard from 'vScript/Payment/AddCard';\nimport { go } from 'routes';\n\nconst AddWalletCreditCardPage: React.FC = observer(() => {\n return ;\n});\n\nexport default AddWalletCreditCardPage;\n","import React from 'react';\nimport UIContainer from 'components/UIContainer';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Image, Text } from 'components/vensaComponents';\nimport voucher from 'svgs/voucher.svg';\n\nconst VouchersPage: React.FC = observer(() => {\n return (\n \n \n \n \n You don't have any vouchers\n \n \n Companies, insurance and emergency departments can send you vouchers\n to pay for your healthcare.\n \n \n \n );\n});\n\nexport default VouchersPage;\n","import React from 'react';\nimport { isDesktop } from '../../config';\nimport { ProtectedRoute, push } from '../utils';\nimport PaymentsPage from 'PaymentsPage/PaymentsPage';\nimport DesktopPaymentsPage from 'PaymentsPage/DesktopPaymentsPage/DesktopPaymentsPage';\nimport CardPage from 'PaymentsPage/subRoutes/CardPage/CardPage';\nimport TransactionHistoryPage from 'PaymentsPage/subRoutes/TransactionHistoryPage/TransactionHistory';\nimport TransactionItemPage from 'PaymentsPage/subRoutes/TransactionItemPage/TransactionItemPage';\nimport AddWalletCreditCardPage from 'PaymentsPage/subRoutes/AddWalletCreditCardPage/AddWalletCreditCardPage';\nimport VouchersPage from 'PaymentsPage/subRoutes/VouchersPage/VouchersPage';\n\nconst PATHS = {\n PAYMENTS: '/payments',\n VOUCHERS: '/payments/vouchers',\n ADD_CREDIT_CARD: '/payments/add-credit-card',\n CARD: '/payments/card/:cardToken',\n TRANSACTION_HISTORY: '/payments/transaction-history',\n TRANSACTION_ITEM: '/payments/transaction-item/:transactionId',\n};\n\nconst go = {\n addCreditCard: () => push(PATHS.ADD_CREDIT_CARD),\n payments: () => push(PATHS.PAYMENTS),\n card: cardId => push(`/payments/card/${cardId}`),\n transactionHistory: () => push(PATHS.TRANSACTION_HISTORY),\n transactionItem: transactionId =>\n push(`/payments/transaction-item/${transactionId}`),\n vouchers: () => push(PATHS.VOUCHERS),\n};\n\n// change all to ProtectedRoute once finished\nconst PaymentsRoutes = [\n ,\n ,\n ,\n ,\n ,\n ,\n];\n\nexport default PaymentsRoutes;\nexport { go };\n","import { IHidable } from 'components/LearnMorePopUp/types';\nimport React, { Component, PropsWithChildren, ReactNode } from 'react';\nimport { goBack } from '../routes/utils';\n\ninterface ContainerProps {\n hide: () => void;\n}\n\nconst withContainer = (\n ContainerComponent: React.ComponentType>, \n WrappedComponent: React.ComponentType) => \n (props: P) =>\n(\n \n \n \n);\n\nexport default withContainer;\n","import React from 'react';\nimport { ProtectedRoute, push } from '../utils';\nimport AddToHomeScreen from '../../components/LearnMorePopUp/AddToHomeScreen/AddToHomeScreen';\nimport styled from 'styled-components';\nimport WithContainer from 'libs/WithContainer';\n\nconst go = { addToHomeScreen: () => push('/addToHomeScreen') };\n\nconst HealthFeedContainer = styled.div`\n position: relative;\n width:100vw;\n height:100vh;\n background: #FFF;\n`;\nconst FakeHeader = styled.div`\n position: absolute;\n top: 0;\n background: var(--header-gradient);\n color: var(--color-white);\n fill: var(--color-white);\n stroke: var(--color-white);\n width: 100%;\n height: 30vh;\n z-index:1;\n`;\n\nconst FakeContent = styled.div`\n position: absolute;\n top: 0;\n width: 100vw;\n height: 100vh;\n padding: 1rem;\n background-color: #0000008A;\n z-index:2;\n`;\n\nconst PopUpContainer = ({children}) => (\n \n \n \n {children}\n \n \n \n);\n\nconst AddToHomeScreenRoutes = [\n ,\n];\n\nexport default AddToHomeScreenRoutes;\nexport { go };","import React, { PropsWithChildren, useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Text, Image } from 'components/vensaComponents';\nimport { Line } from 'PaymentsPage/components/Line';\n// import moment from 'moment';\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\n// const getDate = (dateTime: string) => moment(dateTime).format('D/MM/YY - LT');\n\nexport const BaseDetailBox = observer(({ children }: PropsWithChildren<{}>) => (\n \n {children}\n \n));\n\nexport const BaseDetailSectionHeader: React.FC<{\n itemName: string;\n givenName: string;\n familyName: string;\n organisationName: string;\n providerName: string;\n}> = observer(\n ({ itemName, givenName, familyName, organisationName, providerName }) => (\n \n \n \n {itemName}\n \n {itemName === \"Clinical Notes\" && \n \n \n {givenName} {familyName}\n \n {providerName} \n {organisationName} \n
\n }\n \n \n ),\n);\n\nexport const BaseDetailSectionBottom: React.FC<{\n bottomTitle: string;\n bottomText: string;\n doctorNote?: string | undefined;\n lab?: boolean;\n immun?: boolean;\n}> = observer(({ bottomText, bottomTitle, lab, doctorNote, immun }) => {\n const [val, setVal] = useState(\"\");\n const rtf = bottomText.startsWith(\"{\");\n\n\n // Check if RTF format then convert to html, otherwise use the string given\n if (rtf) rtfToHtml.fromString(bottomText, (err: any, html: any) => { setVal(html) })\n else if (bottomText !== val) setVal(bottomText);\n\n return (\n \n \n {bottomTitle}\n \n \n {rtf &&
}\n {!rtf && bottomText.split('\\t').map(str => {str}
)}\n \n {doctorNote &&\n \n Internal Comment: \n \n {doctorNote} \n
\n }\n \n )\n});\n\nexport const BaseDetailSection: React.FC<{\n topText: string;\n isLabResult: boolean;\n providerName: string;\n dateTime: string;\n itemName: string;\n givenName: string;\n familyName: string;\n organisationName: string;\n bottomTitle: string;\n bottomText: string;\n providerImageUrl: string;\n doctorNote?: string;\n articleLinks?: string[] | null\n internalComment: string;\n}> = observer(\n ({\n topText,\n isLabResult,\n providerName,\n dateTime,\n providerImageUrl,\n itemName,\n givenName,\n familyName,\n organisationName,\n bottomTitle,\n internalComment,\n articleLinks,\n doctorNote,\n bottomText,\n }) => {\n const verb = isLabResult ? 'From' : 'Performed by';\n const myHealthStore = useMyHealthStore();\n return (\n \n {isLabResult &&\n \n {doctorNote && \n \n \n {doctorNote}\n \n {articleLinks && articleLinks.map((link) => {\n return (\n {\n myHealthStore.setHealthNavigator({\n link: link,\n isOpen: true,\n })\n }}\n >\n {link}\n \n )\n })}\n
\n }\n \n \n \n {providerName && \n \n {verb} {providerName}\n \n }\n {providerImageUrl &&\n \n }\n \n \n \n }\n {!isLabResult &&\n \n Vaccination Details \n \n
\n \n {verb} {organisationName}\n
\n \n {providerImageUrl &&\n
\n }\n
\n \n \n }\n\n \n\n \n \n );\n },\n);\n","import React, { useEffect, useRef, useState } from 'react';\nimport { toJS, isObservableArray } from 'mobx';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Text, Textarea, FlatButton } from '../../components/vensaComponents';\nimport { useMyHealthStore } from '../../store/mobx/mobx';\nimport {\n IImmunisation,\n IComment,\n ICommentNew,\n CommentType,\n IClinicNote,\n SelectedCommentTypeEnum,\n} from '../../store/mobx/myHealthStore/myHealthStore.type';\nimport { ILabResult } from '../../store/mobx/myHealthStore/myHealthStore.type';\nimport moment from 'moment';\nimport { is } from '../../libs/newHttp';\nimport { MyHealthStore } from '../../store/mobx/myHealthStore/myHealthStore';\nimport cross from 'images/cross.png';\nimport { isDesktop } from 'config';\nimport { ClinicalNotesTab } from 'MyHealthPage/Tabs/ClinicalNotesTab/ClinicalNotesTab';\nimport Loading from 'components/loadingSpinner';\n\nconst getDate = (dt: string) => moment(dt).format('D/MM/YYYY LT');\n\nconst getComment = (\n commentType: SelectedCommentTypeEnum,\n labResultsTab: MyHealthStore['labResultsTab'],\n immunisationsTab: MyHealthStore['immunisationsTab'],\n clinicNotesTab: MyHealthStore['clinicNotesTab'],\n itemId: string,\n): IComment[] | undefined => {\n const DATA_MAP = {\n [CommentType.LabResult]: labResultsTab.all,\n [CommentType.Immunisation]: immunisationsTab.all,\n [CommentType.DoctorNotes]: clinicNotesTab.all,\n };\n\n const toFind: IImmunisation[] | ILabResult[] | IClinicNote[] = DATA_MAP[commentType];\n let item1 = toFind\n //@ts-ignore\n .find(v => v.Id === itemId);\n\n \n let comments: IComment[] | undefined | null = undefined;\n if (\n commentType === CommentType.LabResult ||\n commentType === CommentType.Immunisation\n ) {\n if (item1 === undefined) { return [] }\n if (item1.Comments === null) { return [] }\n comments = (item1 as (ILabResult | IImmunisation)).Comments;\n } else if (commentType === CommentType.DoctorNotes) {\n if (item1 === undefined) { return [] }\n comments = (item1 as IClinicNote).Comments;\n }\n\n if (!comments) return [];\n const hasComment = false //isObservableArray(comments) && comments.length > 0;\n\n return comments;\n};\n\nexport const AddComment: React.FC<{\n commentType: SelectedCommentTypeEnum;\n itemId: string;\n label: string;\n itemToShow?: any;\n refreshList?: () => void;\n onSubmit: (\n commentType: SelectedCommentTypeEnum,\n parentId: string,\n newComment: ICommentNew,\n ) => void;\n}> = observer(({ commentType, label, itemId, onSubmit, itemToShow, refreshList }) => {\n const {\n labResultsTab,\n immunisationsTab,\n clinicNotesTab,\n postNewCommentLoadingStatus,\n } = useMyHealthStore();\n const [isInputState, setIsInputState] = useState(false);\n const [text, setText] = useState('');\n const inputRef = useRef(null);\n\n if (is.loading(postNewCommentLoadingStatus)) {\n return (\n \n ADDING COMMENT \n \n \n );\n }\n\n const comment = getComment(\n commentType,\n labResultsTab,\n immunisationsTab,\n clinicNotesTab,\n itemId,\n );\n\n return (\n \n {comment !== undefined && comment.length > 0 && \n \n Comments: \n \n {comment.map((item, i) => { \n if (item.Deleted) { return }\n return (\n \n
\n {item.Content} \n {getDate(item.DateOfComment)} \n
\n {/*
{\n deleteComment(item.Id)\n }}/>*/}\n
\n )})}\n \n }\n\n {isInputState ? (\n \n \n ) : (\n {\n setIsInputState(true);\n setTimeout(() => {\n inputRef.current!.focus();\n }, 50)\n }}\n >\n {label}\n \n )}\n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport UIContainer from 'components/UIContainer';\nimport { useParams } from 'react-router';\nimport { Redirect } from 'react-router-dom';\nimport { BaseDetailSection } from 'MyHealthPage/components/BaseDetailSection';\nimport { useMyHealthStore } from 'store/mobx/mobx';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\nimport { CommentType } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport { go } from 'routes';\nimport moment from 'moment';\n\nconst ImmunisationPage: React.FC = observer(() => {\n const { id } = useParams<{ id: string }>();\n const phrStore = useMyHealthStore();\n const itemToShow = phrStore.immunisationsTab.all.find(item => item.Id === id);\n\n if (!id || !itemToShow) {\n return ;\n }\n\n const immunText = \n `Batch Number: ${itemToShow.BatchNumber}\\t` + `Expiry: ${itemToShow.Expiry}\\t` + `Route: ${itemToShow.Route}\\t` + `Site: ${itemToShow.Site}`\n const getDate = (dateTime: string) => moment(dateTime).format('D/MM/YY');\n \n return (\n go.home(3)}>\n \n \n );\n});\n\nexport default ImmunisationPage;\n","import React, { useEffect } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport UIContainer from 'components/UIContainer';\nimport { useParams, Redirect } from 'react-router';\nimport styled from 'styled-components';\nimport { useMyHealthStore } from 'store/mobx/mobx';\nimport { BaseDetailSection } from 'MyHealthPage/components/BaseDetailSection';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\nimport { CommentType } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport { actions } from 'components/UIContainer/MobileUI/MainShell/actions/actions';\nimport moment from 'moment';\nimport { go } from 'routes';\nimport { useDispatch } from 'react-redux';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport Loading from 'components/loadingSpinner';\n\nexport interface ILabResult {\n Id: string;\n NameOfTest: string;\n ConsumerId: string;\n PatientId: string;\n PatientPmsId: string;\n GivenName: string;\n FamilyName: string;\n AttentionStaffCode: string;\n Abnormal: number;\n OrganisationId: string;\n OrganisationName: string;\n ProfilePictureURL: string;\n ProviderId: string;\n ProviderName: string;\n DoctorNotes: string;\n Confidential: boolean;\n DateTime: string;\n IsNewInPastMonth: boolean;\n Results: string;\n Comments: [];\n ErrorMessage: string;\n}\n\nconst Background = styled.div`\n background-color: #F5F5F5;\n position: absolute;\n height: 100%;\n width: 100%;\n transition: all 0.3s linear;\n z-index: 10;\n visibility: visible;\n`\nconst LabResultPage: React.FC = observer(() => {\n const { id } = useParams<{ id: string }>();\n const phrStore = useMyHealthStore();\n \n const dispatch = useDispatch();\n\n useEffect(() => {\n if (phrStore.currentLabPage) {\n if (phrStore.currentLabPage.NeedFeedBackForLabResearch) {\n dispatch(actions.setWhiteBoxNotification({\n isOpen: true,\n index: 4\n }))\n }\n } else if (itemToShow) {\n if (itemToShow.NeedFeedBackForLabResearch) {\n dispatch(actions.setWhiteBoxNotification({\n isOpen: true,\n index: 4\n }))\n }\n }\n })\n\n // Finding relevant lab result:\n // - From existing list of all results\n // - From health feed notification\n // - From drop down lab tab notification\n let itemToShow = phrStore.labResultsTab.all.find(item => item.Id === id);\n if (!id || !itemToShow) {\n if (phrStore.currentLabPage === undefined) {\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let patientId = params.get('p');\n let when = params.get('w');\n\n if (patientId === null || when === null) {\n return \n }\n\n phrStore.getLabResult(patientId, when, () => itemToShow = phrStore.currentLabPage);\n } else {\n itemToShow = phrStore.currentLabPage;\n }\n }\n const getDate = (dateTime: string) => moment(dateTime).format('D/MM/YY');\n if (itemToShow === undefined) {\n return (\n \n \n \n
\n )\n }else {\n phrStore.setCurrentLabPage(itemToShow);\n return (\n go.home(3)}>\n \n {!itemToShow ?
:\n \n }\n \n \n \n );\n }\n});\n\nexport default LabResultPage;\n","import React, { useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport UIContainer from 'components/UIContainer';\nimport { useParams } from 'react-router';\nimport { Redirect } from 'react-router-dom';\nimport {\n BaseDetailBox,\n BaseDetailSectionHeader,\n BaseDetailSectionBottom,\n} from 'MyHealthPage/components/BaseDetailSection';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\nimport {\n ISummaryItem,\n CommentType,\n} from 'store/mobx/myHealthStore/myHealthStore.type';\nimport moment from 'moment';\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { go } from 'routes';\n\nconst SummarySection: React.FC = observer(\n ({ ClinicalFinding, Notes }) => {\n if (!ClinicalFinding || !Notes) return null;\n return ;\n },\n);\n\nconst ClinicNotePage: React.FC = observer(() => {\n const store = useAccountStore();\n const { id } = useParams<{ id: string }>();\n const phrStore = useMyHealthStore();\n const itemToShow = phrStore.clinicNotesTab.all.find(item => item.Id === id);\n\n if (!id || !itemToShow) {\n return ;\n }\n \n const getDate = (dateTime: string) => moment(dateTime).format('D/MM/YY');\n const [subjective, setSubjective] = useState(\"\");\n const [objective, setObjective] = useState(\"\");\n\n // Check if RTF format then convert to html, otherwise use the string given\n if (itemToShow.SubjectiveNotes.startsWith(\"{\")) rtfToHtml.fromString(itemToShow.SubjectiveNotes, (err: any, html: any) => { setSubjective(html) })\n else if (subjective !== itemToShow.SubjectiveNotes) setSubjective(itemToShow.SubjectiveNotes);\n\n if (itemToShow.ObjectiveNotes.startsWith(\"{\")) rtfToHtml.fromString(itemToShow.ObjectiveNotes, (err: any, html: any) => { setObjective(html) })\n else if (objective !== itemToShow.ObjectiveNotes) setObjective(itemToShow.ObjectiveNotes);\n\n return (\n go.home(3)}>\n \n
\n \n
\n
\n {itemToShow.ClinicalNotesSummaries.map((item) => {\n return (\n \n )\n })}\n {/*}\n \n \n */}\n \n
\n
\n \n );\n});\n\nexport default ClinicNotePage;\n","import React, { PropsWithChildren, useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Text } from 'components/vensaComponents';\nimport { Line } from 'PaymentsPage/components/Line';\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { useMyHealthStore } from 'store/mobx/mobx';\nimport styled from 'styled-components';\nimport Loading from 'components/loadingSpinner';\n\nconst DownloadLink = styled.a`\n font-size: var(--font-20);\n color: var(--color-pelorous);\n`\n\nexport const DocumentDetailBox = observer(({ children }: PropsWithChildren<{}>) => (\n \n {children}\n \n));\n\nexport const DocumentDetailSectionHeader: React.FC<{\n itemName: string;\n givenName: string;\n familyName: string;\n organisationName: string;\n providerName: string;\n}> = observer(\n ({ itemName, givenName, familyName, organisationName, providerName }) => (\n \n \n \n {itemName}\n \n \n \n {givenName} {familyName}\n \n {providerName} \n {organisationName} \n
\n \n \n ),\n);\n\nexport const DocumentDetailSectionBottom: React.FC<{\n patientId: string,\n documentId: string,\n textContent: string;\n isPDF: boolean\n}> = observer(({ patientId, documentId, textContent, isPDF }) => {\n const [val, setVal] = useState(\"\");\n const rtf = textContent.startsWith(\"{\");\n const phrStore = useMyHealthStore();\n\n // Check if RTF format then convert to html, otherwise use the string given\n if (rtf) rtfToHtml.fromString(textContent, (err: any, html: any) => { setVal(html) })\n else if (textContent !== val) setVal(textContent);\n\n return isPDF ?\n (\n \n \n \n phrStore.downloadDocument(patientId, documentId)}>Click here to download document \n \n \n ) :\n (\n \n \n {rtf &&
}\n {!rtf && textContent.split('\\t').map(str => {str}
)}\n \n \n )\n});\n\nexport const DocumentDetailSection: React.FC<{\n patientId: string;\n documentId: string;\n providerName: string;\n itemName: string;\n givenName: string;\n familyName: string;\n organisationName: string;\n textContent: string;\n isPDF: boolean\n}> = observer(\n ({\n patientId,\n documentId,\n providerName,\n itemName,\n givenName,\n familyName,\n organisationName,\n textContent,\n isPDF\n }) => {\n return (\n \n \n Health Document \n \n
\n \n {organisationName}\n
\n \n
\n \n \n\n \n\n \n \n );\n },\n);\n","import React, { useEffect } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport UIContainer from 'components/UIContainer';\nimport { useParams, Redirect } from 'react-router';\nimport styled from 'styled-components';\nimport { useMyHealthStore } from 'store/mobx/mobx';\nimport { DocumentDetailSection } from './DocumentDetailSection';\nimport { actions } from 'components/UIContainer/MobileUI/MainShell/actions/actions';\nimport moment from 'moment';\nimport { go } from 'routes';\nimport { useDispatch } from 'react-redux';\nimport Loading from 'components/loadingSpinner';\n\nconst Background = styled.div`\n background-color: #F5F5F5;\n position: absolute;\n height: 100%;\n width: 100%;\n transition: all 0.3s linear;\n z-index: 10;\n visibility: visible;\n`\nconst DocumentPage: React.FC = observer(() => {\n const { id } = useParams<{ id: string }>();\n const phrStore = useMyHealthStore();\n \n const dispatch = useDispatch();\n\n useEffect(() => {\n if (phrStore.currentLabPage) {\n if (phrStore.currentLabPage.NeedFeedBackForLabResearch) {\n dispatch(actions.setWhiteBoxNotification({\n isOpen: true,\n index: 4\n }))\n }\n }\n })\n\n let itemToShow = phrStore.patientDocumentTab.all.find(item => item.Id === id);\n if (!id || !itemToShow) {\n if (phrStore.currentDocumentPage === undefined) {\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let documentId = params.get('d');\n\n if (documentId === null) {\n return \n }\n\n } else {\n itemToShow = phrStore.currentDocumentPage;\n }\n }\n const getDate = (dateTime: string) => moment(dateTime).format('D/MM/YY');\n if (itemToShow === undefined) {\n return (\n \n \n \n
\n )\n }else {\n phrStore.setCurrentDocumentPage(itemToShow);\n const rtfData = itemToShow.Content?.find(d => d.ContentType === \"application/rtf\")?.Data ?? \"\";\n return (\n go.home(3)}>\n \n {!itemToShow ? :\n d.ContentType === \"application/pdf\") !== undefined}\n />\n }\n
\n \n );\n }\n});\n\nexport default DocumentPage;\n","import React from 'react';\nimport { isDesktop } from '../../config';\n// import { Route } from 'react-router';\nimport { ProtectedRoute, push } from '../utils';\nimport ImmunisationPage from '../../MyHealthPage/subRoutes/ImmunisationPage/ImmunisationPage';\nimport LabResultPage from '../../MyHealthPage/subRoutes/LabResultPage/LabResultPage';\nimport ClinicNotePage from '../../MyHealthPage/subRoutes/ClinicNotePage/ClinicNotePage';\nimport DocumentPage from '../../MyHealthPage/subRoutes/DocumentPage/DocumentPage';\n\nconst PATHS = {\n IMMUNISATION: '/immunisation/:id',\n LAB_RESULT: '/lab-result/:id',\n CLINIC_NOTE: '/clinic-note/:id',\n DOCUMENT: '/patient-document/:id',\n};\n\nconst go = {\n goImmunisation: immunisationId => push(`/immunisation/${immunisationId}`),\n goLabResult: (labResultId, patientId, whenReceived) => push(`/lab-result/${labResultId}`),\n goClinicNote: clinicNoteId => push(`/clinic-note/${clinicNoteId}`),\n goDocument: documentId => push(`/patient-document/${documentId}`),\n};\n\n// change all to ProtectedRoute once finished\nconst MyHealthRoutes = !isDesktop() && [\n ,\n ,\n ,\n ,\n];\n\nexport default MyHealthRoutes;\nexport { go };\n","import styled from 'styled-components';\n\nexport const Container = styled.div`\n margin-top: 2rem;\n`\nexport const Header = styled.div`\n font-size: 14px;\n color: #585858;\n margin: 0.7rem 0;\n font-weight: bold;\n margin-left: 1rem;\n`\nexport const Card = styled.div`\n background-color: white;\n width: 497px;\n min-height: 170px;\n box-shadow: 0 3px 6px #00000029;\n padding: 0.7rem 0rem;\n display: flex;\n flex-direction: row;\n margin: 1rem 1rem;\n`\nexport const Title = styled.div`\n color: #6C6C6C;\n font-size: 13px;\n border-bottom: 1px solid #DADADA;\n padding-bottom: 0.7rem;\n width: 90%;\n margin-bottom: 0.5rem;\n`\nexport const Section = styled.div`\n width: 100%;\n margin: 0 1rem;\n`\n\nexport const NoContent = styled.div`\n font-size: 14px;\n width: 100%;\n text-align: center;\n display: inline-block;\n margin: 2rem 0;\n color: #CDCDCD;\n font-style: italic;\n`","import { Box, Text } from 'components/vensaComponents';\nimport { observer } from 'mobx-react-lite';\nimport React from 'react';\nimport styled from 'styled-components';\nimport moment from 'moment';\n\nconst Icon: React.FC<{ onClick: () => void }> = ({ onClick }) => (\n onClick()}\n >\n i \n \n);\n\nconst TooltipBox = styled.span`\n position: absolute;\n top: calc(100% + 10px);\n left: 30px;\n visibility: hidden;\n color: transparent;\n background-color: transparent;\n width: max-content;\n max-width: fit-content;\n padding: 8px 8px;\n border-radius: 4px;\n transition: visibility 0.5s, color 0.5s, background-color 0.5s, width 0.5s,\n padding 0.5s ease-in-out;\n &:before {\n content: \"\";\n width: 0;\n height: 0;\n left: 40px;\n top: -10px;\n position: absolute;\n border: 10px solid transparent;\n transform: rotate(135deg);\n transition: border 0.3s ease-in-out;\n }\n`\n\nconst Label = styled.div`\n font-size: 14px;\n color: #07A3C8;\n width: 90%;\n`\n\nconst Container = styled.div`\n display: flex;\n flex-direction: row;\n width: 100%;\n align-items: center;\n padding: 0.5rem 0;\n position: relative;\n\n & ${Label}:hover + ${TooltipBox} {\n visibility: visible;\n color: #fff;\n background-color: #07A3C8;\n width: max-content;\n padding: 8px 8px;\n z-index: 1;\n transition-delay:0.5s;\n &:before {\n border-color: transparent transparent #07A3C8\n #07A3C8;\n }\n }\n`\n\nconst TooltipLine = styled.div`\n font-size: 14px;\n padding: 0.5rem 0;\n`\n\ninterface IProps {\n text: string;\n tooltipText?: string[];\n date: string;\n onClick: (keyword: string) => void;\n}\n\nconst ClickableItem: React.FC = ({ text, tooltipText, date, onClick }) =>\n \n {text} {date ? `(${moment(date).format('DD/MM/YYYY')})` : ''}\n \n {tooltipText ? \n {(tooltipText.length ?? 0) > 0 ? tooltipText.map((item: any) =>\n {item} \n ) : null}\n : null}\n onClick(text)} />\n \n\nexport default ClickableItem;","import { observer } from 'mobx-react-lite';\nimport React, { useState } from 'react';\nimport * as Styled from './Section.styled';\nimport Item from '../ClickableItem';\nimport styled from 'styled-components';\nimport moment from 'moment';\n\nconst Label = styled.div`\n font-size: 14px;\n color: #07A3C8;\n width: 90%;\n display: flex;\n flex-direction: row;\n width: 100%;\n align-items: center;\n padding: 0.5rem 0;\n`\ninterface IProps {\n header: string;\n titles: string[],\n lists: any[],\n medications?: boolean\n}\n\nfunction getTooltipText(item: any) {\n if (item.NameOfAllergy) {\n return [`Note: ${item.DoctorNotes}`, `Date: ${moment(item.DateTime).format('DD/MM/YYYY')}`, `Practice: ${item.OrganisationName}`, `Practitioner: ${item.ProviderName}`];\n }\n if (item.GenericName) {\n return [`Note: ${item.DoctorNotes}`, `Date: ${moment(item.DateTime).format('DD/MM/YYYY')}`, `Practice: ${item.OrganisationName}`, `Practitioner: ${item.ProviderName}`];\n }\n if (item.Name) {\n return [`Description: ${item.Description}`, `Date: ${moment(item.DiagnosisDate).format('DD/MM/YYYY')}`, `Practice: ${item.OrganisationName}`, `Practitioner: ${item.ProviderName}`];\n }\n return [];\n}\n\nconst Section: React.FC = observer(({ header, titles, lists, medications }) => {\n return (\n \n {header} \n \n \n {titles[0]} \n {lists[0].length === 0 && No Records Found }\n {\n lists[0].map((item: any) =>\n - {\n window.open(`https://healthify.nz/search/results#stq=${keyword}&stp=1`)\n }}\n text={item.NameOfAllergy || item.GenericName || item.Name}\n tooltipText={getTooltipText(item)}\n date={item.DateTime || item.DiagnosisDate}\n />\n )\n }\n
\n {titles.length === 2 &&\n \n {titles[1]} \n {lists[1].length === 0 && No Records Found }\n {\n lists[1].map((item: any) => {\n if (titles[1] === \"Weight/Height\") {\n return {item.Name} \n }\n return (\n - {\n window.open(`https://healthify.nz/search/results#stq=${keyword}&stp=1`)\n }}\n text={item.NameOfAllergy || item.GenericName || item.Name}\n tooltipText={getTooltipText(item)}\n date={item.DateTime || item.DiagnosisDate}\n />\n )\n })\n }\n
\n }\n \n \n )\n})\n\nexport default Section;\n\n","import styled from 'styled-components';\n\nexport const Container = styled.div`\n margin-top: 2rem;\n`\nexport const Header = styled.div`\n font-size: 14px;\n color: #585858;\n margin: 0.7rem 0;\n font-weight: bold;\n margin-left: 1rem;\n`\nexport const Card = styled.div`\n background-color: white;\n width: 497px;\n min-height: 170px;\n box-shadow: 0 3px 6px #00000029;\n padding: 0.7rem 0rem;\n display: flex;\n flex-direction: row;\n margin: 1rem 1rem;\n`\nexport const Title = styled.div`\n color: #6C6C6C;\n font-size: 13px;\n border-bottom: 1px solid #DADADA;\n padding-bottom: 0.7rem;\n width: 90%;\n margin-bottom: 0.5rem;\n`\nexport const Section = styled.div`\n width: 100%;\n margin: 0 1rem;\n`\n\nexport const NoContent = styled.div`\n font-size: 14px;\n width: 100%;\n text-align: center;\n display: inline-block;\n margin: 2rem 0;\n color: #CDCDCD;\n font-style: italic;\n`","import { observer } from 'mobx-react-lite';\nimport React from 'react';\nimport * as Styled from './AccidentSection.styled';\nimport Item from '../ClickableItem';\nimport moment from 'moment';\nimport { IAccident } from 'store/mobx/myHealthStore/myHealthStore.type';\n\ninterface IAccidentsProps {\n header: string;\n title: string,\n accidents: IAccident[],\n}\n\nfunction getTooltipText(item: IAccident) {\n if (item.AccidentNumber) {\n return [`Accident Number: ${item.AccidentNumber}`, `Status: ${item.Status}`, `Date: ${moment(item.AccidentDateTime).format('DD/MM/YYYY')}`, `Insurer: ${item.Insurer}`, `Description: ${item.Description}`, `Diagnosis: ${item.Description}`, `Practitioner: ${item.ProviderName}`];\n }\n return [];\n}\n\nconst AccidentSection: React.FC = observer(({ header, title, accidents }) => {\n return (\n \n {accidents?.length > 0 &&\n \n {header} \n \n \n {title} \n {accidents.length === 0 && No Records Found }\n {accidents.length > 0 &&\n accidents.map((item: any) =>\n - {\n window.open(`https://healthify.nz/search/results#stq=${keyword}&stp=1`)\n }}\n text={item.Description}\n tooltipText={getTooltipText(item)}\n date={item.AccidentDateTime}\n />\n )\n }\n
\n \n \n }\n
\n )\n})\n\nexport default AccidentSection;\n\n","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgArrow = function SvgArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 9.628,\n height: 7.278,\n viewBox: \"0 0 9.628 7.278\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"arrow\",\n transform: \"translate(-256.104 -301.104)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1242\",\n \"data-name\": \"Line 1242\",\n x2: 3.231,\n y2: 4.486,\n transform: \"translate(257.5 302.5)\",\n fill: \"none\",\n stroke: \"#07a3c8\",\n strokeLinecap: \"round\",\n strokeWidth: 2\n }), /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1243\",\n \"data-name\": \"Line 1243\",\n x2: 4.486,\n y2: 3.231,\n transform: \"translate(264.336 302.5) rotate(90)\",\n fill: \"none\",\n stroke: \"#07a3c8\",\n strokeLinecap: \"round\",\n strokeWidth: 2\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow.ab1975de.svg\";\nexport { ForwardRef as ReactComponent };","import { observer } from 'mobx-react-lite';\nimport React, { useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport UIContainer from 'components/UIContainer';\nimport { connect, useDispatch, useSelector } from 'react-redux';\nimport { bindActionCreators } from 'redux';\nimport { actions } from 'components/UIContainer/actions/headerActions';\nimport { LOADING_STATUS, useComponentDidMount } from 'libs/newHttp';\nimport RouteBar from 'components/DesktopComponents/RouteBar';\nimport TabBar from 'components/DesktopComponents/TabBar';\nimport { go } from 'routes';\nimport Section from './components/Section/Section';\nimport { whiteBoxNotificationSettings } from 'components/UIContainer/MobileUI/MainShell/selectors';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport moment from 'moment';\nimport Notifications from 'HealthFeed/HealthFeedDesktop/Notifications/Notifications';\nimport { getFinalStatus } from 'Identity/components/IdentityLabel';\nimport AccidentSection from './components/AccidentSection/AccidentSection';\n\nconst Outer = styled.div`\n width: 100%;\n background-color: #F9F9F9;\n overflow-y: auto;\n align-items: center;\n -ms-overflow-style: none; \n scrollbar-width: none; \n &::-webkit-scrollbar {\n display: none;\n }\n overflow: auto;\n height: 100%;\n`\nconst Container = styled.div`\n padding: 0rem 0rem;\n display: flex;\n flex-wrap: wrap;\n`\nconst Column = styled.div`\n margin: auto;\n margin-top: 0;\n`\n\ninterface IProps {\n setHeader: (item: string) => void;\n feed: any;\n}\n\nconst HealthSummary: React.FC = observer(({setHeader, feed}) => {\n \n const healthStore = useMyHealthStore();\n\n const store = useAccountStore();\n const dispatch = useDispatch();\n const { isOpen, index } = useSelector(whiteBoxNotificationSettings);\n\n const [showNotes, setShowNotes] = useState(false);\n const [showDocuments, setShowDocuments] = useState(false);\n\n useComponentDidMount(() => {\n setHeader(\"PHR\");\n healthStore.getSummary(() => go.login());\n healthStore.getClinicNotes();\n healthStore.getPatientDocuments();\n });\n\n useEffect(() => {\n if (healthStore.clinicNotesTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.clinicalErrorText === null) { setShowNotes(true); }\n if (healthStore.clinicalErrorText !== \"\" && healthStore.clinicalErrorText !== null) {\n setShowNotes(false);\n }\n }\n\n if (healthStore.patientDocumentTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.documentsErrorText === null) { setShowDocuments(true); }\n if (healthStore.documentsErrorText !== \"\" && healthStore.documentsErrorText !== null) {\n setShowDocuments(false);\n }\n }\n }, [healthStore.clinicNotesTabLoadingStatus, healthStore.patientDocumentTabLoadingStatus, healthStore.clinicalErrorText, healthStore.documentsErrorText])\n/*\n useEffect(() => {\n return () => {\n dispatch(\n whiteNotificationActions.setWhiteBoxNotification({ isOpen: false }),\n );\n setHasWhiteBoxOpened(false);\n };\n }, []);\n\n useEffect(() => { \n // TODO: This hasWhiteBoxOpened property is a temporary solution\n // for only showing the whiteBox one time, it should use a value from server instead\n // when that property is ready, remove this hasWhiteBoxOpened and setHasWhiteBoxOpened from the codebase\n console.log(\"isOpen: \" + isOpen);\n console.log(\"index: \" + index);\n if (!hasWhiteBoxOpened && profile.IdentityVerified && profile.PrivacyPolicySetup && profile.MobileVerified && profile.EmailVerified) {\n console.log(\"dispatch\")\n dispatch(\n whiteNotificationActions.setWhiteBoxNotification({\n isOpen: true,\n index: 0,\n }),\n );\n setHasWhiteBoxOpened(true);\n }\n \n }, [\n hasWhiteBoxOpened,\n profile.IdentityVerified,\n dispatch,\n setHasWhiteBoxOpened,\n ]);\n*/\n\n const whenHeight = healthStore.summaryTab.WhenHeight === null ? \" cm\" : \" cm (as of \" + moment(healthStore.summaryTab.WhenHeight).format(\"DD MMM YYYY\") + \")\";\n const whenWeight = healthStore.summaryTab.WhenWeight === null ? \" kgs\" : \" kgs (as of \" + moment(healthStore.summaryTab.WhenWeight).format(\"DD MMM YYYY\") + \")\";\n const whenBP = healthStore.summaryTab.BloodPressure.WhenMeasured === null ? \" mm Hg\" : \" mm Hg (as of \" + moment(healthStore.summaryTab.WhenWeight).format(\"DD MMM YYYY\") + \")\";\n\n const WeightHeight = [\n {\n Name: \"Weight: \" + healthStore.summaryTab.WeightInKg + whenWeight\n }, \n {\n Name: \"Height: \" + healthStore.summaryTab.HeightInCm + whenHeight\n },\n {\n Name: \"BMI: \" + healthStore.summaryTab.BMI + \" kg/m2\" \n },\n {\n Name: \"Last BP \" + healthStore.summaryTab.BloodPressure.Systolic + \" / \" + healthStore.summaryTab.BloodPressure.Diastolic + whenBP\n } \n ];\n\n return(\n \n \n go.PHRSummary()}\n />\n \n {getFinalStatus(store) !== 1 && !store.profile.PrivacyPolicySetup &&\n {}} hide={() => {}} />\n }\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n )\n})\n\nconst mapStateToProps = (state: any) => ({\n feed: state.feedReducer.feed,\n})\n \nconst mapDispatchToProps = (dispatch: any) => ({\n setHeader: bindActionCreators(actions.setSideHeaderItem, dispatch),\n})\n\nexport default connect(mapStateToProps, mapDispatchToProps)(HealthSummary);","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgArrow = function SvgArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 9.628,\n height: 7.278,\n viewBox: \"0 0 9.628 7.278\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"arrow\",\n transform: \"translate(1.396 1.396)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1242\",\n \"data-name\": \"Line 1242\",\n y1: 4.486,\n x2: 3.231,\n transform: \"translate(0 0)\",\n fill: \"none\",\n stroke: \"#07a3c8\",\n strokeLinecap: \"round\",\n strokeWidth: 2\n }), /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1243\",\n \"data-name\": \"Line 1243\",\n y1: 3.231,\n x2: 4.486,\n transform: \"translate(3.605 4.486) rotate(-90)\",\n fill: \"none\",\n stroke: \"#07a3c8\",\n strokeLinecap: \"round\",\n strokeWidth: 2\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow.d6a21b1d.svg\";\nexport { ForwardRef as ReactComponent };","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgImms = function SvgImms(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 49,\n height: 49,\n viewBox: \"0 0 49 49\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_18505\",\n \"data-name\": \"Group 18505\",\n transform: \"translate(21143 -6670)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_18490\",\n \"data-name\": \"Group 18490\",\n transform: \"translate(-21143 6670)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_11894\",\n \"data-name\": \"Group 11894\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_11893\",\n \"data-name\": \"Group 11893\",\n transform: \"translate(0 0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_7885\",\n \"data-name\": \"Path 7885\",\n d: \"M24.5,0A24.5,24.5,0,1,1,0,24.5,24.5,24.5,0,0,1,24.5,0Z\",\n fill: \"#f9f9f9\"\n })))), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10873\",\n \"data-name\": \"Path 10873\",\n d: \"M34.238,10.009l.707-.707L28.7,3.056l-.707.707,2.77,2.77-4.155,4.154-4.33-4.33-.707.706,1.207,1.206L9.861,21.187a.5.5,0,0,0-.108.162h0l-2.38,5.787a.5.5,0,0,0,.109.543l1.066,1.066L3.056,34.237l.707.707,5.492-5.492,1.066,1.066a.5.5,0,0,0,.354.146.507.507,0,0,0,.19-.038l5.784-2.378h0l0,0a.488.488,0,0,0,.16-.1L29.73,15.223l1.207,1.207.707-.707-4.331-4.33,4.155-4.154ZM10.792,29.575,8.424,27.208l1.968-4.784,2.593,2.593,2.592,2.592Zm5.669-2.5-2.77-2.77-2.77-2.77L13.058,19.4l1.988,1.988.707-.707-1.988-1.988,1.82-1.821,1.988,1.989.707-.707-1.988-1.989,1.819-1.819,1.99,1.988.707-.708-1.99-1.987,1.82-1.82,1.988,1.99.707-.707-1.988-1.99,2.137-2.137,5.54,5.539Z\",\n transform: \"translate(-21137 6673.944)\",\n fill: \"#6c6c6c\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgImms, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/imms.9ca192ff.svg\";\nexport { ForwardRef as ReactComponent };","import { getShort } from 'libs/misc';\nimport React from 'react';\nimport { ILabResult } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nconst Container = styled.div`\n display: flex;\n width: 100%;\n color: #6C6C6C;\n font-size: 13px;\n flex-direction: row;\n align-items: center;\n`\nconst Comment = styled.div`\n width: 100%;\n`\nconst Subject = styled.div`\n font-weight: bold;\n width: 100%;\n`\ninterface IProps {\n item: any\n}\nconst LabResult: React.FC = ({ item }) => {\n return (\n \n {getShort(item.NameOfTest ?? '', 21)} \n {item.DoctorNotes !== null ? getShort(item.DoctorNotes ?? '', 20) : getShort(item.InternalComment ?? '', 20)} \n \n )\n}\n\nexport default LabResult","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgClinicalNote = function SvgClinicalNote(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 49,\n height: 49,\n viewBox: \"0 0 49 49\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_18506\",\n \"data-name\": \"Group 18506\",\n transform: \"translate(-14477 -817)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_11897\",\n \"data-name\": \"Group 11897\",\n transform: \"translate(14484 497)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_11894\",\n \"data-name\": \"Group 11894\",\n transform: \"translate(-7 320)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_11893\",\n \"data-name\": \"Group 11893\",\n transform: \"translate(0 0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_7885\",\n \"data-name\": \"Path 7885\",\n d: \"M24.5,0A24.5,24.5,0,1,1,0,24.5,24.5,24.5,0,0,1,24.5,0Z\",\n fill: \"#f9f9f9\"\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_medical_chart_553563\",\n \"data-name\": \"noun_medical chart_553563\",\n transform: \"translate(14457 789.318)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10867\",\n \"data-name\": \"Path 10867\",\n d: \"M45.526,6.673H37.155A4.486,4.486,0,0,0,32.531,3a4.52,4.52,0,0,0-4.625,3.673H19.535a1.944,1.944,0,0,0-2.035,1.8V38.747a1.944,1.944,0,0,0,2.035,1.8H45.526a1.944,1.944,0,0,0,2.035-1.8V8.468A1.944,1.944,0,0,0,45.526,6.673ZM43.4,11.161V9.325h1.156V37.89H20.506V9.325h1.156v1.836ZM28.831,7.489V7.081a1.232,1.232,0,0,1,.046-.408,3.765,3.765,0,0,1,7.307,0c0,.122.046.286.046.408v.408h4.625a1.577,1.577,0,0,1,1.526,1.02,1.3,1.3,0,0,1,.092.408v1.428H22.587V8.917a1.3,1.3,0,0,1,.092-.408,1.622,1.622,0,0,1,1.526-1.02ZM46.636,38.747a1.066,1.066,0,0,1-1.11.979H19.535a1.066,1.066,0,0,1-1.11-.979V8.468a1.066,1.066,0,0,1,1.11-.979h2.729a2.269,2.269,0,0,0-.555,1.02H20.09a.486.486,0,0,0-.509.449V38.217a.486.486,0,0,0,.509.449H44.925a.486.486,0,0,0,.509-.449V8.958a.486.486,0,0,0-.509-.449H43.306a2.269,2.269,0,0,0-.555-1.02H45.48a1.066,1.066,0,0,1,1.11.979V38.747Z\",\n transform: \"translate(12.281 28.315)\",\n fill: \"#6c6c6c\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10868\",\n \"data-name\": \"Path 10868\",\n d: \"M49.136,14.112A2.519,2.519,0,0,1,46.5,11.806a2.66,2.66,0,0,1,5.273,0A2.519,2.519,0,0,1,49.136,14.112Zm0-3.294a1.093,1.093,0,0,0-1.13.988,1.14,1.14,0,0,0,2.26,0A1.093,1.093,0,0,0,49.136,10.818Z\",\n transform: \"translate(-4.544 24)\",\n fill: \"#6c6c6c\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10869\",\n \"data-name\": \"Path 10869\",\n d: \"M44.085,49.556H40.019c-.271,0-.452-.146-.452-.364V46.28H35.952c-.271,0-.452-.146-.452-.364V42.64c0-.218.181-.364.452-.364h3.615V39.364c0-.218.181-.364.452-.364h4.067c.271,0,.452.146.452.364v2.912h3.615c.271,0,.452.146.452.364v3.276c0,.218-.181.364-.452.364H44.537v2.912C44.537,49.411,44.357,49.556,44.085,49.556Zm-3.615-.728h3.163V45.916c0-.218.181-.364.452-.364H47.7V43H44.085c-.271,0-.452-.146-.452-.364V39.728H40.471V42.64c0,.218-.181.364-.452.364H36.4v2.548h3.615c.271,0,.452.146.452.364Z\",\n transform: \"translate(3.211 9.231)\",\n fill: \"#6c6c6c\"\n })))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgClinicalNote, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/clinicalNote.8d585e58.svg\";\nexport { ForwardRef as ReactComponent };","var _path;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgSpeechBubble = function SvgSpeechBubble(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 18.765,\n height: 16.373,\n viewBox: \"0 0 18.765 16.373\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n id: \"Union_471\",\n \"data-name\": \"Union 471\",\n d: \"M-3878.559,15962.927a.446.446,0,0,1-.281-.421v-5.164a.444.444,0,0,1,.469-.469.444.444,0,0,1,.469.469v4.038l4.363-4.362a.424.424,0,0,1,.328-.145h2.348a4.469,4.469,0,0,0,3.285-1.358,4.65,4.65,0,0,0,1.358-3.333,4.705,4.705,0,0,0-4.691-4.691h-7.459a4.63,4.63,0,0,0-3.329,1.362,4.8,4.8,0,0,0-1.362,3.329,4.64,4.64,0,0,0,2.58,4.179.422.422,0,0,1,.188.609.424.424,0,0,1-.609.188,5.4,5.4,0,0,1-3.1-4.976,5.558,5.558,0,0,1,1.643-3.986,5.709,5.709,0,0,1,3.986-1.594h7.508a5.643,5.643,0,0,1,5.629,5.629,5.549,5.549,0,0,1-1.642,3.985,5.549,5.549,0,0,1-3.986,1.643h-2.2l-4.976,4.976a.5.5,0,0,1-.329.141A.279.279,0,0,1-3878.559,15962.927Zm8.024-9.491a.443.443,0,0,1-.469-.469.442.442,0,0,1,.469-.469h1.126a.442.442,0,0,1,.469.469.471.471,0,0,1-.469.469Zm-4.691,0a.443.443,0,0,1-.469-.469.442.442,0,0,1,.469-.469h1.122a.443.443,0,0,1,.473.469.472.472,0,0,1-.473.469Zm-4.691,0a.443.443,0,0,1-.469-.469.442.442,0,0,1,.469-.469h1.122a.44.44,0,0,1,.469.469.469.469,0,0,1-.469.469Z\",\n transform: \"translate(3883.999 -15946.602)\",\n fill: \"#07a3c8\"\n })));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSpeechBubble, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/speechBubble.6f94110c.svg\";\nexport { ForwardRef as ReactComponent };","import moment from 'moment';\nimport React from 'react';\nimport { CommentType, ILabResult } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { useState, useEffect } from 'react';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\nconst Container = styled.div`\n height: 100%;\n padding: 0rem 2rem;\n padding-top: 1.5rem;\n width: 100%;\n`\nconst Header = styled.div`\n display: flex;\n flex-direction: column;\n margin-bottom: 1rem;\n`\nconst Title = styled.div`\n font-size: 15px;\n font-weight: bold;\n padding-bottom: 0;\n text-decoration: underline;\n text-decoration-color: #DADADA;\n`\nconst Result = styled.div`\n font-weight: 300;\n margin-bottom: 1rem;\n`\nconst AddCommentContainer = styled.div`\n color: #07A3C8;\n font-size: 14px;\n cursor: pointer;\n padding: 1rem 0rem;\n width: 100%;\n margin: auto;\n`\nconst Line = styled.div`\n width: 100%;\n border-bottom: 1px solid #F0F0F0;\n margin: 1rem 0;\n margin-top: 0.5rem;\n`\ninterface IProps {\n item: ILabResult\n}\nconst LabResultOpen: React.FC = ({item}) => {\n const [val, setVal] = useState(\"\");\n const rtf = item.Results.startsWith(\"{\");\n const phrStore = useMyHealthStore();\n \n // Check if RTF format then convert to html, otherwise use the string given\n useEffect(()=>{\n\t\tif (rtf) rtfToHtml.fromString(item.Results, (err: any, html: any) => { setVal(html) })\n else if (item.Results !== val) setVal(item.Results);\n\t});\n\n return (\n \n \n {item.NameOfTest} (Arrived on {moment(item.DateTime).format(\"DD/MM/YY\")}) \n \n Results:\n \n {rtf &&
}\n {!rtf && item.Results.split('\\t').map(str => {str}
)}\n \n {item.InternalComment && \"Internal Comment:\"}\n {item.InternalComment && item.InternalComment} \n \n \n \n \n \n )\n}\n\nexport default LabResultOpen;","import { formatName, getShort } from 'libs/misc';\nimport React from 'react';\nimport { IImmunisation } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nconst Container = styled.div`\n display: flex;\n width: 100%;\n color: #6C6C6C;\n flex-direction: row;\n align-items: center;\n`\nconst Name = styled.div`\n font-size: 15px;\n`\nconst Practice = styled.div`\n font-size: 13px;\n`\nconst FlexV = styled.div`\n display: flex;\n flex-direction: column;\n width: 100%;\n`\nconst Subject = styled.div`\n font-weight: bold;\n font-size: 13px;\n width: 100%;\n`\ninterface IProps {\n item: IImmunisation\n}\nconst Immunisation: React.FC = ({ item }) => {\n return (\n \n \n {getShort(formatName(item.GivenName ?? '') + ' ' + formatName(item.FamilyName ?? ''), 18)} \n {getShort(item.OrganisationName ?? '', 21)} \n \n {getShort(item.NameOfImmunisation ?? item.DoctorNotes ?? '', 20)} \n \n )\n}\n\nexport default Immunisation","import { formatName } from 'libs/misc';\nimport React from 'react';\nimport { IClinicNote, IImmunisation, ILabResult } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nconst Container = styled.div`\n display: flex;\n width: 100%;\n color: #6C6C6C;\n flex-direction: row;\n align-items: center;\n`\nconst Name = styled.div`\n font-size: 15px;\n`\nconst Practice = styled.div`\n font-size: 13px;\n`\nconst FlexV = styled.div`\n display: flex;\n flex-direction: column;\n width: 100%;\n`\nconst Subject = styled.div`\n font-weight: bold;\n font-size: 13px;\n width: 100%;\n`\ninterface IProps {\n item: IClinicNote\n firstName: string,\n lastName: string,\n}\nconst ClinicalNote: React.FC = ({ item, firstName, lastName }) => {\n return (\n \n \n {formatName(firstName) + ' ' + formatName(lastName)} \n {item.OrganisationName} \n {item.ProviderName} \n \n \n ) \n}\n\nexport default ClinicalNote","import moment from 'moment';\nimport React from 'react';\nimport { CommentType, IImmunisation, ILabResult } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { useState } from 'react';\nimport { ReactComponent as Empty } from 'svgs/patientSilhouette.svg';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\nconst Container = styled.div`\n height: 100%;\n padding: 0rem 2rem;\n padding-top: 1.5rem;\n width: 100%;\n`\nconst Header = styled.div`\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n`\nconst Title = styled.div`\n font-size: 15px;\n font-weight: bold;\n padding-bottom: 0;\n text-decoration-color: #DADADA;\n margin-bottom: 0.3rem;\n`\nconst Line = styled.div`\n width: 100%;\n border-bottom: 1px solid #F0F0F0;\n margin: 1rem 0;\n margin-top: 0.5rem;\n`\nconst Result = styled.div`\n font-weight: 300;\n`\nconst Subheading = styled.div`\n font-style: italic;\n font-size: 11px;\n margin: 2px 0;\n`\nconst Pic = styled.img`\n position: absolute;\n left: 0; \n right: 0;\n top: 0;\n bottom: 0; \n margin: auto;\n border-radius: 50%; \n width: 30px; \n`\nconst NameOfImm = styled.div`\n font-size: 19px;\n font-weight: bold;\n text-align: center;\n width: 100%;\n margin: 0.5rem;\n`\nconst AddCommentContainer = styled.div`\n color: #07A3C8;\n font-size: 14px;\n cursor: pointer;\n padding: 1rem 0rem;\n width: 100%;\n margin: auto;\n`\n\ninterface IProps {\n item: IImmunisation\n}\nconst ImmunisationOpen: React.FC = ({item}) => {\n const immunText = \n `Batch Number: ${item.BatchNumber}\\t` + `Expiry: ${moment(item.Expiry).format(\"DD/MM/YYYY\")}\\t` + `Route: ${item.Route}\\t` + `Site: ${item.Site}` \n const myHealthStore = useMyHealthStore();\n return (\n \n \n Vaccination details \n Recorded by {item.OrganisationName} \n {moment(item.DateTime).format(\"DD/MM/YYYY\")} - {moment(item.DateTime).format(\"h:mm a\")} \n {item.ProfilePictureURL ?\n \n :\n \n }\n \n \n {item.NameOfImmunisation} \n Summary:\n \n {immunText.split('\\t').map(str => {str}
)}\n \n \n \n \n \n \n )\n}\n\nexport default ImmunisationOpen;","import moment from 'moment';\nimport React from 'react';\nimport styled from 'styled-components';\n\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { useState } from 'react';\nimport { ReactComponent as Empty } from 'svgs/patientSilhouette.svg';\nimport { CommentType, IClinicNote, ISummaryItem } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport { observer } from 'mobx-react-lite';\nimport { BaseDetailSectionBottom } from 'MyHealthPage/components/BaseDetailSection';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\n\nconst Container = styled.div`\n height: 100%;\n padding: 0rem 2rem;\n padding-top: 1.5rem;\n width: 100%;\n`\nconst Header = styled.div`\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n`\nconst Title = styled.div`\n font-size: 15px;\n font-weight: bold;\n padding-bottom: 0;\n text-decoration-color: #DADADA;\n margin-bottom: 0.3rem;\n`\nconst Line = styled.div`\n width: 100%;\n border-bottom: 1px solid #F0F0F0;\n margin: 1rem 0;\n margin-top: 0.5rem;\n`\nconst Result = styled.div`\n font-weight: 300;\n`\nconst Subheading = styled.div`\n font-style: italic;\n font-size: 13px;\n margin: 2px 0;\n color: #939393;\n`\nconst Pic = styled.img`\n position: absolute;\n left: 0; \n right: 0;\n top: 0;\n bottom: 0; \n margin: auto; \n width: 30px; \n`\nconst NameOfPatient = styled.div`\n font-size: 14px;\n color: #6C6C6C;\n width: 100%;\n text-align: center;\n`\ninterface IProps {\n item: IClinicNote\n}\n\nconst AddCommentContainer = styled.div`\n color: #07A3C8;\n font-size: 14px;\n cursor: pointer;\n padding: 1rem 0rem;\n width: 100%;\n margin: auto;\n`\n\nconst SummarySection: React.FC = observer(\n ({ ClinicalFinding, Notes }) => {\n if (!ClinicalFinding || !Notes) return null;\n return ;\n },\n );\nconst ClinicalNoteOpen: React.FC = ({item}) => {\n const [subjective, setSubjective] = useState(\"\");\n const [objective, setObjective] = useState(\"\");\n const { FirstName, LastName } = useAccountStore().profile;\n const myHealthStore = useMyHealthStore();\n \n // Check if RTF format then convert to html, otherwise use the string given\n if (item.SubjectiveNotes.startsWith(\"{\")) rtfToHtml.fromString(item.SubjectiveNotes, (err: any, html: any) => { setSubjective(html) })\n else if (subjective !== item.SubjectiveNotes) setSubjective(item.SubjectiveNotes);\n \n if (item.ObjectiveNotes.startsWith(\"{\")) rtfToHtml.fromString(item.ObjectiveNotes, (err: any, html: any) => { setObjective(html) })\n else if (objective !== item.ObjectiveNotes) setObjective(item.ObjectiveNotes);\n\n return (\n \n \n Clinical Notes \n Recorded {item.ProviderName ? \"by \" + item.ProviderName : \"\"} on {moment(item.DateTime).format(\"DD/MM/YYYY\")} \n \n \n {FirstName} {LastName} \n {item.ProviderName} \n {item.OrganisationName} \n\n {(subjective !== \"\" || objective !== \"\" || item.ClinicalNotesSummaries.length > 0) &&\n \"Clinical Notes Summary:\"\n }\n \n\n
\n
\n {item.ClinicalNotesSummaries.map(item => \n \n )}\n \n \n \n \n \n \n )\n}\n\nexport default ClinicalNoteOpen;","import moment from 'moment';\nimport React from 'react';\nimport { IPatientDocument } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nimport rtfToHtml from '@iarna/rtf-to-html';\nimport { useState, useEffect } from 'react';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\nconst Container = styled.div`\n height: 100%;\n padding: 0rem 2rem;\n padding-top: 1.5rem;\n width: 100%;\n`\nconst Header = styled.div`\n display: flex;\n flex-direction: column;\n margin-bottom: 1rem;\n`\nconst Title = styled.div`\n font-size: 15px;\n font-weight: bold;\n padding-bottom: 0;\n text-decoration: underline;\n text-decoration-color: #DADADA;\n`\nconst Result = styled.div`\n font-weight: 300;\n margin-bottom: 1rem;\n`\nconst Line = styled.div`\n width: 100%;\n border-bottom: 1px solid #F0F0F0;\n margin: 1rem 0;\n margin-top: 0.5rem;\n`\nconst DownloadLink = styled.a`\n font-size: var(--font-20);\n color: var(--color-pelorous);\n cursor: pointer;\n`\n\ninterface IProps {\n item: IPatientDocument\n}\nconst PatientDocumentsOpen: React.FC = ({item}) => {\n const [val, setVal] = useState(\"\");\n const isRTF = item.Content?.find(d => d.ContentType === \"application/rtf\" && d.Data.startsWith(\"{\")) !== undefined;\n const rtfData = item.Content?.find(d => d.ContentType === \"application/rtf\")?.Data ?? \"\";\n const isPDF = item.Content?.find(d => d.ContentType === \"application/pdf\") !== undefined;\n \n const phrStore = useMyHealthStore();\n \n // Check if RTF format then convert to html, otherwise use the string given\n useEffect(()=>{\n\t\tif (isRTF) rtfToHtml.fromString(rtfData, (err: any, html: any) => { setVal(html) })\n\t});\n\n return (\n \n \n {item.Description} (Arrived on {moment(item.DateTime).format(\"DD/MM/YY\")}) \n \n \n {isRTF &&
}\n {isPDF && ( phrStore.downloadDocument(item.PatientId, item.Id)}>Click here to download document
)}\n \n \n \n )\n}\n\nexport default PatientDocumentsOpen;","import { getShort } from 'libs/misc';\nimport React from 'react';\nimport { IPatientDocument } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport styled from 'styled-components';\n\nconst Container = styled.div`\n display: flex;\n width: 100%;\n color: #6C6C6C;\n font-size: 13px;\n flex-direction: row;\n align-items: center;\n`\nconst Subject = styled.div`\n font-weight: bold;\n width: 100%;\n`\ninterface IProps {\n item: IPatientDocument\n}\nconst PatientDocument: React.FC = ({ item }) => {\n return (\n \n {getShort(item.Description ?? '', 40)} \n \n )\n}\n\nexport default PatientDocument","import React, { useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport styled from 'styled-components';\n\nimport document from 'images/document.png';\nimport { ReactComponent as Arrow } from 'svgs/arrow.svg';\nimport { ReactComponent as CloseArrow } from 'images/arrow.svg';\nimport { ReactComponent as Tick } from 'svgs/approveTick.svg';\nimport { CommentType, IClinicNote, IImmunisation, ILabResult } from 'store/mobx/myHealthStore/myHealthStore.type';\nimport LabResult from './Content/LabResult';\nimport { ReactComponent as Labs } from 'svgs/labs.svg';\nimport { ReactComponent as Imms } from 'svgs/imms.svg';\nimport { ReactComponent as PatientDocs } from 'svgs/scripts.svg';\nimport { ReactComponent as Clinical } from 'svgs/clinicalNote.svg';\nimport moment from 'moment';\nimport LabResultOpen from './Content/LabResultOpen';\nimport Immunisation from './Content/Immunisation';\nimport ClinicalNote from './Content/ClinicalNote';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport ImmunisationOpen from './Content/ImmunisationOpen';\nimport ClinicalNoteOpen from './Content/ClinicalNoteOpen';\nimport { AddComment } from 'MyHealthPage/components/AddComment';\nimport PatientDocumentsOpen from './Content/PatientDocumentsOpen';\nimport PatientDocument from './Content/PatientDocument';\nimport classnames from 'classnames';\nimport styles from './ExpandableCard.module.css';\n\nconst Container = styled.div`\n width: 700px;\n height: 92.48px;\n flex-direction: row;\n box-shadow: 1px 1px 3px lightgray;\n margin-right: auto;\n background-color: white;\n margin-left: auto;\n display: ${(props: ContainerProps) => props.animate ? \"none\" : \"flex\"};\n transition: all 0.5s ease-in-out;\n padding-right: 1rem;\n cursor: pointer;\n`\nconst OpenContainer = styled.div`\n width: 700px;\n height: auto;\n opacity: ${(props: ContainerProps) => props.animate ? \"1\" : \"0\"};\n visibility: ${(props: ContainerProps) => props.animate ? \"visible\" : \"hidden\"};\n transition: all 0.5s ease-in-out;\n display: flex;\n flex-direction: column;\n box-shadow: 1px 1px 3px lightgray;\n background-color: white;\n margin-top: 0.5rem;\n margin-right: auto;\n margin-left: auto;\n position: relative;\n`\nconst Border = styled.div`\n position: absolute;\n border-left: 3px solid #44D375;\n top: 0;\n left 0;\n height: 232px;\n`\nconst ClosedContainer = styled.div`\n display: flex;\n flex-direction: column;\n align-items: center;\n text-align: left;\n margin-top: auto;\n margin-bottom: auto;\n width: 350px;\n`\nconst Banner = styled.div`\n background-color: #44D375;\n border-radius: 25px;\n font-size: 11px;\n color: white;\n margin-bottom: 0.3rem;\n padding: 5px 10px;\n`\nconst Script = styled.img`\n width: 49px;\n height: 49px;\n margin: 5px;\n`\nconst Date = styled.div`\n font-size: 13px;\n color: #585858;\n width: 100%;\n`\nconst Name = styled.div`\n font-size: 15px;\n width: 100%;\n color: #6C6C6C;\n margin: 3px 0px;\n`\nconst Practice = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n font-weight: 300;\n width: 100%;\n`\nconst Expand = styled.div`\n color: #07A3C8;\n font-size: 13px;\n text-align: center;\n display: flex;\n flex-direction: row;\n align-items: center;\n cursor: pointer;\n z-index: 10;\n width: 100%;\n`\nconst Line = styled.div`\n border-bottom: 1px solid #F0F0F0;\n width: 92%;\n margin: auto;\n`\nconst AddCommentContainer = styled.div`\n color: #07A3C8;\n font-size: 14px;\n cursor: pointer;\n padding: 1rem 0rem;\n width: 92%;\n margin: auto;\n`\ninterface ContainerProps {\n animate: boolean;\n}\ninterface Props {\n type: string;\n item: any;\n}\n\nconst ExpandableCard: React.FC = observer(({type, item}) => {\n const [state, setState] = useState(false);\n const [animationState, setAnimationState] = useState(false);\n\n const { FirstName, LastName } = useAccountStore().profile;\n const date = moment(item.DateTime).format(\"DD/MM/YYYY\");\n const commentType = type === \"labs\" ? CommentType.LabResult : type === \"imms\" ? CommentType.Immunisation : CommentType.DoctorNotes;\n\n const setStatesTrue = () => {\n setState(true);\n setAnimationState(true); \n }\n const setStatesFalse = () => {\n setState(false);\n setTimeout(() => setAnimationState(false), 500); \n }\n return (\n \n
\n \n Close Details\n \n \n \n {type === \"labs\" && animationState &&\n \n }\n {type === \"imms\" && animationState &&\n \n }\n {type === \"documents\" && animationState &&\n \n }\n {type === \"clinical\" && animationState &&\n \n }\n \n \n
\n \n {item.IsNewInPastMonth && New in last month }\n {type === \"imms\" && item.givenWithLast3Months !== undefined && New in last 3 months }\n {type === \"labs\" && }\n {type === \"imms\" && }\n {type === \"documents\" && }\n {type === \"clinical\" && }\n \n\n {type === \"labs\" && }\n {type === \"imms\" && }\n {type === \"documents\" && }\n {type === \"clinical\" && }\n\n \n {date} \n \n View Details
\n \n \n \n \n
\n );\n});\n\nexport default ExpandableCard;","import { observer } from 'mobx-react-lite';\nimport React, { useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport UIContainer from 'components/UIContainer';\nimport { connect } from 'react-redux';\nimport { bindActionCreators } from 'redux';\nimport { actions as actions } from 'components/UIContainer/actions/headerActions';\nimport { LOADING_STATUS, useComponentDidMount } from 'libs/newHttp';\nimport RouteBar from 'components/DesktopComponents/RouteBar';\nimport TabBar from 'components/DesktopComponents/TabBar';\nimport { go } from 'routes';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport ExpandableCard from './components/ExpandableCard/ExpandableCard';\nimport Notifications from 'HealthFeed/HealthFeedDesktop/Notifications/Notifications';\nimport { getFinalStatus } from 'Identity/components/IdentityLabel';\n\nconst Outer = styled.div`\n width: 100%;\n background-color: #F9F9F9;\n height: 100%;\n overflow-y: auto;\n align-items: center;\n -ms-overflow-style: none; \n scrollbar-width: none; \n &::-webkit-scrollbar {\n display: none;\n }\n overflow: auto;\n`\nconst Container = styled.div`\n padding: 0rem 0rem;\n display: flex;\n flex-wrap: wrap;\n margin: auto;\n width: 700px;\n padding-top: 2rem;\n`\nconst Column = styled.div`\n margin: auto;\n margin-top: 0;\n`\nconst Title = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n margin: 1rem 0;\n`\ninterface IProps {\n setHeader: (item: string) => void;\n feed: any;\n}\n\nconst LabsPage: React.FC = observer(({setHeader, feed}) => {\n // const { getLabResults, labResultsTab: { newInLastMonth, past }, loading, getClinicNotes, clinicalErrorText } = useMyHealthStore();\n const healthStore = useMyHealthStore();\n const store = useAccountStore();\n const [showNotes, setShowNotes] = useState(false);\n const [showDocuments, setShowDocuments] = useState(false);\n\n useComponentDidMount(() => {\n setHeader(\"PHR\")\n healthStore.getLabResults();\n healthStore.getClinicNotes();\n healthStore.getPatientDocuments();\n })\n\n useEffect(() => {\n if (healthStore.clinicNotesTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.clinicalErrorText === null) { setShowNotes(true); }\n if (healthStore.clinicalErrorText !== \"\" && healthStore.clinicalErrorText !== null) {\n setShowNotes(false);\n }\n }\n\n if (healthStore.patientDocumentTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.documentsErrorText === null) { setShowDocuments(true); console.log('labs'); return; }\n if (healthStore.documentsErrorText !== \"\" && healthStore.documentsErrorText !== null) {\n setShowDocuments(false);\n }\n }\n }, [healthStore.clinicNotesTabLoadingStatus, healthStore.patientDocumentTabLoadingStatus, healthStore.clinicalErrorText, healthStore.documentsErrorText])\n \n return(\n \n \n go.LabsPage()}\n />\n \n {getFinalStatus(store) !== 1 && !store.profile.PrivacyPolicySetup &&\n {}} hide={() => {}} />\n }\n \n {healthStore.labResultsTab.newInLastMonth.map(item => \n \n )}\n {healthStore.labResultsTab.past.length > 0 || healthStore.labResultsTab.newInLastMonth.length > 0 ?\n PREVIOUS LAB RESULTS \n :\n NO LAB RESULTS FOUND \n }\n {healthStore.labResultsTab.past.map(item => \n \n )}\n \n \n \n )\n})\n\nconst mapStateToProps = (state: any) => ({\n feed: state.feedReducer.feed,\n})\n \nconst mapDispatchToProps = (dispatch: any) => ({\n setHeader: bindActionCreators(actions.setSideHeaderItem, dispatch),\n})\n\nexport default connect(mapStateToProps, mapDispatchToProps)(LabsPage);\n","import { observer } from 'mobx-react-lite';\nimport React, { useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport UIContainer from 'components/UIContainer';\nimport { connect } from 'react-redux';\nimport { bindActionCreators } from 'redux';\nimport { actions as actions } from 'components/UIContainer/actions/headerActions';\nimport { LOADING_STATUS, useComponentDidMount } from 'libs/newHttp';\nimport RouteBar from 'components/DesktopComponents/RouteBar';\nimport TabBar from 'components/DesktopComponents/TabBar';\nimport { go } from 'routes';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport ExpandableCard from './components/ExpandableCard/ExpandableCard';\nimport { getFinalStatus } from 'Identity/components/IdentityLabel';\nimport Notifications from 'HealthFeed/HealthFeedDesktop/Notifications/Notifications';\n\nconst Outer = styled.div`\n width: 100%;\n height: 100%;\n background-color: #F9F9F9;\n overflow-y: auto;\n align-items: center;\n -ms-overflow-style: none; \n scrollbar-width: none; \n &::-webkit-scrollbar {\n display: none;\n }\n overflow: auto;\n`\nconst Container = styled.div`\n padding: 0rem 0rem;\n display: flex;\n flex-wrap: wrap;\n margin: auto;\n width: 700px;\n padding-top: 2rem;\n`\nconst Column = styled.div`\n margin: auto;\n margin-top: 0;\n`\nconst Title = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n margin: 1rem 0;\n`\ninterface IProps {\n setHeader: (item: string) => void;\n feed: any;\n}\n\nconst ImmunisationsPage: React.FC = observer(({setHeader, feed}) => {\n const healthStore = useMyHealthStore();\n const store = useAccountStore();\n const [showNotes, setShowNotes] = useState(false);\n const [showDocuments, setShowDocuments] = useState(false);\n\n useComponentDidMount(() => {\n setHeader(\"PHR\")\n healthStore.getImmunisations();\n healthStore.getClinicNotes();\n healthStore.getPatientDocuments();\n })\n\n useEffect(() => {\n if (healthStore.clinicNotesTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.clinicalErrorText === null) { setShowNotes(true); }\n if (healthStore.clinicalErrorText !== \"\" && healthStore.clinicalErrorText !== null) {\n setShowNotes(false);\n }\n }\n\n if (healthStore.patientDocumentTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.documentsErrorText === null) { setShowDocuments(true); console.log('imms') }\n if (healthStore.documentsErrorText !== \"\" && healthStore.documentsErrorText !== null) {\n setShowDocuments(false);\n }\n }\n }, [healthStore.clinicNotesTabLoadingStatus, healthStore.patientDocumentTabLoadingStatus, healthStore.clinicalErrorText, healthStore.documentsErrorText])\n \n return(\n \n \n go.PHRSummary()}\n />\n \n {getFinalStatus(store) !== 1 && !store.profile.PrivacyPolicySetup &&\n {}} hide={() => {}} />\n }\n \n {healthStore.immunisationsTab.givenWithLast3Months.map(item => \n \n )}\n {healthStore.immunisationsTab.past.length > 0 || healthStore.immunisationsTab.givenWithLast3Months.length > 0 ?\n PREVIOUS VACCINATIONS \n :\n NO VACCINATIONS FOUND \n }\n {healthStore.immunisationsTab.past.map(item => \n \n )}\n \n \n \n )\n})\n\nconst mapDispatchToProps = (dispatch: any) => ({\n setHeader: bindActionCreators(actions.setSideHeaderItem, dispatch),\n})\n\nconst mapStateToProps = (state: any) => ({\n feed: state.feedReducer.feed,\n})\n \nexport default connect(mapStateToProps, mapDispatchToProps)(ImmunisationsPage);\n","import { observer } from 'mobx-react-lite';\nimport React, { useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport UIContainer from 'components/UIContainer';\nimport { connect } from 'react-redux';\nimport { bindActionCreators } from 'redux';\nimport { actions as actions } from 'components/UIContainer/actions/headerActions';\nimport { LOADING_STATUS, useComponentDidMount } from 'libs/newHttp';\nimport RouteBar from 'components/DesktopComponents/RouteBar';\nimport TabBar from 'components/DesktopComponents/TabBar';\nimport { go } from 'routes';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport ExpandableCard from './components/ExpandableCard/ExpandableCard';\nimport { actions as feedActions } from 'HealthFeed/actions/actions';\nimport { getFinalStatus } from 'Identity/components/IdentityLabel';\nimport Notifications from 'HealthFeed/HealthFeedDesktop/Notifications/Notifications';\nimport HalfBanner from 'components/DesktopComponents/HalfBanner';\n\nconst Outer = styled.div`\n width: 100%;\n background-color: #F9F9F9;\n overflow-y: auto;\n align-items: center;\n -ms-overflow-style: none; \n height: 100%;\n scrollbar-width: none; \n &::-webkit-scrollbar {\n display: none;\n }\n overflow: auto;\n`\nconst Container = styled.div`\n padding: 0rem 0rem;\n display: flex;\n flex-wrap: wrap;\n margin: auto;\n width: 700px;\n padding-top: 2rem;\n`\nconst Column = styled.div`\n margin: auto;\n margin-top: 0;\n`\nconst Title = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n margin: 1rem 0;\n`\ninterface IProps {\n setHeader: (item: string) => void;\n feed: any;\n getFeed: () => void\n}\n\nconst ClinicalNotesPage: React.FC = observer(({setHeader, feed, getFeed}) => {\n const healthStore = useMyHealthStore();\n const store = useAccountStore();\n const [show, setShow] = useState(true)\n const [showDocuments, setShowDocuments] = useState(false);\n\n useComponentDidMount(() => {\n setHeader(\"PHR\")\n healthStore.getClinicNotes();\n healthStore.getPatientDocuments();\n getFeed();\n })\n\n useEffect(() => {\n if (healthStore.patientDocumentTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.documentsErrorText === null) { setShowDocuments(true); }\n if (healthStore.documentsErrorText !== \"\" && healthStore.documentsErrorText !== null) {\n setShowDocuments(false);\n }\n }\n }, [healthStore.patientDocumentTabLoadingStatus, healthStore.documentsErrorText])\n\n return(\n \n \n go.NotesPage()}\n />\n \n {getFinalStatus(store) !== 1 && !store.profile.PrivacyPolicySetup &&\n {}} hide={() => {}} />\n }\n {healthStore.clinicalErrorText !== null && show && getFinalStatus(store) === 1 &&\n go.privacy()}\n buttonText={\"Ok got it\"}\n buttonOnClick={() => {\n setShow(false);\n store.sendAcknowledgement(0, () => {});\n }}\n />\n }\n \n {healthStore.clinicNotesTab.newInLastMonth.map(item => \n \n )}\n {healthStore.clinicNotesTab.past.length > 0 || healthStore.clinicNotesTab.newInLastMonth.length > 0 ?\n PREVIOUS CLINICAL NOTES \n :\n NO CLINICAL NOTES FOUND \n }\n {healthStore.clinicNotesTab.past.map(item => \n \n )}\n \n \n \n )\n})\n\nconst mapDispatchToProps = (dispatch: any) => ({\n setHeader: bindActionCreators(actions.setSideHeaderItem, dispatch),\n getFeed: bindActionCreators(feedActions.getFeed, dispatch),\n})\nconst mapStateToProps = (state: any) => ({\n feed: state.feedReducer.feed,\n})\n\nexport default connect(mapStateToProps, mapDispatchToProps)(ClinicalNotesPage);\n","import { observer } from 'mobx-react-lite';\nimport React, { useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport UIContainer from 'components/UIContainer';\nimport { connect } from 'react-redux';\nimport { bindActionCreators } from 'redux';\nimport { actions as actions } from 'components/UIContainer/actions/headerActions';\nimport { LOADING_STATUS, useComponentDidMount } from 'libs/newHttp';\nimport RouteBar from 'components/DesktopComponents/RouteBar';\nimport TabBar from 'components/DesktopComponents/TabBar';\nimport { go } from 'routes';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport ExpandableCard from './components/ExpandableCard/ExpandableCard';\nimport Notifications from 'HealthFeed/HealthFeedDesktop/Notifications/Notifications';\nimport { getFinalStatus } from 'Identity/components/IdentityLabel';\n\nconst Outer = styled.div`\n width: 100%;\n background-color: #F9F9F9;\n height: 100%;\n overflow-y: auto;\n align-items: center;\n -ms-overflow-style: none; \n scrollbar-width: none; \n &::-webkit-scrollbar {\n display: none;\n }\n overflow: auto;\n`\nconst Container = styled.div`\n padding: 0rem 0rem;\n display: flex;\n flex-wrap: wrap;\n margin: auto;\n width: 700px;\n padding-top: 2rem;\n`\nconst Column = styled.div`\n margin: auto;\n margin-top: 0;\n`\nconst Title = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n margin: 1rem 0;\n`\ninterface IProps {\n setHeader: (item: string) => void;\n feed: any;\n}\n\nconst DocumentsPage: React.FC = observer(({setHeader, feed}) => {\n const healthStore = useMyHealthStore();\n const store = useAccountStore();\n const [showNotes, setShowNotes] = useState(false);\n\n useComponentDidMount(() => {\n setHeader(\"PHR\")\n healthStore.getPatientDocuments();\n })\n\n useEffect(() => {\n if (healthStore.clinicNotesTabLoadingStatus === LOADING_STATUS.LOADED) {\n if (healthStore.clinicalErrorText === null) { setShowNotes(true); }\n if (healthStore.clinicalErrorText !== \"\" && healthStore.clinicalErrorText !== null) {\n setShowNotes(false);\n }\n }\n }, [healthStore.clinicNotesTabLoadingStatus, healthStore.clinicalErrorText])\n \n return(\n \n \n go.DocumentsPage()}\n />\n \n {getFinalStatus(store) !== 1 && !store.profile.PrivacyPolicySetup &&\n {}} hide={() => {}} />\n }\n \n {healthStore.patientDocumentTab.newInLastMonth.map(item => \n \n )}\n {healthStore.patientDocumentTab.past.length > 0 || healthStore.patientDocumentTab.newInLastMonth.length > 0 ?\n PREVIOUS DOCUMENTS \n :\n NO DOCUMENTS FOUND \n }\n {healthStore.patientDocumentTab.past.map(item => \n \n )}\n \n \n \n )\n})\n\nconst mapStateToProps = (state: any) => ({\n feed: state.feedReducer.feed,\n})\n \nconst mapDispatchToProps = (dispatch: any) => ({\n setHeader: bindActionCreators(actions.setSideHeaderItem, dispatch),\n})\n\nexport default connect(mapStateToProps, mapDispatchToProps)(DocumentsPage);","import React from 'react';\nimport { ProtectedRoute, push } from '../utils';\nimport { isDesktop } from '../../config';\nimport HealthSummary from 'PHR/PHRDesktop/HealthSummary';\nimport LabsPage from 'PHR/PHRDesktop/LabsPage';\nimport ImmunisationsPage from 'PHR/PHRDesktop/ImmunisationsPage';\nimport ClinicalNotesPage from 'PHR/PHRDesktop/ClinicalNotesPage';\nimport DocumentsPage from 'PHR/PHRDesktop/DocumentsPage';\n\nconst go = {\n PHRSummary: () => push('/personal-health-record'),\n LabsPage: () => push('/personal-health-record/labs'),\n ImmsPage: () => push('/personal-health-record/immunisations'),\n NotesPage: () => push('/personal-health-record/clinical-notes'),\n DocumentsPage: () => push('/personal-health-record/patient-documents')\n};\n\nconst PHRRoutes = isDesktop() && [\n ,\n ,\n ,\n ,\n \n];\n\nexport default PHRRoutes;\nexport { go };\n","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgWhiteLineLeftArrow = function SvgWhiteLineLeftArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 23.588,\n height: 18.683,\n viewBox: \"0 0 23.588 18.683\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_685132_cc\",\n transform: \"translate(23.588) rotate(90)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_1668\",\n \"data-name\": \"Group 1668\",\n transform: \"translate(0 0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1622\",\n \"data-name\": \"Path 1622\",\n d: \"M8.983,23.459l-8.822-8.3a.533.533,0,0,1-.024-.738.546.546,0,0,1,.738-.024l7.947,7.476V.519a.519.519,0,0,1,1.038,0v21.35l7.947-7.476a.542.542,0,0,1,.738.024.527.527,0,0,1-.024.738L9.7,23.459a.557.557,0,0,1-.714,0Z\",\n fill: \"#fff\"\n })))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgWhiteLineLeftArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/whiteLineLeftArrow.9886b05e.svg\";\nexport { ForwardRef as ReactComponent };","import React, { useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport { observer } from 'mobx-react-lite';\n\nimport UIContainer from 'components/UIContainer';\nimport { useAccountStore } from 'store/mobx/mobx';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport Alert from 'libs/Alert';\nimport logo from 'images/greyLogo.png';\nimport { ReactComponent as SpeechBubble } from 'svgs/speechBubble.svg';\nimport { go } from 'routes';\nimport kiwi from 'images/worriedKiwi.png';\nimport Loading from 'components/loadingSpinner';\n\nconst Container = styled.div`\n display: flex;\n flex-direction: column;\n width: 100%;\n background: linear-gradient(#07A3C8 40%, #F5F5F5 40%) no-repeat;\n padding-bottom: 5rem;\n overflow: scroll;\n position: absolute;\n`\nconst Card = styled.div`\n background-color: white;\n margin: auto 1rem;\n border-radius: 4px;\n padding: 0.5rem;\n box-shadow: 0px 3px 6px darkgray;\n`\nconst Image = styled.div`\n display: block;\n margin: 0rem auto;\n width: 75px;\n height: 75px;\n object-fit: cover;\n background-position: center;\n background-repeat: no-repeat;\n transform: translateY(38%);\n border-radius: 4px;\n box-shadow: 0px 3px 6px darkgray;\n background-color: white;\n background-size: contain;\n`\nconst Title = styled.div`\n font-size: 19px;\n font-weight: 600;\n text-align: center;\n width: 100%;\n color: #404040;\n margin-top: 2.5rem;\n`\nconst Address = styled.div`\n font-weight: 300;\n font-size: 15px;\n width: 100%;\n text-align: center;\n color: #404040;\n padding: 0rem 1rem;\n`\nconst Text = styled.div`\n font-size: 17px;\n color: #6C6C6C;\n text-align: left;\n margin: 1rem 2.5rem;\n`\nconst Line = styled.div`\n border-bottom: 1px solid #F0F0F0;\n margin: 1rem;\n`\nconst TextBig = styled.div`\n font-size: 21px;\n color: #6C6C6C;\n text-align: center;\n margin: 1rem 1rem;\n`\nconst BlueButton = styled.div`\n background-color: #07A3C8;\n color: white;\n border-radius: 4px;\n font-size: 17px;\n padding: 15px 20px;\n width: 150px;\n margin: 1rem auto;\n text-align: center;\n font-weight: 600;\n`\nconst Link = styled.div`\n color: #2FADC8;\n margin: auto;\n font-size: 17px;\n text-align: center;\n`\nconst BottomNote = styled.div`\n font-size: 15px;\n text-align: left;\n margin: 1rem;\n`\nconst Footer = styled.div`\n font-size: 15px;\n text-align: left;\n margin: 1rem;\n font-weight: 300;\n`\nconst WhoIsVensaTitle = styled.div`\n font-size: 15px;\n font-weight: 600;\n text-align: left;\n margin: 1rem;\n color: #07A3C8;\n`\nconst WhoIsVensa = styled.div`\n font-size: 15px;\n color: #707070;\n margin: 0rem 1rem;\n`\nconst Background = styled.div`\n background-color: #F5F5F5;\n position: absolute;\n height: 100%;\n width: 100%;\n transition: all 0.3s linear;\n z-index: 10;\n visibility: visible;\n`\n\nconst SignUpVerification = observer(() => {\n const store = useAccountStore();\n const [noContent, setNoContent] = useState(false);\n const [sent, setSent] = useState(false);\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let t = params.get('token');\n let e = params.get('email')\n\n useEffect(() => {\n if (t && e) {\n if (!sent) {\n store.getSignUpInvitationDetails(t, e, () => setNoContent(true));\n setSent(true);\n }\n } else {\n setNoContent(true);\n //Alert.error(\"Sorry this is an invalid invitation\");\n }\n }, [])\n\n if (noContent) {\n return (\n \n \n \n Sorry this invitation has been accepted or expired \n window.location.href=\"https://login.vensa.com\"}>\n Back to Vensa.com\n \n \n \n )\n } else {\n return ( \n \n \n \n \n \n {store.signUpInvitationDetails.OrganisationName} \n {store.signUpInvitationDetails.Address} \n \n \n {store.signUpInvitationDetails.OrganisationName} have invited you to join the Vensa System.\n \n \n {store.signUpInvitationDetails.NoteForPatient}\n \n \n \n Please confirm that you are \n {store.signUpInvitationDetails.GivenName + \" \" + store.signUpInvitationDetails.FamilyName}
\n to begin registration. Your details will be loaded.\n \n go.signUpFlow(t, e)}>\n I'm {store.signUpInvitationDetails.GivenName}\n \n window.location.href=\"https://login.vensa.com\"}>I'm not {store.signUpInvitationDetails.GivenName}\n \n If this is not you, or you believe you have received this message by mistake,\n please kindly let {store.signUpInvitationDetails.OrganisationName} know. You can\n call them on \n {store.signUpInvitationDetails.OrganisationPhone}\n , or send them an email on {store.signUpInvitationDetails.OrganisationEmail} \n \n \n \n \n Who's Vensa? \n \n Vensa is an IT company that provides a range of digital patient services for medical centres. For more information head over to Vensa.com .\n \n \n )\n }\n})\n\nexport default SignUpVerification","var _defs, _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgDashedLine = function SvgDashedLine(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 540,\n height: 4,\n viewBox: \"0 0 540 4\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip-path\"\n }, /*#__PURE__*/React.createElement(\"rect\", {\n width: 540,\n height: 4,\n fill: \"none\"\n })))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Repeat_Grid_479\",\n \"data-name\": \"Repeat Grid 479\",\n clipPath: \"url(#clip-path)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(-30.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(-10.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-2\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(9.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-3\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(29.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-4\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(49.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-5\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(69.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-6\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(89.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-7\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(109.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-8\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(129.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-9\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(149.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-10\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(169.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-11\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(189.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-12\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(209.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-13\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(229.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-14\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(249.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-15\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(269.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-16\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(289.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-17\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(309.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-18\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(329.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-19\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(349.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-20\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(369.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-21\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(389.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-22\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(409.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-23\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(429.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-24\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(449.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-25\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(469.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-26\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(489.5 -298.5)\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n id: \"Line_1229-27\",\n \"data-name\": \"Line 1229\",\n x2: 11,\n transform: \"translate(30.5 298.5)\",\n fill: \"none\",\n stroke: \"#dadada\",\n strokeWidth: 2\n })))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDashedLine, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/dashedLine.e70ff5d6.svg\";\nexport { ForwardRef as ReactComponent };","import React, { useEffect, useState } from \"react\";\nimport styled from \"styled-components\";\nimport { isDesktop } from 'config';\nimport { ReactComponent as Tick } from 'svgs/whiteTick2.svg';\nimport { ReactComponent as TickDesktop } from 'svgs/tick.svg';\n\nconst Container = styled.div`\n display: flex;\n flex-direction: column;\n font-size: 15px;\n margin 1rem 0rem;\n`\nconst Title = styled.div`\n color: white;\n margin-bottom: 0.5rem;\n`\nconst Item = styled.div`\n display: flex;\n flex-direction: row;\n`\nconst Image = styled.div`\n width: 16px;\n height: 15px;\n margin: 0px 5px;\n`\nconst Text = styled.div`\n width: 100%;\n color: white;\n font-size: 15px;\n`\nconst PasswordPolicy = ({ password }) => {\n const [passMinLength, setPassMinLength] = useState(false);\n const [containsCapital, setContainsCapital] = useState(false);\n const [containsLower, setContainsLower] = useState(false);\n const [symbolOrNum, setSymbolOrNum] = useState(false);\n\n useEffect(() => {\n checkPassword();\n }, [password])\n\n const checkPassword = () => {\n if (password.length === 0) { return }\n setPassMinLength(password.length >= 8);\n setContainsCapital(hasUpperCase(password));\n setContainsLower(hasLowerCase(password));\n setSymbolOrNum(hasSymbolOrNum(password));\n }\n const hasUpperCase = (str) => {\n let result = str\n .split('')\n .map(letter => /[A-Z]/.test(letter))\n .reduce((a, b) => a + b);\n return result > 0;\n }\n const hasLowerCase = (str) => {\n let result = str\n .split('')\n .map(letter => /[a-z]/.test(letter))\n .reduce((a, b) => a + b);\n return result > 0;\n }\n const hasSymbolOrNum = (str) => {\n let result = str\n .split('')\n .map(letter => /[0-9]/.test(letter))\n .reduce((a, b) => a + b);\n let sResult = str\n .split('')\n .map(letter => /[ `!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?~]/.test(letter))\n .reduce((a, b) => a + b);\n return result + sResult > 0;\n }\n const tickStyleDesktop = { width: \"15px\", fill: \"#44D375\" };\n\n return (\n \n The password criteria for your security: \n - \n
\n {passMinLength ? isDesktop() ? : :
}\n \n At least 8 characters long \n \n - \n
\n {containsCapital ? isDesktop() ? : :
}\n \n Contains at least 1 capital letter \n \n - \n
\n {containsLower ? isDesktop() ? : :
}\n \n Contains at least 1 lower case letter \n \n - \n
\n {symbolOrNum ? isDesktop() ? : :
}\n \n Contains a number or special character \n \n \n )\n}\n\nexport default PasswordPolicy;","import React, { useEffect } from 'react';\nimport styled from 'styled-components';\nimport { observer } from 'mobx-react-lite';\n\nimport { ReactComponent as Arrow } from 'svgs/whiteLineLeftArrow.svg';\nimport { useAccountStore } from 'store/mobx/mobx';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport { useState } from 'react';\nimport Cta from 'components/CtaButton';\nimport { goBack } from 'routes/utils';\nimport moment from 'moment';\nimport { isValidDate, toNormalFormat } from 'libs/Dates';\nimport { useRef } from 'react';\nimport { isValidEmail } from 'libs/ValidBasicInfo';\nimport { actions as loginActions } from \"EntryPage/actions/actions\";\nimport { bindActionCreators } from 'redux';\nimport { connect } from 'react-redux';\nimport styles from './sign-up-flow.module.css';\nimport Loading from 'components/loadingSpinner';\nimport bg from 'images/polygons.jpg';\nimport PasswordPolicy from '../DesktopSignUpFlow/components/PasswordPolicy';\nimport { go } from 'routes';\n\nconst Container = styled.div`\n background-image: url(${bg});\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n width: 100%;\n display: flex;\n flex-direction: column;\n height: 100vh;\n padding: 1rem;\n`\nconst Inner = styled.div`\n`\nconst Header = styled.div`\n display: flex;\n flex-direction: row;\n margin-bottom: 1rem;\n`\nconst Title = styled.div`\n color: white;\n font-size: 21px;\n width: 100%;\n text-align: center;\n`\nconst InputText = styled.div`\n color: white;\n font-size: 17px;\n`\nconst Input = styled.input`\n font-size: 21px;\n color: white;\n padding: 1rem 0rem;\n width: 100%;\n outline: none;\n border: none;\n border-bottom: 1px solid rgba(255, 255, 255, .5);\n background-color: transparent;\n &::-webkit-autofill {\n box-shadow: 0px 0px 0px 1000px #FFFFFF inset !important;\n }\n`\nconst ContentContainer = styled.div`\n display: flex;\n flex-direction: column;\n margin: 4rem 0rem;\n padding: 0rem 1rem;\n`\nconst PasswordRestrictions = styled.div`\n font-size: 15px;\n color: #FFFFFF;\n opacity: 0.7;\n margin: 0.5rem 0rem;\n`\nconst PolicyText = styled.div`\n color: white;\n font-style: italic; \n font-size: 17px;\n font-weight: 300;\n width: 100%;\n`\nconst Link = styled.span`\n font-weight: 500;\n text-decoration: underline;\n`\n\nconst getDob = (date: string) => {\n return moment(date, ['YYYY-MM-DD', 'DD-MM-YYYY']).format('YYYY-MM-DD');\n}\n\nconst isButtonActive = (state: number, dobRef: React.RefObject, Email: string, Password: string, PrivacyPolicy: boolean) => {\n if (state === 0) { \n return true \n } else if (state === 1 && isValidDate(dobRef.current!.value)) {\n return true;\n } else if (state === 2 && isValidEmail(Email) && Email !== \"\") {\n return true;\n } else if (state === 3 && isValidPassword(Password) && PrivacyPolicy === true) {\n return true;\n } else return false;\n}\n\nconst isValidPassword = (password: string) => ( \n password.length >= 8 && //is long enough\n /[a-z]/.test(password) && // has lowercase letters\n /[A-Z]/.test(password) && // has uppercase letters\n (/\\d/.test(password) || // has digits\n /[ `!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?~]/.test(password)) // has symbols\n)\n\nconst SignUpFlow: React.FC = observer(({login, success, consumerUrl, expiryTime, email, refreshToken, loading}) => {\n const store = useAccountStore();\n\n const [ActiveButton, setActiveButton] = useState(false);\n const [FirstName, setFirstName] = useState(store.signUpInvitationDetails.GivenName)\n const [LastName, setLastName] = useState(store.signUpInvitationDetails.FamilyName);\n const [PreferredName, setPreferredName] = useState(store.signUpInvitationDetails.PreferredName);\n const [Birthday, setBirthday] = useState(getDob(store.signUpInvitationDetails.DateOfBirth))\n const [Email, setEmail] = useState(store.signUpInvitationEmail ? store.signUpInvitationEmail : \"\");\n const [Password, setPassword] = useState(\"\")\n const [PrivacyPolicy, setPrivacyPolicy] = useState(false);\n const [state, setState] = useState(0);\n\n const dobRef = useRef(null);\n let content;\n\n useEffect(() => {\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let e = params.get('e');\n let t = params.get('t');\n\n if (!store.signUpInvitationSuccess) {\n if (FirstName === \"\") {\n go.signUpInvitation(t, e); \n }\n }\n }, [store.signUpInvitationSuccess])\n\n useEffect(() => {\n setActiveButton(isButtonActive(state, dobRef, Email, Password, PrivacyPolicy));\n if (success) {\n window.open(\n consumerUrl + \"login?token=\" +\n refreshToken + \"&expires=\" + \n expiryTime + \"&email=\" + \n email + \"&firstTime=false\", \n \"_self\"\n );\n } \n })\n\n if (state === 0) {\n content = \n \n goBack()} style={{position: \"absolute\"}} />\n What is your name? \n \n \n Legal First Name \n setFirstName(e.target.value)}\n />\n Legal Surname \n setLastName(e.target.value)}\n />\n Preferred Name (Optional) \n setPreferredName(e.target.value)}\n />\n \n \n } else if (state === 1) {\n content = \n \n setState(0)} style={{position: \"absolute\"}} />\n {FirstName + \" \" + LastName} \n \n \n Please confirm your date of birth \n setBirthday(e.target.value)}\n />\n \n \n } else if (state === 2) {\n content = \n \n setState(1)} style={{position: \"absolute\"}} />\n {FirstName + \" \" + LastName} \n \n \n What's your email? \n setEmail(e.target.value)}\n />\n \n \n } else if (state === 3) {\n content = \n \n setState(2)} style={{position: \"absolute\"}} />\n {FirstName + \" \" + LastName} \n \n \n Create your password \n setPassword(e.target.value)} />\n \n \n \n }\n \n return (\n \n \n {content}\n {state === 3 &&\n \n
{e.preventDefault(); setPrivacyPolicy(!PrivacyPolicy)}}> \n \n \n
\n
\n I have read and agree to the \n window.open(\"https://vensa.com/consumer/terms-and-conditions/3\", \"_blank\")}>\n terms and conditions\n \n & \n window.open(\"https://vensa.com/consumer/privacy-policy/3\", \"_blank\")}>\n privacy policy\n .\n \n
\n }\n \n {\n if (!ActiveButton) { return }\n if (state !== 3) {\n setState(state + 1);\n return;\n } else {\n store.registerWithSignUpToken({\n Token: store.signUpInvitationToken,\n Email: Email,\n GivenName: FirstName,\n FamilyName: LastName,\n PreferredName: PreferredName,\n MobileNumber: \"\",\n DateOfBirth: Birthday,\n Password: Password\n }, () => {\n login(Email, Password);\n })\n }\n }}\n />\n \n \n \n )\n})\n\ninterface LinkDispatchProps {\n login: (Email: string, Password: string) => void;\n success: boolean;\n consumerUrl: string;\n refreshToken: string;\n expiryTime: string;\n email: string;\n loading: boolean;\n}\n\nconst mapStateToProps = (state: any) => ({\n success: state.loginReducer.success,\n consumerUrl: state.loginReducer.consumerUrl,\n refreshToken: state.loginReducer.refreshToken,\n expiryTime: state.loginReducer.expiryTime,\n email: state.loginReducer.email,\n loading: state.loginReducer.isFetching\n})\nconst mapDispatchToProps = (dispatch: any) => ({\n login: bindActionCreators(loginActions.login, dispatch),\n})\n\nexport default connect(mapStateToProps, mapDispatchToProps)(SignUpFlow);","var _path;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgEyeBlue = function SvgEyeBlue(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"noun_878102_cc\",\n width: 18.541,\n height: 10.519,\n viewBox: \"0 0 18.541 10.519\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1257\",\n \"data-name\": \"Path 1257\",\n d: \"M31.07,34a11.149,11.149,0,0,0-9.27,5.26,11.144,11.144,0,0,0,9.27,5.26,11.148,11.148,0,0,0,9.27-5.26A11.142,11.142,0,0,0,31.07,34Zm4.6,5.26a4.6,4.6,0,1,1-4.6-4.6A4.616,4.616,0,0,1,35.673,39.26Zm-13.084,0a11.367,11.367,0,0,1,5.062-3.978,5.218,5.218,0,0,0,0,7.955A11.368,11.368,0,0,1,22.589,39.26Zm11.9,3.978a5.218,5.218,0,0,0,0-7.955,11.581,11.581,0,0,1,5.062,3.978A11.368,11.368,0,0,1,34.489,43.237ZM29.1,39.26a1.972,1.972,0,1,1,1.972,1.972A1.978,1.978,0,0,1,29.1,39.26Z\",\n transform: \"translate(-21.8 -34)\",\n fill: \"#07a3c8\"\n })));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgEyeBlue, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/eyeBlue.06725d8a.svg\";\nexport { ForwardRef as ReactComponent };","import { observer } from 'mobx-react-lite';\nimport React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport bg from 'images/bgImage.png';\nimport icon from 'images/hauora.png'\nimport wave from 'images/wave.png';\nimport { ReactComponent as Line } from 'svgs/dashedLine.svg';\nimport { useAccountStore } from 'store/mobx/mobx';\nimport logo from 'images/greyLogo.png';\nimport logoHeader from 'images/logoName.png';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport Alert from 'libs/Alert';\nimport Loading from 'components/loadingSpinner';\nimport { go } from 'routes';\nimport kiwi from 'images/worriedKiwi.png';\n\nconst Container = styled.div`\n width: 100%;\n height: 100vh;\n background-image: url(${bg});\n background-repeat: no-repeat; \n background-position: top;\n background-size: cover;\n`\nconst CardContainer = styled.div`\n width: 600px;\n height: auto;\n margin: 2rem auto;\n`\nconst HeaderContainer = styled.div`\n width: 100%;\n background-color: #FAFBFF;\n border-bottom: 1px #F0F0F0 solid;\n`\nconst Header = styled.div`\n display: flex;\n flex-direction: row;\n margin: auto;\n align-items: center;\n width: 60%;\n`\nconst FlexV = styled.div`\n display: flex;\n flex-direction: column;\n`\nconst FlexH = styled.div`\n display: flex;\n flex-direction: row;\n`\nconst HeaderTitle = styled.div`\n font-size: 17px;\n font-weight: bold;\n text-align: center;\n width: 100%;\n`\nconst HeaderSubtitle = styled.div`\n font-size: 13px;\n font-weight: light;\n text-align: center;\n width: 100%;\n`\nconst Image = styled.div`\n display: block;\n margin: 0.5rem;\n width: 60px;\n height: 60px;\n object-fit: cover;\n background-position: center;\n background-repeat: no-repeat;\n border-radius: 4px;\n background-size: contain;\n`\nconst Section = styled.div`\n width: 100%;\n background-color: white;\n display: flex;\n flex-direction: column;\n padding: 1rem 2rem;\n border-bottom: 1px #F0F0F0 solid;\n`\nconst Title = styled.div`\n color: #727FA5;\n font-size: 21px;\n margin: 0rem 10px;\n font-weight: bold;\n`\nconst Text = styled.div`\n font-size: 13px;\n width: 100%;\n margin-bottom: 1rem;\n color: #585858;\n`\nconst PatientDetailsLabel = styled.div`\n color: #585858;\n font-weight: bold;\n font-size: 13px; \n`\nconst PatientDetails = styled.div`\n font-size: 13px;\n text-transform: uppercase;\n text-align: left;\n margin-left: auto;\n width: 75%;\n`\nconst ConfirmText = styled.div`\n font-size: 21px;\n color: #6C6C6C;\n display: inline-block;\n width: 100%;\n text-align: center;\n`\nconst ConfirmButton = styled.div`\n color: white;\n background-color: #07A3C8;\n font-size: 17px;\n padding: 1rem 2rem;\n border-radius: 4px;\n cursor: pointer;\n`\nconst Link = styled.div`\n color: #07A3C8;\n font-size: 17px;\n cursor: pointer;\n width: 100%;\n text-align: center;\n margin: 1rem 0rem;\n`\nconst SectionFooter = styled.div`\n width: 100%;\n text-align: center;\n font-size: 13px;\n color: #707070;\n`\nconst Footer = styled.div`\n font-size: 15px;\n text-align: left;\n margin: 1rem;\n`\nconst WhoIsVensaTitle = styled.div`\n font-size: 15px;\n font-weight: 600;\n text-align: left;\n margin: 1rem;\n color: #07A3C8;\n`\nconst WhoIsVensa = styled.div`\n font-size: 15px;\n color: #707070;\n margin: 0rem 1rem;\n`\nconst Background = styled.div`\n background-color: #F5F5F5;\n position: absolute;\n height: 100%;\n width: 100%;\n transition: all 0.3s linear;\n z-index: 10;\n visibility: visible;\n`\n\nconst DesktopSignUpVerification = observer(() => {\n const store = useAccountStore();\n const [noContent, setNoContent] = useState(false);\n const [sent, setSent] = useState(false);\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let t = params.get('token');\n let e = params.get('email')\n \n if (t && e) {\n if (!sent) {\n store.getSignUpInvitationDetails(t, e, () => setNoContent(true));\n setSent(true);\n }\n } else {\n setNoContent(true);\n //Alert.error(\"Sorry this is an invalid invitation\");\n }\n \n if (noContent) {\n return (\n \n \n \n Sorry this invitation has been accepted or expired \n window.location.href=\"https://login.vensa.com\"}>\n Back to Vensa.com\n \n \n \n )\n } else {\n return (\n \n \n \n \n \n \n \n \n \n {store.signUpInvitationDetails.OrganisationName} \n {store.signUpInvitationDetails.Address} \n \n \n \n \n \n \n Hello {store.signUpInvitationDetails.GivenName}! \n \n \n {store.signUpInvitationDetails.OrganisationName} have invited you to join the Vensa System.\n \n \n {store.signUpInvitationDetails.NoteForPatient}\n \n \n \n Patient: \n {store.signUpInvitationDetails.GivenName} {store.signUpInvitationDetails.FamilyName} \n \n \n Mobile: \n {store.signUpInvitationDetails.MobileNumber} \n \n \n \n \n \n Please confirm that you are \n {store.signUpInvitationDetails.GivenName} {store.signUpInvitationDetails.FamilyName} \n to begin registration. Your details will be loaded. \n \n go.signUpFlow(t, e)}>I'm {store.signUpInvitationDetails.GivenName} \n window.location.href=\"https://login.vensa.com\"}>I'm not {store.signUpInvitationDetails.GivenName}\n \n \n If this is not you, or you believe you have received this message by mistake,\n please kindly let {store.signUpInvitationDetails.OrganisationName} know. You can\n call them on \n {store.signUpInvitationDetails.OrganisationPhone}\n , or send them an email on {store.signUpInvitationDetails.OrganisationEmail} \n \n \n \n \n Who's Vensa? \n \n Vensa is an IT company that provides a range of digital patient services for medical centres. For more information head over to Vensa.com .\n \n \n \n \n )\n }\n})\n\nexport default DesktopSignUpVerification;","import styled from 'styled-components';\nimport bg from 'images/bgImage.png';\nimport arrow from \"svgs/dropDownArrowGrey.svg\";\n\n\nexport const Container = styled.div`\n width: 100%;\n height: 100vh;\n background-image: url(${bg});\n background-repeat: no-repeat; \n background-position: top;\n background-size: cover;\n`\nexport const ContentContainer = styled.div`\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n display: flex;\n flex-direction: column;\n`\nexport const Subtitle = styled.div`\n color: #585858;\n font-size: 13px;\n margin: 0.7rem 0rem;\n text-align: center;\n padding: 0rem 2rem;\n`\nexport const Card = styled.div`\n width: 405px;\n display: block;\n background-color: white;\n box-shadow: 0px 3px 6px #00000029;\n border-radius: 4px;\n padding: 2rem 2.5rem;\n position: relative;\n`\nexport const DotsContainer = styled.div`\n display: flex;\n flex-direction: row;\n align-items: center;\n margin: 1rem auto;\n`\nexport const Title = styled.div`\n font-size: 17px;\n color: #585858;\n width: 100%;\n text-align: center;\n font-weight: 600;\n margin-top: 0.5rem;\n`\nexport const TitleSmall = styled.div`\n font-size: 13px;\n color: #585858;\n width: 100%;\n text-align: center;\n margin-top: 0.5rem;\n`\nexport const FlexV = styled.div`\n display: flex;\n flex-direction: column;\n width: 100%;\n display: inline-block;\n`\nexport const FlexH = styled.div`\n display: flex;\n flex-direction: row;\n width: 100%;\n`\nexport const Input = styled.input`\n width: 100%;\n border: 1px solid #DADADA;\n border-radius: 4px;\n padding: 0.5rem;\n font-size: 15px;\n color: #585858;\n -webkit-box-shadow: 0 0 0px 1000px var(--color-white) inset; //Remove autofill background\n`\nexport const DoBInput = styled.input`\n width: 100%;\n border: 1px solid #DADADA;\n border-radius: 4px;\n padding: 0.5rem;\n font-size: 15px;\n background-repeat: no-repeat;\n background-image: url(${arrow});\n color: #585858;\n background-position: center right 0.5rem;\n`\nexport const Label = styled.div`\n color: #585858;\n font-size: 13px;\n margin: 0.7rem 0rem;\n`\nexport const LogIn = styled.div`\n color: #07A3C8;\n font-size: 13px;\n cursor: pointer;\n width: 50px;\n`\nexport const Logo = styled.img`\n position: absolute;\n top: 20px;\n left: 30px;\n`\nexport const ShowContainer = styled.div`\n color: #07A3C8;\n`\nexport const Link = styled.span`\n color: #585858;\n cursor: pointer;\n text-decoration: underline;\n`","import React from 'react';\nimport { observer } from 'mobx-react-lite'\n\nimport * as Styled from '../DesktopSignUpFlow.styled';\n\ninterface IProps {\n firstName: string;\n surName: string;\n preferredName: string;\n}\n\nconst DesktopSignUpFlowCardName: React.FC = observer(({ firstName, surName, preferredName }) => {\n return (\n \n Please confirm your name \n \n Legal First Name \n \n Legal Surname \n \n Preferred Name (Optional) \n \n \n Names entered above must exactly match your official identity document (e.g. passport, driver's license etc) \n \n )\n})\n\nexport default DesktopSignUpFlowCardName;","import React from 'react';\n\nimport * as Styled from '../DesktopSignUpFlow.styled';\n\ninterface IProps {\n DoB: string;\n}\nconst Months = [\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"];\n\nconst DesktopSignUpFlowCardDoB: React.FC = ({ DoB }) => {\n const DoBArr = DoB.split('-')\n const Year = DoBArr[0];\n const Month = Months[parseInt(DoBArr[1]) - 1];\n const Day = DoBArr[2];\n return (\n \n Please confirm your date of birth \n You must be 18 or older to create a patient profile with Vensa. \n \n \n \n \n \n \n )\n}\n\nexport default DesktopSignUpFlowCardDoB","import React, { useState } from 'react';\n\nimport * as Styled from '../DesktopSignUpFlow.styled';\nimport Radio from 'components/CircleCheckbox';\nimport { ReactComponent as Eye } from 'svgs/eyeBlue.svg';\nimport PasswordPolicy from './PasswordPolicy/index';\n\ninterface IProps {\n email: string;\n password: string;\n policy: boolean;\n setPassword: (password: string) => void;\n setPolicy: (accepted: boolean) => void;\n}\n\nconst DesktopSignUpFlowPassword: React.FC = ({email, password, setPassword, policy, setPolicy}) => {\n const [inputTypePassword, setInputTypePassword] = useState(true);\n\n return (\n \n Confirm your email \n Confirm your email address and create a secure password (these details can be changed later) \n \n Email \n \n \n Password \n setInputTypePassword(!inputTypePassword)}\n >\n \n {inputTypePassword ? \"Show\" : \"Hide\"} \n
\n \n setPassword(e.target.value)} />\n \n \n \n setPolicy(!policy)} />\n \n I agree to the {\n window.open(\"https://vensa.com/consumer/privacy-policy/3\", \"_blank\")\n }}>privacy policy and {\n window.open(\"https://vensa.com/consumer/terms-and-conditions/3\", \"_blank\")\n }}>terms & conditions. \n \n \n \n )\n}\n\nexport default DesktopSignUpFlowPassword","import React, { useEffect, useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport styled from 'styled-components';\n\nimport bg from 'images/bgImage.png';\nimport { ReactComponent as Arrow } from 'svgs/blueRightCircleArrow.svg';\nimport { useAccountStore } from 'store/mobx/mobx';\nimport moment from 'moment';\nimport { goBack, history } from 'routes/utils'\nimport logoHeader from 'images/logoName.png';\nimport * as Styled from './DesktopSignUpFlow.styled';\nimport DesktopSignUpFlowCardName from './components/DesktopSignUpFlowCardName';\nimport DesktopSignUpFlowCardDoB from './components/DesktopSignUpFlowCardDoB';\nimport DesktopSignUpFlowCardPassword from './components/DesktopSignUpFlowCardPassword';\nimport { ReactComponent as BackArrow } from 'svgs/leftlinearrow.svg';\nimport CtaButton from 'components/CtaButton';\nimport { isValidPassword } from 'libs/misc';\nimport { actions as loginActions } from \"EntryPage/actions/actions\";\nimport { go } from 'routes';\nimport { bindActionCreators } from 'redux';\nimport { connect } from 'react-redux';\nimport Loading from 'components/loadingSpinner';\n\ninterface IDotProps {\n show: boolean;\n}\n\nconst Dot = styled.div`\n width: 12px;\n height: 12px;\n border-radius: 50%;\n background-color: white;\n margin: 0rem 4px;\n opacity: ${(props: IDotProps) => props.show ? \"1\" : \"0.5\"};\n`\n\nconst getDob = (date: string) => {\n return moment(date, ['YYYY-MM-DD', 'DD-MM-YYYY']).format('YYYY-MM-DD');\n}\n\n\nconst isButtonActive = (state: number, password: string, privacyPolicy: boolean) => {\n if (state !== 2) { return true; }\n if (state === 2 && isValidPassword(password) && privacyPolicy) { return true; } \n return false;\n}\n\nconst DesktopSignUpFlow: React.FC = observer(({login, success, consumerUrl, refreshToken, expiryTime}) => {\n const store = useAccountStore();\n\n const [state, setState] = useState(0);\n const [buttonActive, setButtonActive] = useState(true);\n const [sentDetails, setSentDetails] = useState(store.signUpInvitationDetails.GivenName !== \"\");\n const [Email] = useState(store.signUpInvitationEmail ? store.signUpInvitationEmail : \"\");\n const [Password, setPassword] = useState(\"\");\n const [PolicyAccepted, setPolicyAccepted] = useState(false);\n\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let t = params.get('t');\n let e = params.get('e')\n\n const goNext = () => {\n if (state !== 2) {\n setState(state + 1)\n } else {\n if (!e) { return }\n store.registerWithSignUpToken({\n Token: store.signUpInvitationToken,\n Email: e,\n GivenName: store.signUpInvitationDetails.GivenName,\n FamilyName: store.signUpInvitationDetails.FamilyName,\n PreferredName: store.signUpInvitationDetails.PreferredName,\n MobileNumber: \"\",\n DateOfBirth: getDob(store.signUpInvitationDetails.DateOfBirth),\n Password: Password\n }, () => {\n if (e === null) { return; }\n login(e, Password);\n })\n }\n }\n const goBackFn = () => {\n if (state > 0) setState(state - 1);\n else goBack();\n }\n\n useEffect(() => {\n setButtonActive(isButtonActive(state, Password, PolicyAccepted));\n if (success) {\n window.open(\n consumerUrl + \"login?token=\" +\n refreshToken + \"&expires=\" + \n expiryTime + \"&email=\" + \n e + \"&firstTime=false\", \n \"_self\"\n );\n } \n })\n \n useEffect(() => {\n if (t && e) {\n if (!sentDetails) {\n store.getSignUpInvitationDetails(t, e, () =>{/* go.home()*/});\n setSentDetails(true);\n }\n } else {\n //go.home();\n }\n })\n\n return (\n \n \n \n \n \n \n \n {state === 0 && \n \n }\n {state === 1 &&\n \n }\n {state === 2 && e &&\n setPassword(password)}\n password={Password}\n policy={PolicyAccepted}\n setPolicy={(accepted: boolean) => setPolicyAccepted(accepted)}\n />\n }\n \n {state === 0 &&\n \n Have an account? \n window.open(\"https://login.vensa.com\", \"_self\")}>Log In \n \n }\n \n \n \n \n \n \n \n \n \n \n \n )\n})\n\ninterface LinkDispatchProps {\n login: (Email: string, Password: string) => void;\n success: boolean;\n consumerUrl: string;\n refreshToken: string;\n expiryTime: string;\n email: string;\n loading: boolean;\n}\n\nconst mapStateToProps = (state: any) => ({\n success: state.loginReducer.success,\n consumerUrl: state.loginReducer.consumerUrl,\n refreshToken: state.loginReducer.refreshToken,\n expiryTime: state.loginReducer.expiryTime,\n email: state.loginReducer.email,\n loading: state.loginReducer.isFetching\n})\nconst mapDispatchToProps = (dispatch: any) => ({\n login: bindActionCreators(loginActions.login, dispatch),\n})\n\nexport default connect(mapStateToProps, mapDispatchToProps)(DesktopSignUpFlow);","import React, { lazy, Suspense } from 'react';\nimport { Router, Switch, Redirect, Route } from 'react-router-dom';\nimport ReactGA from 'react-ga';\nimport { debounce } from 'lodash/fp';\nimport App from '../App';\nimport AppointmentsRoutes, { go as goAppointments } from './sub/appointments';\nimport PrivacyRoutes, { go as goPrivacy } from './sub/privacy';\nimport SettingsRoutes, { go as goSettings } from './sub/settings';\nimport IdentityRoutes, { go as goIdentity } from './sub/identity';\nimport DependantsRoutes, { go as goDependants } from './sub/dependants';\nimport MessagesRoutes, { go as goMessages } from './sub/messages';\nimport HealthFeedRoutes, { go as goHome } from './sub/healthFeed';\nimport LoginRoutes, { go as goLogin } from './sub/login';\nimport PracticeProfileRoutes, {\n go as goPracticeProfile,\n} from './sub/practiceProfile';\nimport PracticesRoutes, { go as goPractices } from './sub/practices';\nimport PrescriptionsRoutes, {\n go as goPrescriptions,\n} from './sub/prescriptions';\nimport SupportRoutes, { go as goSupport } from './sub/support';\nimport PaymentsRoutes, { go as goPayments } from './sub/payments';\nimport UserAccountRoutes, { go as goUserAccount } from './sub/userAccount';\nimport AddToHomeScreenRoutes, {go as goAddToHomeScreen} from './sub/addToHomeScreen';\nimport { go as govAppointment } from './sub/vAppointment';\nimport { go as govScript } from './sub/vScript';\nimport UIContainer from '../components/UIContainer';\nimport { history, push } from './utils';\nimport MyHealthRoutes, { go as goMyHealth } from './sub/myHealth';\nimport PHRRoutes, { go as goPHR } from './sub/phr';\nimport SignUpVerificationMobile from 'Identity/SignUpVerification/SignUpVerification';\nimport SecurityRoutes, { go as goSecurity } from './sub/security';\nimport SignUpFlow from 'Identity/SignUpVerification/SignUpFlow/SignUpFlow.tsx';\nimport DesktopSignUpVerification from 'Identity/SignUpVerification/DesktopSignUpVerification/DesktopSignUpVerification.tsx'\nimport DesktopSignUpFlow from 'Identity/SignUpVerification/DesktopSignUpFlow/DesktopSignUpFlow.tsx';\nimport { isDesktop } from 'config';\n\nconst go = {\n ...goAppointments,\n ...goPHR,\n ...goDependants,\n ...goMessages,\n ...goHome,\n ...goLogin,\n ...goPayments,\n ...goPracticeProfile,\n ...goPractices,\n ...goPrescriptions,\n ...goPrivacy,\n ...goSupport,\n ...goUserAccount,\n ...govAppointment,\n ...govScript,\n ...goSettings,\n ...goIdentity,\n ...goMyHealth,\n ...goSecurity,\n ...goAddToHomeScreen,\n signUpFlow: (t, e) => push('sign-up-flow?t=' + t + '&e=' + e),\n signUpInvitation: (t, e) => push('sign-up-invitation?token=' + t + '&email=' + e),\n};\n\nconst logPageView = debounce(1000, () => {\n ReactGA.set({ page: window.location.pathname });\n ReactGA.pageview(window.location.pathname);\n});\n\nhistory.listen(logPageView);\n\nconst LOADING = () => {\n return (\n \n
\n \n );\n};\n\nconst Index = () => (\n \n \n }>\n \n {AppointmentsRoutes}\n {DependantsRoutes}\n {MessagesRoutes}\n {HealthFeedRoutes}\n {LoginRoutes}\n {PaymentsRoutes}\n {PracticeProfileRoutes}\n {PracticesRoutes}\n {PrescriptionsRoutes}\n {PrivacyRoutes}\n {SupportRoutes}\n {UserAccountRoutes}\n {SettingsRoutes}\n {IdentityRoutes}\n {MyHealthRoutes}\n {SecurityRoutes}\n {PHRRoutes}\n {AddToHomeScreenRoutes}\n ,\n , \n \n import(/* webpackChunkName: \"vScriptAll\" */ './sub/vScript'),\n )}\n />\n \n import(\n /* webpackChunkName: \"vAppointmentAll\" */ './sub/vAppointment'\n ),\n )}\n />\n \n \n \n \n \n);\n\nexport default Index;\nexport { go };\n","import { request, HTTP } from '../../../libs/newHttp';\nimport { HealthTransactionItemType } from './paymentStore.type';\n\nexport const getPaymentSummaryAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/payment/summary`,\n });\n\nexport const getTransactionHistoryAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/payment/transaction-history`,\n });\n\nexport const getTransactionDetailAPI = ({\n transactionId,\n transactionType,\n}: {\n transactionId: string;\n transactionType: HealthTransactionItemType;\n}) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/payment/transaction-detail/${transactionId}?type=${transactionType}`,\n });\n\nexport const deleteCardAPI = ({ cardId }: { cardId: string }) => () =>\n request({\n method: HTTP.DELETE,\n url: `consumer/payment/card?cardId=${cardId}`,\n });\n\nexport const setDefaultCardAPI = (cardId: string) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/payment/preferred-card?cardId=${cardId}`,\n });\n\nexport const postPaymentCardAPI = (token: string, saveCard: boolean) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/payment/card`,\n data: { Token: token, doNotSaveCard: !saveCard }\n });\n\nexport const getCardsAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/payment/card`,\n });\n\nexport const getSessionCardsAPI = (sessionId: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/appointment/session/card?sessionId=${sessionId}`,\n });\n\nexport const postSessionUseCardAPI = (sessionId: string, usePaymentToken: boolean) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/appointment/session/use_payment_token`,\n data: { SessionId: sessionId, UsePaymentToken: usePaymentToken }\n });","import { observable, action, makeAutoObservable } from 'mobx';\nimport {\n generalRequest,\n LOADING_STATUS,\n LoadingStatusType,\n} from '../../../libs/newHttp';\nimport {\n ICard,\n IHealthTransactionItem,\n HealthTransactionItemType,\n IHealthTransaction,\n} from './paymentStore.type';\nimport {\n getPaymentSummaryAPI,\n getTransactionHistoryAPI,\n getTransactionDetailAPI,\n deleteCardAPI,\n setDefaultCardAPI,\n postPaymentCardAPI,\n getCardsAPI,\n getSessionCardsAPI,\n postSessionUseCardAPI\n} from './paymentStore.api';\n\nexport class PaymentStore {\n constructor() {\n makeAutoObservable(this);\n }\n @observable paymentSummaryLoadingStatus = LOADING_STATUS.INITIAL;\n @observable cards: ICard[] = [];\n @observable cardsLoadingStatus = LOADING_STATUS.INITIAL;\n @observable cardList: ICard[] = [];\n\n @observable healthTransactionHistoryLoadingStatus = LOADING_STATUS.INITIAL;\n @observable healthTransactionHistory: IHealthTransactionItem[] = [];\n\n @observable healthTransactionLoadingStatus = LOADING_STATUS.INITIAL;\n @observable healthTransaction: IHealthTransaction = {\n Id: '',\n FirstName: '',\n LastName: '',\n OrganisationId: '',\n OrganisationName: '',\n OrganisationPaymentEnabled: false,\n PmsUserId: '',\n PmsUserName: '',\n PmsUserTitle: '',\n ProfilePictureUrl: '',\n DependantId: '',\n CTPP: {},\n FreeFormMedication: {},\n Medications: {},\n Status: '',\n StatusColour: '',\n DateTime: '',\n DoctorNote: '',\n Read: false,\n Type: '',\n Invoice: {\n Items: [],\n Total: 0,\n },\n Charge: {\n Id: '',\n Reference: '',\n Status: '',\n Last4: '',\n Amount: 0,\n Time: '',\n SettleAT: '',\n },\n LocationName: '',\n LocationAddress: '',\n HandledAt: '',\n TextSentAt: '',\n TextSentTo: '',\n PayOnline: false,\n };\n @observable acceptedPrivacyStatement: boolean = false;\n\n @action.bound\n async createPaymentMethod(token: string, saveCard: boolean) {\n await generalRequest.bind(this)({\n loadingStatusName: 'createPaymentMethodLoadingStatus',\n api: postPaymentCardAPI(token, saveCard),\n dataPropertyName: 'createPaymentMethod',\n });\n }\n\n @action.bound\n async getSessionCards(sessionId: string) {\n await generalRequest.bind(this)({\n loadingStatusName: 'cardsLoadingStatus',\n api: getSessionCardsAPI(sessionId),\n dataPropertyName: 'cardList',\n });\n }\n\n @action.bound\n async getCards() {\n await generalRequest.bind(this)({\n loadingStatusName: 'cardsLoadingStatus',\n api: getCardsAPI,\n dataPropertyName: 'cardList',\n });\n }\n\n @action.bound\n async getPaymentSummary() {\n await generalRequest.bind(this)({\n loadingStatusName: 'paymentSummaryLoadingStatus',\n api: getPaymentSummaryAPI,\n dataPropertyName: 'cards',\n });\n }\n\n @action.bound\n async getTransactionHistory() {\n if (this.isLoaded(this.healthTransactionHistoryLoadingStatus)) return;\n\n await generalRequest.bind(this)({\n loadingStatusName: 'healthTransactionHistoryLoadingStatus',\n api: getTransactionHistoryAPI,\n dataPropertyName: 'healthTransactionHistory',\n });\n }\n\n @action.bound\n async getTransactionItem(id: string, type: HealthTransactionItemType) {\n await generalRequest.bind(this)({\n loadingStatusName: 'healthTransactionLoadingStatus',\n api: getTransactionDetailAPI({\n transactionId: id,\n transactionType: type,\n }),\n dataPropertyName: 'healthTransaction',\n });\n }\n\n @action.bound\n async deleteCard(token: string) {\n await generalRequest.bind(this)({\n loadingStatusName: 'deleteCardLoadingStatus',\n api: deleteCardAPI({\n cardId: token\n }),\n dataPropertyName: 'deleteCard',\n });\n }\n\n @action.bound\n async setDefaultCard(token: string) {\n await generalRequest.bind(this)({\n loadingStatusName: 'setDefaultCardLoadingStatus',\n api: setDefaultCardAPI(token),\n dataPropertyName: 'setDefaultCard',\n });\n }\n\n @action.bound\n async setSessionUsePaymentToken(sessionId: string, usePaymentToken: boolean) {\n await generalRequest.bind(this)({\n loadingStatusName: 'setSessionTokenUseLoadingStatus',\n api: postSessionUseCardAPI(sessionId, usePaymentToken),\n dataPropertyName: 'setSessionTokenUse',\n });\n }\n\n private isLoaded(status: LoadingStatusType) {\n return status === LOADING_STATUS.LOADED;\n }\n}\n","import { request, HTTP } from '../../../libs/newHttp';\nimport { IPrivacySettingsUpdate } from './accountStore.type';\n\nexport const getProfileAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/profile`,\n });\n \nexport const getIdentityRequestsStatusAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/identity/identity-requests-status`,\n });\n\nexport const sendVerifyTextAPI = (mobile: string, update: boolean) => () => \n request({\n method: update ? HTTP.POST : HTTP.GET,\n url: update ? `consumer/verify/mobile` : `consumer/verify`,\n data: { Mobile: mobile }\n })\n\nexport const checkVerifyTextAPI = (code: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/verify`,\n data: { Code: code }\n })\n\nexport const sendVerifyRecoveryEmailAPI = (email: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/security/recovery-email/verify?email=${email}`,\n })\n\nexport const checkVerifyRecoveryEmailAPI = (email: string, code: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/security/recovery-email/verify`,\n data: {\n Code: {\n Code: code\n },\n Email: email\n }\n })\n\nexport const sendVerifyEmailAPI = (email: string, update: boolean) => () =>\n request({\n method: HTTP.GET,\n url: update ? `consumer/security/change-email/verify?email=${email}` : `consumer/security/email/verify?email=${email}`,\n })\n\nexport const checkVerifyEmailAPI = (email: string, code: string, update: boolean) => () => \n request({\n method: HTTP.POST,\n url: update ? `consumer/security/change-email/verify` : `consumer/security/email/verify`,\n data: update ? {\n Code: {\n Code: code\n },\n Email: email\n } : {\n Code: code\n }\n }) \n\nexport const getUserPrivacySettingsWithOrgAPI = (orgId: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/privacy/privacy-settings/${orgId}`\n })\nexport const updateUserPrivacySettingsWithOrgAPI = (settings: IPrivacySettingsUpdate) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/privacy/privacy-settings`,\n data: settings,\n })\n\n\nexport const getPinCodeEnabledAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/account/pin-code-enabled`\n })\nexport const getPinCodeLengthAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/account/pin-code-length`,\n })\nexport const verifyPinCodeAPI = (pinCode: string) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/account/pin-code/login`,\n data: pinCode ,\n })\n\nexport const sendAcknowledgementAPI = (value: number) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/identity/acknowledgement`,\n data: value\n })\n\nexport const uploadPicAPI = (pic: File) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/avatar`,\n file: pic\n })\n\nexport const logoutAPI = () => \n request({\n method: HTTP.POST,\n url: `consumer/logout`,\n })\n\nexport const getSignUpInvitationDetailsAPI = (token: string) => () => \n request({\n method: HTTP.GET,\n url: `consumer/patient-detail?token=${token}`,\n })\nexport const registerWithSignUpTokenAPI = (data: any) => () => \n request({\n method: HTTP.POST,\n url: `consumer/register-with-invitation-token`,\n data: data\n })\n\nexport const editProfileAPI = (data: any) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/profile`,\n data: data\n })\n\nexport const removeRecoveryEmailAPI = () => \n request({\n method: HTTP.DELETE,\n url: `consumer/security/recovery-email`\n })\n\n// Reset Pin APIs\nexport const getRecoveryMethodsAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/account/reset-pin/recovery-methods`\n })\nexport const getVerificationCodeSentToRecoveryMethodAPI = (isMobile: boolean, target: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/account/reset-pin/verification-code?isMobile=${isMobile}&target=${target}`,\n })\nexport const postVerificationCodeSentToRecoveryMethodAPI = (code: string, isMobile: boolean, target: string) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/account/reset-pin/verification-code`,\n data: {\n Code: {\n Code: code\n },\n IsMobile: isMobile,\n Target: target\n }\n })\n\n// Recover Suspended Account APIs\nexport const getRecoveryEmailSentToSuspendedAccountAPI = (email: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/account/recover/email?email=${email}`\n })\nexport const getRecoverSuspendedAccountVerificationCodeAPI = (token: string, isMobile: boolean, target: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/account/recover/verification-code?token=${token}&isMobile=${isMobile}&target=${target}`\n })\nexport const getRecoveryMethodsForSuspendedAccountAPI = (token: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/account/recovery-methods?token=${token}`\n })\nexport const postRecoverAccountCheckActivationCodeAPI = (Token: string, Code: string, IsMobile: boolean, Target: string) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/account/recover/verification-code`,\n data: {\n Code: { Code },\n Token,\n IsMobile,\n Target,\n }\n })\nexport const postRecoverAccountChangePasswordAPI = (Token: string, NewPassword: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/account/recover/password`,\n data: {\n Token,\n NewPassword,\n }\n })\nexport const postRecoverAccountChangePinAPI = (Token: string, NewPinCode: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/account/recover/pin-code`,\n data: {\n Token,\n NewPinCode\n }\n })\nexport const postRecoverAccountAPI = (token: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/account/recover`,\n data: { token } \n })","import { observable, action, makeAutoObservable } from 'mobx';\nimport { IProfile, IPrivacySettingsWithOrg, IIdentityRequestsStatus, ISignUpInvitationDetails, IRegisterWithSignUpToken } from './accountStore.type';\nimport { generalRequest, getToken, getTokenObj } from '../../../libs/newHttp';\nimport { getProfileAPI, sendVerifyEmailAPI, checkVerifyEmailAPI, removeRecoveryEmailAPI, getSignUpInvitationDetailsAPI, uploadPicAPI, sendVerifyRecoveryEmailAPI, checkVerifyRecoveryEmailAPI, getPinCodeEnabledAPI, sendAcknowledgementAPI,\n getIdentityRequestsStatusAPI, sendVerifyTextAPI, updateUserPrivacySettingsWithOrgAPI, checkVerifyTextAPI, getUserPrivacySettingsWithOrgAPI, getPinCodeLengthAPI, verifyPinCodeAPI, logoutAPI, registerWithSignUpTokenAPI, editProfileAPI, getRecoveryMethodsAPI, getVerificationCodeSentToRecoveryMethodAPI, postVerificationCodeSentToRecoveryMethodAPI, getRecoveryEmailSentToSuspendedAccountAPI, getRecoverSuspendedAccountVerificationCodeAPI, getRecoveryMethodsForSuspendedAccountAPI, postRecoverAccountCheckActivationCodeAPI, postRecoverAccountChangePasswordAPI, postRecoverAccountChangePinAPI, postRecoverAccountAPI } from './accountStore.api';\nimport Alert from 'libs/Alert';\nimport { go } from 'routes';\nimport moment from 'moment';\nimport { DEFAULT_GUID } from '../../../common/constants';\n \n\nexport class AccountStore {\n constructor(){\n makeAutoObservable(this);\n }\n userAccountIdentityLabelArr: IIdentityRequestsStatus[] = [];\n receivedIDRequests: boolean = false;\n profileErrorText = '';\n loading = false;\n showPopUp = false; // used to indicate show pop up\n pinCodeFlowState = 4; // used to indicated what state of the pin code flow the user is in\n successChecker = false; // Used to indicate if api call was finished\n consumerUrl = \"\";\n loadingAcknowledgement = false;\n loadingRequests = false;\n identityRequestsStatusComplete = false;\n identityRequests: IIdentityRequestsStatus[] = [];\n mobileVerifyCodeChecked = false;\n pinCodeEnabled = false;\n emailForRecoveringSuspendedAccount = \"\";\n chosenIdentityRequest: IIdentityRequestsStatus = {\n Address: \"\",\n AllowResubmit: false,\n BlackListed: false,\n BlackListedReason: \"\",\n EnrollmentStatusNotMeetPracticePolicy: false,\n ErrorMessage: \"\",\n IdentityVerified: false,\n IdentityRequest: {\n Status: 0,\n RequestDate: \"\",\n UpdatedOn: \"\",\n Id: \"\",\n },\n IsOnline: false,\n MatchedPatientInPms: false,\n OnlineVerificationEnabled: false,\n OrganisationId: \"\",\n OrganisationName: \"\",\n Phone: \"\",\n PictureUrl: \"\",\n PracticeVerification: false,\n PracticeVerifiedOn: \"\",\n AlreadyVerifiedByOtherAccount: false,\n Pictures: []\n } \n userVerifyCode = \"\";\n privacySettingsWithOrg: IPrivacySettingsWithOrg = {\n OrganisationId: DEFAULT_GUID,\n OrganisationName: \"\",\n LogoUrl: \"\",\n AllowAccessMyHealthRecords: {\n Allow: true,\n Overridden: true,\n Reason: \"\"\n },\n AllowAccessMyDoctorNotes: {\n Allow: true,\n Overridden: true,\n Reason: \"\"\n },\n AllowAccessMyDependantHealthRecords: {\n Allow: true,\n Overridden: true,\n Reason: \"\"\n },\n AllowShareMyHealthDataWithPractices: true,\n AllowAccessAndStoreMedications: {\n Allow: true,\n Overridden: true,\n Reason: \"\"\n },\n }\n pinCodeLength = 0;\n \n patientVerification = {\n userEnteredCode: [\"\", \"\"],\n codeChecked: [false, false],\n loading: false,\n codeMatched: [false, false]\n }\n profile: IProfile = {\n Id: '00000000-0000-0000-0000-000000000000',\n FirstName: \"\",\n LastName: \"\",\n PreferredName: \"\",\n DateOfBirth: \"\",\n Email: \"\",\n Mobile: \"\",\n MobileVerified: false,\n PatientProfiles: {},\n AvatarUrl: \"\",\n HasPractice: false,\n HasAcceptedTC: false,\n PendingRequest: false,\n HasAcceptedPP: false,\n TermsAndConditionsUrl: \"\",\n PrivacyPolicyUrl: \"\",\n IdentityVerified: false,\n VerificationStatus: 2,\n RestrictiveStatus: {\n Summary: [\n {\n IsAccessRestricted: false,\n OrganisationName: \"\",\n OrganisationId: \"\",\n }\n ],\n Immunisations: [\n {\n IsAccessRestricted: false,\n OrganisationName: \"\",\n OrganisationId: \"\",\n }\n ],\n Labs: [\n {\n IsAccessRestricted: false,\n OrganisationName: \"\",\n OrganisationId: \"\",\n }\n ],\n ClinicalNotes: [\n {\n IsAccessRestricted: false,\n OrganisationName: \"\",\n OrganisationId: \"\",\n }\n ]\n },\n EmailVerified: false,\n SecurityPinCodeSetup: false,\n RecoveryEmail: \"\",\n VerificationStatusDetails: [],\n SelfieTaken: false,\n AcknowledgeOfAdditionalSecuritySettings: true,\n AcknowledgeOfIdentityVerification: false,\n PrivacyPolicySetup: false,\n hasVerifiedDependantLinked: false,\n CareGiverId: DEFAULT_GUID,\n LatestPracticeId: '',\n }\n\n\n // Sign-up invitation\n signUpInvitationToken: string = \"\";\n signUpInvitationEmail: string = \"\";\n signUpInvitationDetails: ISignUpInvitationDetails = {\n Email: \"\",\n GivenName: \"\",\n FamilyName: \"\",\n PreferredName: \"\",\n MobileNumber: \"\",\n DateOfBirth: \"\",\n OrganisationName: \"\",\n Address: \"\",\n LogoUrl: \"\",\n NoteForPatient: \"Log online and create your password, you will have full access.\",\n OrganisationPhone: \"\",\n OrganisationEmail: \"\",\n }\n signUpInvitationSuccess: boolean = false;\n\n // Recover Pin\n recoveryMethods: any = {\n MobileNumber: \"\",\n Email: \"\",\n RecoveryEmail: \"\",\n }\n\n getProfileLoading: boolean = false;\n\n @action.bound\n async getProfile(onSuccess?: () => void) {\n this.loading = true;\n this.getProfileLoading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'profileLoadingStatus',\n api: getProfileAPI,\n dataPropertyName: 'profile',\n afterFailed: (err: any) => {\n if(err.response) {\n if (err.response.status === 401) {\n //window.localStorage.removeItem('token');\n //go.login();\n return;\n }\n this.profileErrorText = err.response.data.Message;\n }\n this.loading = false;\n this.getProfileLoading = false;\n },\n afterLoaded: (data: any) => {\n this.profile = data;\n this.loading = false;\n this.getProfileLoading = false;\n if (onSuccess) {\n onSuccess();\n }\n }\n });\n }\n @action.bound \n async uploadPic(pic: File, onSuccess?: () => void) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: uploadPicAPI(pic),\n afterLoaded: () => {\n this.loading = false;\n if (onSuccess) {\n onSuccess();\n }\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n \n }\n })\n }\n @action.bound\n async getIdentityRequestsStatus(onSuccess?: () => void) {\n this.loadingRequests = true;\n await generalRequest.bind(this)({\n api: getIdentityRequestsStatusAPI,\n afterFailed: (err: any) => {\n this.loadingRequests = false;\n },\n afterLoaded: (data: any) => {\n this.identityRequests = data;\n this.receivedIDRequests = true;\n this.loadingRequests = false;\n this.identityRequestsStatusComplete = true;\n if (data !== null) {\n if (onSuccess) {\n onSuccess();\n } \n };\n this.userAccountIdentityLabelArr = [];\n data.map((item: IIdentityRequestsStatus) => {\n if (item.IdentityRequest) {\n if (item.IdentityRequest.Status === 1 || item.IdentityRequest.Status === 0) {\n this.userAccountIdentityLabelArr.push(item);\n }\n }\n })\n }\n })\n }\n @action.bound \n async setEmailTemp(email: string) {\n this.emailForRecoveringSuspendedAccount = email;\n }\n\n @action.bound \n async setShowPopUp(value: boolean) {\n this.showPopUp = value;\n }\n @action.bound \n async setPinCodeFlowState(value: number) {\n this.pinCodeFlowState = value;\n }\n\n @action.bound\n async setEmailVerified() {\n this.profile.EmailVerified = true;\n }\n @action.bound\n async setConsumerUrl(url: string) {\n this.consumerUrl = url;\n }\n @action.bound\n async setMobileVerified(mobile: string) {\n this.profile.MobileVerified = true;\n this.profile.Mobile = mobile;\n }\n\n @action.bound\n async setVerifyCode(code: string, element: number) {\n this.patientVerification.userEnteredCode[element] = code;\n }\n\n @action.bound\n async sendVerifyText(mobile: string, nextScreen: () => void, errorMessage: (val: string) => void, update: boolean) {\n this.patientVerification.loading = true;\n await generalRequest.bind(this)({\n api: sendVerifyTextAPI(mobile, update),\n afterLoaded: () => {\n this.patientVerification.loading = false;\n nextScreen();\n },\n afterFailed: (err: any) => {\n this.patientVerification.loading = false;\n // TODO: ADD ERROR LIBARARY HERE\n if (err.response.status === 429) { \n errorMessage(\"You may only send one text every minute\") \n } else if (err.response.status === 400) { \n errorMessage(err.response.data.Message); \n } else {\n errorMessage(\"An unexpected error has occurred\")\n }\n setTimeout(() => errorMessage(\"\"), 4000);\n }\n })\n }\n @action.bound\n async checkVerifyText(isCombo: boolean, combo: () => void, close: () => void, setIncorrect: (value: boolean) => void) {\n this.patientVerification.loading = true;\n await generalRequest.bind(this) ({\n api: checkVerifyTextAPI(this.patientVerification.userEnteredCode[0]),\n afterLoaded: () => {\n this.patientVerification.loading = false;\n \n if (isCombo) { \n close();\n combo(); \n } else {\n close();\n } \n },\n afterFailed: (err: any) => {\n this.patientVerification.loading = false;\n setIncorrect(true);\n setTimeout(() => setIncorrect(false), 4000);\n // TODO ADD ERROR LIBARARY HERE\n }\n })\n }\n\n @action.bound\n async removeRecoveryEmail(onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: removeRecoveryEmailAPI,\n afterLoaded: () => {\n this.loading = false;\n if (onSuccess) {\n onSuccess();\n }\n },\n afterFailed: () => {\n this.loading = false;\n Alert.error(\"Unexpected error has occured, please try again later\")\n }\n })\n }\n\n @action.bound\n async sendVerifyEmail(email: string, isPrimary: boolean, goNext: () => void, errorMessage: (val: string) => void, update: boolean) {\n this.patientVerification.loading = true;\n await generalRequest.bind(this) ({\n api: isPrimary ? sendVerifyEmailAPI(email, update) : sendVerifyRecoveryEmailAPI(email),\n afterLoaded: () => {\n this.patientVerification.loading = false;\n goNext();\n },\n afterFailed: (err: any) => {\n this.patientVerification.loading = false;\n // TODO: ADD ERROR LIBARARY HERE\n if (err.response.status === 429) { \n errorMessage(\"You may only send one email every minute\") \n } else if (err.response.status === 400) { \n errorMessage(err.response.data.Message);\n } else {\n errorMessage(\"An unexpected error has occurred\")\n }\n }\n })\n }\n @action.bound\n async checkVerifyEmail(email: string, isPrimary: boolean, close: () => void, setIncorrect: (val: boolean) => void, update: boolean) {\n this.patientVerification.loading = true;\n await generalRequest.bind(this) ({\n api: isPrimary ? \n checkVerifyEmailAPI(email, this.patientVerification.userEnteredCode[1], update) \n : \n checkVerifyRecoveryEmailAPI(email, this.patientVerification.userEnteredCode[1]),\n afterLoaded: () => {\n this.patientVerification.loading = false;\n if (!isPrimary) { this.getProfile(); }\n close();\n },\n afterFailed: (err: any) => {\n this.patientVerification.loading = false;\n // TODO: ADD ERROR LIBARARY HERE\n if (err) { \n setIncorrect(true);\n }\n setTimeout(() => setIncorrect(false), 4000);\n }\n })\n }\n\n @action.bound\n async getUserPrivacySettingsWithOrg(orgId: string, onSuccess?: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getUserPrivacySettingsWithOrgAPI(orgId),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.privacySettingsWithOrg = data;\n if (onSuccess) {\n onSuccess();\n }\n },\n afterFailed: (err: any) => {\n //TODO RESPONSE CODES\n this.loading = false;\n }\n })\n }\n @action.bound\n async updateUserPrivacySettingsWithOrg(OrganisationId: string, onSuccess: () => void, med: boolean, dep: boolean, dr: boolean, rec: boolean, data: boolean) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: updateUserPrivacySettingsWithOrgAPI({\n OrganisationId,\n AllowAccessAndStoreMedications: med,\n AllowAccessMyDependantHealthRecords: dep,\n AllowAccessMyDoctorNotes: dr,\n AllowAccessMyHealthRecords: rec,\n AllowShareMyHealthDataWithPractices: data,\n }),\n afterLoaded: () => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n\n @action.bound\n async getPinCodeLength() {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getPinCodeLengthAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.pinCodeLength = data;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n } \n })\n }\n\n @action.bound\n async verifyPinCode(pinCode: string, onSuccess: (data: any) => void, onFail: (err: any) => void, email?: string): Promise {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: verifyPinCodeAPI(pinCode),\n afterLoaded: (data: {\n access_token: string,\n token_type: string,\n expires_in: number,\n refresh_token: \"string\"\n }) => {\n this.loading = false;\n if (data) {\n window.localStorage.setItem('token', JSON.stringify({\n token: data.access_token,\n expiryTime: moment().add(data.expires_in - 120, 'seconds').toDate(),\n refreshToken: data.refresh_token,\n }));\n }\n onSuccess(data);\n return true;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n onFail(err);\n if (err.response.status === 429) { \n Alert.error(\"Too many failed attempts please try again later\") \n } else if (err.response.status === 400) { \n Alert.error(err.response.data.Message);\n } else if (err.response.status === 401) {\n go.suspendAccount(email);\n } else {\n Alert.error(\"An unexpected error has occurred\")\n }\n return false\n //TODO RESPONSE CODES\n }\n })\n return false;\n }\n \n @action.bound\n async getPinCodeEnabled(onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getPinCodeEnabledAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.pinCodeEnabled = data;\n if (data) {\n onSuccess();\n } else {\n go.home();\n }\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(\"Unexpected error has occured. Please try again later\");\n }\n })\n\n }\n\n @action.bound\n async sendAcknowledgement(type: number, onSuccess: () => void) {\n this.loadingAcknowledgement = true;\n await generalRequest.bind(this) ({\n api: sendAcknowledgementAPI(type),\n afterLoaded: () => {\n this.loadingAcknowledgement = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loadingAcknowledgement = false;\n Alert.error(err.response);\n }\n })\n }\n\n @action.bound\n async logout(onSuccess?: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: logoutAPI,\n afterLoaded: () => {\n this.loading = false;\n window.localStorage.removeItem('token');\n if (onSuccess) {\n onSuccess();\n }\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n\n @action.bound\n async getSignUpInvitationDetails(token: string, email: string, onFail: () => void) {\n this.loading = true;\n this.signUpInvitationToken = token;\n if (email) {\n this.signUpInvitationEmail = email;\n }\n await generalRequest.bind(this) ({\n api: getSignUpInvitationDetailsAPI(token),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.signUpInvitationDetails = data;\n this.signUpInvitationSuccess = true;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n onFail();\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async registerWithSignUpToken(data: IRegisterWithSignUpToken, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: registerWithSignUpTokenAPI(data),\n afterLoaded: () => {\n this.loading = false;\n Alert.success(\"Registration Complete\");\n onSuccess();\n },\n afterFailed: (e: any) => {\n this.loading = false;\n Alert.error(e.response.data.Message);\n }\n })\n }\n\n @action.bound\n async editProfile(data: any) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: editProfileAPI(data),\n afterLoaded: () => {\n this.loading = false;\n Alert.success(\"Changes saved successfully\");\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n\n @action.bound\n async getRecoveryMethods() {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getRecoveryMethodsAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.recoveryMethods = data;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async getVerificationCodeSentToRecoveryMethod(isMobile: boolean, method: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getVerificationCodeSentToRecoveryMethodAPI(isMobile, method),\n afterLoaded: (data: any) => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async postVerificationCodeSentToRecoveryMethod(code: string, isMobile: boolean, method: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: postVerificationCodeSentToRecoveryMethodAPI(code, isMobile, method),\n afterLoaded: (data: any) => {\n this.loading = false\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n\n @action.bound\n async getRecoveryEmailSentToSuspendedAccount(email: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getRecoveryEmailSentToSuspendedAccountAPI(email),\n afterLoaded: (data: any) => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n\n @action.bound\n async getRecoverSuspendedAccountVerificationCode(token: string, isMobile: boolean, target: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getRecoverSuspendedAccountVerificationCodeAPI(token, isMobile, target),\n afterLoaded: (data: any) => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async getRecoveryMethodsWithToken(token: string) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: getRecoveryMethodsForSuspendedAccountAPI(token),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.recoveryMethods = data;\n\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n \n @action.bound\n async postRecoverAccountCheckActivationCode(token: string, code: string, isMobile: boolean, method: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: postRecoverAccountCheckActivationCodeAPI(token, code, isMobile, method),\n afterLoaded: (data: any) => {\n this.loading = false\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async postRecoverAccountChangePassword(token: string, newPassword: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: postRecoverAccountChangePasswordAPI(token, newPassword),\n afterLoaded: (data: any) => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async postRecoverAccountChangePin(token: string, newPin: string, onSuccess: () => void, goBack: () => void) {\n this.loading = true;\n await generalRequest.bind(this) ({\n api: postRecoverAccountChangePinAPI(token, newPin),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.successChecker = true;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n goBack();\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async postRecoverAccount(token: string, onSuccess: () => void) {\n this.loading = true;\n this.successChecker = false;\n await generalRequest.bind(this) ({\n api: postRecoverAccountAPI(token),\n afterLoaded: (data: any) => {\n this.loading = false; \n Alert.success(\"Successfully recovered your account! Please log in with your new credentials\");\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n}","import { request, HTTP } from '../../../libs/newHttp';\nimport { IPractice } from './practiceStore.type';\n\nexport const getAllPracticesAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/practice/all`,\n });\n\nexport const getUserPracticesAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/practice`,\n });\n\nexport const getPracticeDetailsAPI = ({orgID} : {orgID: string}) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/organisation/${orgID}`\n })\nexport const linkPracticeAPI = (PracticeId: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/practice`,\n data: { PracticeId }\n })\n\nexport const unlinkPracticeAPI = (transferablePractice: IPractice) => () => \n request({\n method: HTTP.DELETE,\n url: `consumer/practice`,\n data: transferablePractice\n })","import { observable, action, makeAutoObservable } from 'mobx';\nimport { IAllPractices, IUserPractices, IDetailedPractice, IPractice } from './practiceStore.type';\nimport { generalRequest, LOADING_STATUS, LoadingStatusType } from '../../../libs/newHttp';\nimport { getAllPracticesAPI, unlinkPracticeAPI, getUserPracticesAPI, getPracticeDetailsAPI, linkPracticeAPI } from './practiceStore.api';\nimport alert from 'libs/Alert';\n\nexport class PracticeStore {\n constructor(){\n makeAutoObservable(this);\n }\n @observable allPracticesLoadingStatus = LOADING_STATUS.INITIAL;\n @observable practiceDetailsLoadingStatus = LOADING_STATUS.INITIAL;\n @observable refreshList = false;\n @observable loading = false;\n @observable receivedAllPractices = false;\n @observable errorText = \"\";\n @observable noOfLinkedPractices: number = 0;\n @observable receivedSelectedPractice = false;\n @observable practices: IAllPractices = {\n Practices: []\n }\n @observable userPractices: IUserPractices = {\n Practices: []\n }\n @observable selectedPractice: IDetailedPractice = {\n Id: \"00000000-0000-0000-0000-000000000000\",\n PracticeId: \"00000000-0000-0000-0000-000000000000\",\n Name: \"\",\n Address: \"\",\n Description: \"\",\n Doctors: [\n {\n PmsUserId: \"00000000-0000-0000-0000-000000000000\",\n Type: \"\",\n Name: \"\",\n Picture: \"\",\n UrlName: \"\",\n ShowServiceQuestionnaire: false\n }\n ],\n OpeningHours: {},\n Phone: \"\",\n Email: \"\",\n Fax: \"\",\n UrlName: \"\",\n Specialties: [],\n Language: [],\n Pictures: [],\n IsOnline: false,\n MaxDays: 0,\n HourNote: \"\",\n CancellationNote: \"\",\n AllowsOnlineBooking: false,\n AllowsBookingBy: 1,\n AllowsOnlineScripts: false,\n AllowsScriptsBy: 1,\n ModuleVisibility: [],\n }\n\n @action.bound\n async getUserPractices(onSuccess?: (userPractices: []) => void) {\n this.loading = true;\n this.refreshList = false;\n await generalRequest.bind(this)({\n api: getUserPracticesAPI,\n afterFailed: (err: any) => {\n this.loading = false;\n this.errorText = err.response.data.Message;\n },\n afterLoaded: (data: any) => {\n this.loading = false;\n this.userPractices.Practices = data;\n this.noOfLinkedPractices = data.length;\n if (onSuccess) onSuccess(data);\n }\n })\n }\n\n @action.bound\n async getPracticeDetails(orgID: string, onSuccess?: (practice: IDetailedPractice) => void) {\n //if (this.isLoaded(this.practiceDetailsLoadingStatus)) return;\n this.loading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'practiceDetailsLoadingStatus',\n api: getPracticeDetailsAPI({ \n orgID: orgID \n }),\n dataPropertyName: 'selectedPractice',\n afterFailed: (err: any) => {\n this.errorText = err.response.data.Message;\n this.loading = false\n },\n afterLoaded: (data: any) => {\n this.loading = false;\n this.selectedPractice = data;\n this.receivedSelectedPractice = true;\n if (onSuccess) {\n onSuccess(data);\n }\n }\n })\n }\n\n @action.bound\n async getAllPractices(onSuccess?: (allPractices: []) => void) {\n if (this.isLoaded(this.allPracticesLoadingStatus)) return;\n this.loading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'allPracticesLoadingStatus',\n api: getAllPracticesAPI,\n dataPropertyName: 'practices',\n afterFailed: (err: any) => {\n this.receivedAllPractices = false;\n this.loading = false;\n this.errorText = err.response.data.Message;\n },\n afterLoaded: (data: any) => {\n this.receivedAllPractices = true;\n this.loading = false;\n this.practices.Practices = data;\n if (onSuccess) onSuccess(data);\n }\n })\n }\n\n private isLoaded(status: LoadingStatusType) {\n return status === LOADING_STATUS.LOADED;\n }\n\n @action.bound\n async linkPractice(PracticeId: string, onSuccess: () => void) {\n this.loading = true;\n this.refreshList = false;\n await generalRequest.bind(this)({\n api: linkPracticeAPI(PracticeId),\n afterLoaded: (data) => {\n this.loading = false;\n this.refreshList = true;\n alert.success(data);\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n this.refreshList = false;\n alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async unlinkPractice(PracticeId: IPractice, onSuccess?: () => void) {\n this.loading = true;\n this.refreshList = false;\n await generalRequest.bind(this)({\n api: unlinkPracticeAPI(PracticeId),\n afterLoaded: (data) => {\n this.loading = false;\n this.refreshList = true;\n alert.success(data);\n if (onSuccess) {\n onSuccess();\n }\n },\n afterFailed: (err: any) => {\n this.loading = false;\n this.refreshList = false;\n alert.error(err.response.data.Message);\n }\n })\n }\n}","import { request, HTTP } from '../../../libs/newHttp';\n\ninterface ISettings {\n OrganisationId: string;\n AllowAccessMyHealthRecords: boolean;\n AllowAccessMyDoctorNotes: boolean;\n AllowAccessMyDependantHealthRecords: boolean;\n AllowShareMyHealthDataWithPractices: boolean;\n AllowAccessAndStoreMedications: boolean;\n}\n\nexport const setPinAPI = (pinCode: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/security/pin-code`,\n data: pinCode\n })\n\nexport const uploadPhotoAPI = (pic: string, changeProfilePhoto: boolean) => () => \n request({\n method: HTTP.POST,\n url: `consumer/identity/selfie`,\n data: { Selfie: pic.split(',')[1], changeProfilePhoto }\n })\n\nexport const sendPrivacySettingsAPI = (settings: ISettings) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/privacy/privacy-settings`,\n data: settings\n })\n\nexport const submitIdentityRequestAPI = (orgId: string) => () => \n request({\n method: HTTP.POST,\n url: `consumer/identity/practice-verification-request/${orgId}`\n })","import { observable, action, makeAutoObservable } from 'mobx';\n\nimport { IPrivacySettings } from './identityStore.type';\nimport { setPinAPI, uploadPhotoAPI, sendPrivacySettingsAPI, submitIdentityRequestAPI } from './identityStore.api';\nimport { generalRequest } from 'libs/newHttp';\nimport Alert from 'libs/Alert';\nimport { IPractice } from '../practicesStore/practiceStore.type';\nimport { IIdentityRequestsStatus } from '../accountStore/accountStore.type';\n\nexport class IdentityStore {\n constructor(){\n makeAutoObservable(this);\n }\n @observable submitSuccess: boolean = false;\n @observable loadingSubmit: boolean = false;\n @observable showError: boolean = false;\n @observable selectedPracticeName: string = \"\";\n @observable selectedPracticeOrgId: string = \"\";\n @observable selectedAddress: string = \"\";\n @observable selectedPhone: string = \"\";\n @observable selectedPic: string = \"\" ;\n @observable selectedPictures: string[] = [\"\"];\n @observable pin: string = \"\";\n @observable photo: string = \"\"//File = new File([], \"avatar\");\n @observable makeProfilePhoto: boolean = true;\n @observable loading = false;\n @observable settings: IPrivacySettings[] = [\n {\n name: \"Health Notes\",\n value: true\n },\n {\n name: \"Doctor Notes\",\n value: true\n },\n {\n name: \"Dependants\",\n value: true\n },\n {\n name: \"Health Data\",\n value: true\n },\n {\n name: \"Medications\",\n value: true\n }\n ]\n\n @action.bound\n addPin(pin: string) {\n this.pin = pin;\n }\n @action.bound\n setError(showError: boolean) {\n this.showError = showError;\n }\n @action.bound\n addPhoto(photo: any) {\n this.photo = photo; //this.dataURLtoFile(photo);\n }\n @action.bound\n toggleProfilePhoto() {\n this.makeProfilePhoto = !this.makeProfilePhoto;\n }\n @action.bound\n toggleSetting(id: number) {\n this.settings[id].value = !this.settings[id].value;\n }\n @action.bound\n setPractice(id: string, name: string, address: string, phone: string, pic: string, pictures?: string[]) {\n this.selectedPracticeName = name;\n this.selectedPracticeOrgId = id;\n this.selectedAddress = address;\n this.selectedPhone = phone;\n this.selectedPic = pic;\n if (pictures) this.selectedPictures = pictures;\n }\n\n @action.bound\n setPracticeOrgId(id: string) {\n this.selectedPracticeOrgId = id;\n }\n \n @action.bound\n setPracticeSingle(practice: IIdentityRequestsStatus) {\n this.selectedPracticeName = practice.OrganisationName;\n this.selectedPracticeOrgId = practice.OrganisationId;\n this.selectedAddress = practice.Address;\n this.selectedPhone = practice.Phone;\n this.selectedPic = practice.PictureUrl;\n if (practice.Pictures) this.selectedPictures = practice.Pictures;\n }\n @action.bound\n submitIdentity() {\n this.submitSuccess = true;\n }\n @action.bound\n resetIdentityStore() {\n this.submitSuccess = false;\n this.showError = false;\n this.selectedPracticeName = \"\";\n this.selectedPracticeOrgId = \"\";\n this.selectedAddress = \"\";\n this.selectedPhone = \"\";\n this.selectedPic = \"\";\n this.pin = \"\";\n this.makeProfilePhoto = true;\n this.showError = false;\n }\n @action.bound\n async setPin(goNext: () => void) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: setPinAPI(this.pin),\n afterLoaded: () => {\n this.loading = false;\n goNext();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err);\n }\n })\n }\n @action.bound\n async uploadPhoto(goNext: () => void) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: uploadPhotoAPI(this.photo, this.makeProfilePhoto),\n afterLoaded: () => {\n this.loading = false;\n goNext();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(\"An unexpected error has occured, please try again later\");\n }\n })\n }\n\n @action.bound\n async sendPrivacySettings(onSuccess: () => void, onFailure: () => void, orgId: string) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: sendPrivacySettingsAPI({\n OrganisationId: orgId,\n AllowAccessMyHealthRecords: this.settings[0].value,\n AllowAccessMyDoctorNotes: this.settings[1].value,\n AllowAccessMyDependantHealthRecords: this.settings[2].value,\n AllowShareMyHealthDataWithPractices: this.settings[3].value,\n AllowAccessAndStoreMedications: this.settings[4].value,\n }),\n afterLoaded: () => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: () => {\n this.loading = false;\n onFailure();\n }\n })\n }\n\n @action.bound\n async submitIdentityRequest(onSuccess: () => void, onFailure: () => void) {\n this.loadingSubmit = true;\n this.submitSuccess = false;\n await generalRequest.bind(this)({\n api: submitIdentityRequestAPI(this.selectedPracticeOrgId),\n afterLoaded: () => {\n this.loadingSubmit = false;\n this.submitSuccess = true;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loadingSubmit = false;\n this.submitSuccess = false;\n Alert.error(err);\n onFailure();\n }\n })\n }\n}","import { observable, action, makeAutoObservable } from 'mobx';\n\nexport class SessionStore {\n constructor(){\n makeAutoObservable(this);\n }\n @observable inFlow: boolean = false;\n @observable leavingPage: boolean = false;\n @observable leavingFunc: (() => void | undefined) = () => { console.log(\"test\") }\n\n @action setInFlow(val: boolean) {\n this.inFlow = val;\n }\n @action setLeavingPage(val: boolean) {\n this.leavingPage = val;\n }\n @action setLeavingFunc(func: () => void) {\n this.leavingFunc = func;\n }\n}","import { request, HTTP } from 'libs/newHttp';\n\nexport const getSecuritySettingsAPI = () => \n request({\n method: HTTP.GET,\n url: `consumer/security/security-settings`\n });\n\nexport const editSecuritySettingsAPI = (settings: any) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/security/control-security-settings`,\n data: settings,\n })","import { observable, action, makeAutoObservable } from 'mobx';\n\nimport { ISecuritySettings, ISecurityToggleSettings } from './securityStore.type';\nimport { getSecuritySettingsAPI, editSecuritySettingsAPI } from './securityStore.api';\nimport { generalRequest } from 'libs/newHttp';\nimport Alert from 'libs/Alert';\n\nexport class SecurityStore {\n constructor(){\n makeAutoObservable(this);\n }\n @observable securitySettings: ISecuritySettings = {\n SecurityPinCodeSetup: false,\n SignIn2StepsVerification: false,\n NotifyUserAfter5FailedAttempts: false,\n SuspendAccountAfter10FailedAttempts: false,\n Email: \"\",\n EmailVerified: false,\n MobileNumber: \"\",\n MobileVerified: false,\n RecoveryEmail: \"\"\n }\n @observable loading: boolean = false;\n\n @action.bound\n async getSecuritySettings() {\n this.loading = true;\n\n await generalRequest.bind(this)({\n api: getSecuritySettingsAPI,\n afterFailed: () => {\n this.loading = false;\n Alert.error(\"An unexpected error has occured, please try again later\");\n },\n afterLoaded: (data: ISecuritySettings) => {\n this.loading = false;\n this.securitySettings = data;\n }\n })\n }\n\n @action.bound\n async editSecuritySettings(settings: ISecurityToggleSettings, noAlert?: boolean) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: editSecuritySettingsAPI(settings),\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n },\n afterLoaded: () => {\n this.loading = false;\n //this.securitySettings = settings;\n this.getSecuritySettings();\n if (!noAlert) {\n Alert.success(\"Changes Saved\");\n }\n }\n })\n }\n}","import { HTTP, request } from \"libs/newHttp\";\n\nexport const getReasonsAPI = (orgId: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/appointment/${orgId}/reasons-for-visit-2`\n })\n\nexport const getConsultMethodsAPI = (orgId: string) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/appointment/${orgId}/consultation-method`\n })\n\nexport const getServiceQuestionnaireAPI = (orgId: string, serviceId: number) => () =>\n request({\n method: HTTP.GET,\n url: `consumer/appointment/${orgId}/service-questionnaire/${serviceId}`\n })","import alert from \"libs/Alert\";\nimport { generalRequest } from \"libs/newHttp\";\nimport { Appointment } from \"pages/mobile/domain/Appointment/types\";\nimport { action, makeAutoObservable, observable } from \"mobx\";\nimport { getConsultMethodsAPI, getReasonsAPI, getServiceQuestionnaireAPI } from \"./appointmentStore.api\";\nimport { IReasonForVisit, IServiceQuestionnaire } from './appointmentStore.type';\n\n\nexport class AppointmentStore {\n constructor(){\n makeAutoObservable(this);\n }\n \n @observable loading = false;\n @observable receivedReasons = false;\n @observable receivedServiceQuestionnaire = false;\n @observable consultMethod = null;\n @observable selectedService = null;\n @observable selectedSymptoms = null;\n @observable Reasons: IReasonForVisit = {\n Services: [],\n Symptoms: [],\n ShowingWarning: false,\n WarningMessage: [],\n AllowContinueWithCode2: false,\n Code2WarningMessage: [],\n NoSymptomDefaultByPassCode: 0\n }\n @observable ServiceQuestionnaire: IServiceQuestionnaire = {\n ServiceId: 0,\n ServiceName: '',\n Description: [],\n QuestionnaireQuestions: [],\n }\n @observable patientNotes = '';\n @observable selectedConsultMethod = '';\n\n @action.bound\n getSelectedService() {\n return this.selectedService;\n }\n\n @action.bound\n setSelectedService(service: any) {\n this.selectedService = service;\n }\n\n @action.bound\n getSelectedSymptoms() {\n return this.selectedSymptoms;\n }\n\n @action.bound\n setSelectedSymptoms(symptoms: any) {\n this.selectedSymptoms = symptoms;\n }\n\n @action.bound\n getPatientNotes() {\n return this.patientNotes;\n }\n\n @action.bound\n setPatientNotes(notes: string) {\n this.patientNotes = notes;\n }\n\n @action.bound\n getSelectedConsultMethod() {\n return this.selectedConsultMethod;\n }\n\n @action.bound\n setSelectedConsultMethod(consultMethod: string) {\n this.selectedConsultMethod = consultMethod;\n }\n\n @action.bound\n async getReasons(orgId: string) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: getReasonsAPI(orgId),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.receivedReasons = true;\n this.Reasons = data;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n alert.error(err.response.data.Message);\n this.receivedReasons = false;\n }\n })\n }\n\n @action.bound\n async getConsultMethods(orgId: string) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: getConsultMethodsAPI(orgId),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.consultMethod = data;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n alert.error(err.response.data.Message);\n }\n })\n }\n\n @observable bookedAppointments: Appointment[] = []\n @observable pastAppointments: Appointment[] = []\n\n @action.bound\n getAppointment(id: string, status: 'booked' | 'past') {\n switch(status){\n case 'booked':\n return this.bookedAppointments.find(a => a.Id === id);\n case 'past':\n return this.pastAppointments.find(a => a.Id === id);\n default:\n throw new Error('No data found');\n }\n }\n @action.bound\n loadAppointments(data: Appointment[], status: 'booked' | 'past'){\n if(!data) {\n return;\n }\n switch(status){\n case 'booked':\n this.bookedAppointments = [...data];\n break;\n case 'past':\n this.pastAppointments = [...data];\n break;\n default:\n throw new Error('No data found');\n }\n }\n\n @action.bound\n async getServiceQuestionnaire(orgId: string, serviceId: number) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: getServiceQuestionnaireAPI(orgId, serviceId),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.receivedServiceQuestionnaire = true;\n this.ServiceQuestionnaire = data;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n alert.error(err.response.data.Message);\n this.receivedServiceQuestionnaire = false;\n }\n })\n }\n}","import { HTTP, request } from \"libs/newHttp\";\n\nexport const getDependantsAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/dependant`,\n })","import { generalRequest } from \"libs/newHttp\";\nimport { action, makeAutoObservable, observable } from \"mobx\";\nimport { getDependantsAPI } from \"./dependantsStore.api\";\nimport { IDependant } from \"./dependantsStore.type\";\nimport alert from \"libs/Alert\";\n\nexport class DependantsStore {\n constructor(){\n makeAutoObservable(this);\n }\n @observable loading: boolean = false;\n @observable dependants: IDependant[] = [];\n\n @action.bound\n async getDependants() {\n this.loading = true;\n await generalRequest.bind(this)({\n api: getDependantsAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.dependants = data;\n }, afterFailed: (err: any) => {\n this.loading = false;\n alert.error(err.response.data.Message);\n }\n })\n }\n}","import { request, HTTP } from '../../../libs/newHttp';\n\nexport const getNearbyPharmaciesDefaultAPI = ({orgId} : {orgId: string} ) => () => \nrequest({\n method: HTTP.GET,\n url: `consumer/prescription/pharmacy_by_location?organisationId=${orgId}`,\n})\n\nexport const get10NearbyPharmaciesAPI = ({lat, long, orgId} : {lat: string, long: string, orgId: string} ) => () => \nrequest({\n method: HTTP.GET,\n url: `consumer/prescription/pharmacy_by_location?lat=${lat}&long=${long}&organisationId=${orgId}`,\n})\n\nexport const searchNearbyPharmacies = (name: string) => () => \nrequest({\n method: HTTP.GET,\n url: `consumer/prescription/pharmacy_by_name?name=${name}`,\n})\n\nexport const deletePrescription = (prescriptionId: string) => () => \nrequest({\n method: HTTP.DELETE,\n url: `consumer/prescription/${prescriptionId}`,\n})","import { generalRequest } from 'libs/newHttp';\nimport { observable, action, makeAutoObservable } from 'mobx';\nimport { IAllPharmacies, IData, IPharmacy } from \"./vScriptStore.type\";\nimport { getNearbyPharmaciesDefaultAPI, get10NearbyPharmaciesAPI, searchNearbyPharmacies, deletePrescription } from './vScriptStore.api';\n\nexport class vScriptStore {\n constructor(){\n makeAutoObservable(this);\n }\n @observable pharmacies: IAllPharmacies = {\n Pharmacies: []\n };\n\n @observable selectedPharmacy: IPharmacy = {\n Id: \"string\",\n Name: \"string\",\n Phone: \"string\",\n Fax: \"string\",\n Address: \"string\",\n Latitude: 0,\n Longitude: 0,\n PhotoUrl: \"string\",\n DistanceInMeters: -1,\n Featured: false,\n OpeningHours: {}\n };\n\n @observable data: IData = {\n Lat: 0,\n Long: 0,\n Pharmacies: []\n }\n\n @action.bound\n async getNearbyPharmaciesDefault(orgId: string, onSuccess?: (data: any) => void) {\n await generalRequest.bind(this) ({\n loadingStatusName: 'nearbyPharmaciesLoadingStatus',\n api: getNearbyPharmaciesDefaultAPI({\n orgId: orgId\n }),\n dataPropertyName: 'nearbyPharmacies',\n afterLoaded: (data: any) => {\n this.data.Pharmacies = data.Pharmacies;\n this.data.Lat = data.Lat;\n this.data.Long = data.Long;\n if (onSuccess) {\n onSuccess(data);\n }\n }\n })\n }\n\n @action.bound\n async get10NearbyPharmacies(lat: string, long: string, orgId: string, onSuccess?: (data: any) => void) {\n await generalRequest.bind(this) ({\n loadingStatusName: 'nearbyPharmaciesLoadingStatus',\n api: get10NearbyPharmaciesAPI({\n lat: lat,\n long: long,\n orgId: orgId\n }),\n dataPropertyName: 'pharmacies',\n afterLoaded: (data: any) => {\n this.data.Pharmacies = data.Pharmacies;\n if (onSuccess) {\n onSuccess(data);\n }\n }\n })\n }\n\n @action.bound\n async searchNearbyPharmacies(name: string, onSuccess?: (pharmacies: []) => void) {\n await generalRequest.bind(this) ({\n loadingStatusName: 'nearbyPharmaciesLoadingStatus',\n api: searchNearbyPharmacies(\n name\n ),\n dataPropertyName: 'pharmacies',\n afterLoaded: (data: any) => {\n this.pharmacies.Pharmacies = data.Pharmacies;\n if (onSuccess) {\n onSuccess(data);\n }\n }\n })\n }\n\n @action.bound\n async deletePrescription(prescriptionId: string) {\n await generalRequest.bind(this)({\n loadingStatusName: 'deletePrescriptionLoadingStatus',\n api: deletePrescription(\n prescriptionId\n ),\n dataPropertyName: 'deletePrescription',\n });\n }\n}","import { observable, action, makeAutoObservable } from 'mobx';\nimport { IPatient } from './patientStore.type';\n\nexport class PatientStore {\n constructor(){\n makeAutoObservable(this);\n }\n\n @observable patient: IPatient = {\n Id: '00000000-0000-0000-0000-000000000000',\n }\n\n @observable canExpressInterest: boolean = false;\n\n @action.bound\n async setPatientCanExpressInterest(patientId: string, canExpressInterest: boolean) {\n this.patient.Id = patientId;\n this.canExpressInterest = canExpressInterest;\n }\n}","import React, { PropsWithChildren } from 'react';\nimport { PaymentStore } from './paymentStore/paymentStore';\nimport { useLocalStore } from 'mobx-react-lite';\nimport { MyHealthStore } from './myHealthStore/myHealthStore';\nimport { AccountStore } from './accountStore/accountStore';\nimport { PracticeStore } from './practicesStore/practiceStore';\nimport { IdentityStore } from './identityStore/identityStore';\nimport { SessionStore } from './sessionStore/sessionStore';\nimport { SecurityStore } from './securityStore/securityStore';\nimport { AppointmentStore } from './appointmentStore/appointmentStore';\nimport { DependantsStore } from './dependantsStore/dependantsStore';\nimport { vScriptStore } from './vScriptStore/vScriptStore';\nimport { PatientStore } from './patientStore/patientStore';\nimport CareCircleStore from '../carecircle';\n\nimport {configure} from 'mobx';\nconfigure({\n enforceActions: 'never'\n});\n\nexport const STORE = {\n payments: new PaymentStore(),\n myHealth: new MyHealthStore(),\n account: new AccountStore(),\n practices: new PracticeStore(),\n identity: new IdentityStore(),\n session: new SessionStore(),\n security: new SecurityStore(),\n appointment: new AppointmentStore(),\n dependants: new DependantsStore(),\n vScript: new vScriptStore(),\n patient: new PatientStore(),\n careCircle: CareCircleStore\n};\n\ntype StoreType = typeof STORE;\n\nconst createStore = () => STORE;\n\n// @ts-ignore\nconst mobxStoreContext = React.createContext(null);\n\nexport const MobxStoreProvider = ({ children }: PropsWithChildren<{}>) => {\n const store = useLocalStore(createStore);\n \n return (\n \n {children}\n \n );\n};\n\nconst throwErrorIfNoStore = (store: StoreType) => {\n if (!store) {\n throw new Error('useStore must be used within a StoreProvider.');\n }\n};\n\nexport const useStore = () => {\n const store: StoreType = React.useContext(mobxStoreContext);\n throwErrorIfNoStore(store);\n return store;\n};\n\nexport const usePaymentsStore = () => useStore().payments;\n\nexport const useMyHealthStore = () => useStore().myHealth;\n\nexport const useAccountStore = () => useStore().account;\n\nexport const usePracticesStore = () => useStore().practices;\n\nexport const useSecurityStore = () => useStore().security;\n\nexport const useIdentityStore = () => useStore().identity;\n\nexport const useSessionStore = () => useStore().session;\n\nexport const useAppointmentStore = () => useStore().appointment;\n\nexport const useDependantsStore = () => useStore().dependants;\n\nexport const useVScriptStore = () => useStore().vScript;\n\nexport const usePatientStore = () => useStore().patient;\n\nexport const useCareCircle = () => useStore().careCircle;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { connect } from 'react-redux';\nimport { Redirect, Route } from 'react-router-dom';\nimport { createBrowserHistory } from 'history';\nimport { getLoginPageURL } from '../libs/utils';\nimport { getToken } from '../libs/newHttp';\nimport { isDesktop } from '../config';\n\nconst history = createBrowserHistory();\nconst { push, replace, goBack, go, block } = history;\n\nconst RouteWrapper = ({ tokenExists, ...props }) => {\n let isTokenInMemory = tokenExists;\n\n if (!isTokenInMemory) {\n // if token is in local storage\n // we set it to true\n // because will dispatch loginSuccess with\n // token from localStorage to re-create auth info in Redux\n if (getToken()) {\n isTokenInMemory = true;\n }\n }\n\n if (props.computedMatch.path.includes(\"identity\")) {\n if (!isDesktop()) { \n return \n } else { return }\n /*\n return props.canGoIdentity ?\n \n :\n \n } else {\n return \n }*/\n }\n\n return isTokenInMemory ? (\n \n ) : (\n (window.location = getLoginPageURL())\n );\n};\n\nRouteWrapper.propTypes = {\n tokenExists: PropTypes.bool.isRequired,\n};\n\nconst ProtectedRoute = connect(state => ({\n tokenExists: state.loginReducer.token !== null,\n canGoIdentity: state.verifyReducer.id !== null,\n}))(RouteWrapper);\n\nconst goBackPages = noOfPages => go(noOfPages);\n\nexport { ProtectedRoute, push, replace, goBack, goBackPages, history };\n","import * as CSS from 'csstype';\nimport { ThemeType } from '../../styles';\nimport { styled } from '../../styles/styled';\nimport { getMediaQuery } from '../../styles/utils';\nimport { is } from '../../utils/utils';\nimport { Responsive, SingleOrArray } from './BaseBox.type';\n\ntype ThemeSpaceIndex = keyof ThemeType['space'];\n\nconst getGapStyle = (\n direction: SingleOrArray,\n gap: Responsive,\n theme: ThemeType,\n) => {\n const styles = [];\n\n const themeValue = theme.space[gap as ThemeSpaceIndex];\n const isInTheme = typeof themeValue === 'number';\n const space = isInTheme ? `${themeValue}px` : `${gap}px`;\n\n if (direction === 'column') {\n styles.push(`height: ${space};` as never);\n } else if (direction === 'row') {\n styles.push(`width: ${space};` as never);\n } else if (Array.isArray(direction) && direction.length > 0) {\n direction.forEach((dir, index) => {\n if (!is.notExist(theme.breakpoints[index])) {\n const breakPoint = theme.breakpoints[index];\n const toAdd = getGapStyle(dir, gap, theme);\n const responsiveCSS = getMediaQuery(breakPoint, toAdd);\n\n styles.push(`\n ${index === 0 ? toAdd : ''};\n ${responsiveCSS};\n ` as never);\n }\n });\n }\n\n return styles;\n};\n\n// eslint-disable-next-line\nexport const StyledGapBox = styled.div<{\n direction: SingleOrArray;\n gap: Responsive;\n}>`\n flex: 0 0 auto;\n ${({ gap, direction, theme }) => {\n if (gap) {\n return getGapStyle(direction, gap, theme);\n }\n }};\n`;\n","import React, { Children, PropsWithChildren } from 'react';\nimport { getRefProp, is } from '../../utils/utils';\nimport { BaseBox } from './BaseBox';\nimport { IBaseBoxWithTakeRef, PlainObject, Responsive } from './BaseBox.type';\nimport { StyledGapBox } from './StyledGapBox';\n\ninterface IA11Y {\n a11yTitle?: string;\n}\n\nexport interface IBox extends IBaseBoxWithTakeRef, IA11Y {\n fill?: 'horizontal' | 'vertical' | true | false;\n gap?: Responsive;\n}\n\nexport const Box = ({\n fill,\n gap,\n direction,\n a11yTitle,\n children,\n takeRef,\n ...rest\n}: PropsWithChildren) => {\n let fillProps: PlainObject = {};\n if (fill === true) {\n fillProps = {\n height: '100%',\n width: '100%',\n };\n } else if (fill === 'horizontal') {\n fillProps.width = '100%';\n } else if (fill === 'vertical') {\n fillProps.height = '100%';\n }\n\n let ariaTitle: PlainObject = {};\n if (a11yTitle) {\n ariaTitle = {\n 'aria-label': a11yTitle,\n };\n }\n\n let cursor: PlainObject = {};\n if (is.function(rest.onClick)) {\n cursor = {\n cursor: 'pointer',\n role: 'button',\n\n // After we figure out how to remove that ugly outline onFocus\n // We can enable the following accessible props\n // tabIndex: '0',\n // onKeyDown: rest.onClick,\n };\n }\n\n const contents: React.ReactNode[] = [];\n if (gap) {\n let firstIndex: number;\n Children.forEach(children, (child, index) => {\n if (child) {\n if (firstIndex === undefined) {\n firstIndex = index;\n } else {\n contents.push(\n ,\n );\n }\n }\n contents.push(child);\n });\n }\n\n return (\n \n {contents.length > 0 ? contents : children}\n \n );\n};\n","export interface INoDefaultHoverCSS {\n noDefaultHoverCSS?: boolean;\n}\n\nexport const baseNonFlatButtonCSS = `\n overflow: hidden;\n`;\n\nexport const getBaseButtonCSS = (\n hasNoDefaultHover: boolean | undefined,\n noTextCenter?: boolean,\n) => `\n display: inline-block;\n appearance: none;\n text-decoration: none;\n outline: 0;\n\n ${noTextCenter ? '' : `text-align: center;`}\n line-height: inherit;\n white-space: nowrap;\n\n cursor: pointer;\n\n ${\n hasNoDefaultHover\n ? ''\n : `&:hover {\n opacity: 0.9;\n transform: scale(1.03);\n }\n\n &:active {\n transform: scale(1) translate(1px, 1px);\n }`\n }\n \n`;\n","import React, { PropsWithChildren } from 'react';\nimport {\n css as cssFunc,\n DEFAULT_FONT_SIZE,\n DEFAULT_SPACE,\n getSafeCss,\n} from '../../styles';\nimport { getRefProp } from '../../utils/utils';\nimport { BaseBox } from '../Box/BaseBox';\nimport { IBaseBoxWithTakeRef } from '../Box/BaseBox.type';\nimport {\n baseNonFlatButtonCSS,\n getBaseButtonCSS,\n INoDefaultHoverCSS,\n} from './shared';\n\nexport interface IButton extends IBaseBoxWithTakeRef, INoDefaultHoverCSS {\n disabled?: boolean;\n}\n\nexport const Button = ({\n noDefaultHoverCSS,\n children,\n css,\n disabled,\n takeRef,\n ...rest\n}: PropsWithChildren) => {\n const cssToAdd = cssFunc`\n ${getBaseButtonCSS(noDefaultHoverCSS || disabled)};\n ${baseNonFlatButtonCSS};\n \n ${\n // @ts-ignore\n getSafeCss(css)\n };\n `;\n\n return (\n \n {children}\n \n );\n};\n","import React, { PropsWithChildren } from 'react';\nimport { DEFAULT_SPACE, getSafeCss, css as cssFunc } from '../../styles';\nimport { getRefProp } from '../../utils/utils';\nimport { BaseBox } from '../Box/BaseBox';\nimport { IBaseBoxWithTakeRef } from '../Box/BaseBox.type';\nimport { IButton } from './Button';\nimport { getBaseButtonCSS, INoDefaultHoverCSS } from './shared';\n\nexport interface IFlatButton\n extends IBaseBoxWithTakeRef,\n INoDefaultHoverCSS,\n IButton {\n noTextCenter?: boolean;\n}\n\nexport const FlatButton = ({\n noDefaultHoverCSS,\n children,\n css,\n takeRef,\n noTextCenter,\n ...rest\n}: PropsWithChildren) => (\n \n {children}\n \n);\n","import React from 'react';\nimport { css as styledCSS, DEFAULT_SPACE, getSafeCss } from '../../styles';\nimport { getRefProp } from '../../utils/utils';\nimport { BaseBox } from '../Box/BaseBox';\nimport { IBaseBoxWithTakeRef, Responsive } from '../Box/BaseBox.type';\n\ntype InputTypes =\n | 'button'\n | 'checkbox'\n | 'color'\n | 'date'\n | 'datetime-local'\n | 'email'\n | 'file'\n | 'hidden'\n | 'image'\n | 'month'\n | 'number'\n | 'password'\n | 'radio'\n | 'range'\n | 'reset'\n | 'search'\n | 'submit'\n | 'tel'\n | 'text'\n | 'time'\n | 'url'\n | 'week';\n\nexport interface IInput extends IBaseBoxWithTakeRef {\n type?: InputTypes;\n disabled?: boolean;\n width?: Responsive;\n height?: Responsive;\n value?: string | number;\n placeholder?: string | number;\n name?: string;\n pattern?:string;\n inputmode?:string;\n\n onChange?: React.ReactEventHandler;\n onBlur?: React.ReactEventHandler;\n}\n\nexport const Input: React.FC = ({ css, takeRef, ...rest }) => (\n \n);\n","import React from 'react';\nimport { IInput, Input } from './Input';\n\nexport interface ITextarea extends IInput {\n maxlength?: string;\n}\n\nexport const Textarea: React.FC = props => (\n \n);\n","import React, { PropsWithChildren } from 'react';\n\nimport { ThemeType } from '../../styles';\nimport {\n fontSpecs,\n IFontSpecType,\n} from '../../styles/theme/constants/fontSpecs';\nimport { getRefProp, is } from '../../utils/utils';\nimport { BaseBox } from '../Box/BaseBox';\nimport { IBaseBoxWithTakeRef, Responsive } from '../Box/BaseBox.type';\n\nexport interface IText extends IBaseBoxWithTakeRef {\n noDefaultLineHeight?: boolean;\n\n // so, it works like a handy shortcut.\n // if you set a size which can be indexed in theme.fontSizes\n // then fontSize, lineHeight and maxWidth(for Paragraph only) will all be set\n // if it's some random value, like '7px', it will be passed to final result directly\n // but won't include lineHeight and maxWidth, b/c we can't locate theme in theme.fontSpecs\n // it can be set as an array for responsive style which is the same behavior from styled-system\n size?: Responsive;\n}\n\ninterface IFontSpecStyle {\n fontSize?: Responsive;\n lineHeight?: Responsive;\n maxWidth?: Responsive;\n}\n\nfunction addStyleToResult(\n tempStyle: IFontSpecStyle,\n result: IFontSpecStyle,\n key: keyof IFontSpecStyle,\n) {\n if (is.notExist(result[key])) {\n result[key] = [];\n }\n\n // @ts-ignore\n // tslint:disable-next-line: no-unsafe-any\n result[key].push(tempStyle[key]);\n}\n\nexport const getFontSpecStyle = (\n noDefaultLineHeight: boolean,\n isMaxWidthIncluded: boolean = false,\n size?: Responsive,\n): IFontSpecStyle => {\n if (is.notExist(size)) {\n return {};\n }\n\n let result: IFontSpecStyle = {};\n\n if (Array.isArray(size)) {\n if (size.length === 1) {\n result = getFontSpecStyle(\n noDefaultLineHeight,\n isMaxWidthIncluded,\n size[0],\n );\n } else {\n const temp: IFontSpecStyle[] = [];\n\n size.forEach(s => {\n const style = getFontSpecStyle(\n noDefaultLineHeight,\n isMaxWidthIncluded,\n s,\n );\n temp.push(style);\n });\n\n temp.forEach(tempStyle => {\n addStyleToResult(tempStyle, result, 'fontSize');\n\n if (!noDefaultLineHeight) {\n addStyleToResult(tempStyle, result, 'lineHeight');\n }\n\n if (isMaxWidthIncluded) {\n addStyleToResult(tempStyle, result, 'maxWidth');\n }\n });\n }\n } else {\n const fontSpecInTheme = fontSpecs[\n size as keyof ThemeType['fontSpecs']\n ] as IFontSpecType;\n const isInTheme = typeof fontSpecInTheme === 'object';\n\n if (isInTheme) {\n result = {\n fontSize: `${fontSpecInTheme.size}px`,\n lineHeight: fontSpecInTheme.lineHeight,\n };\n\n if (isMaxWidthIncluded) {\n result.maxWidth = `${fontSpecInTheme.maxWidth}px`;\n }\n } else {\n result = {\n fontSize: `${size}px`,\n };\n }\n }\n\n if (result === {}) {\n result = { fontSize: size };\n }\n\n return result;\n};\n\nexport const Text = ({\n size,\n noDefaultLineHeight = false,\n takeRef,\n ...rest\n}: PropsWithChildren) => (\n \n);\n","import React, { PropsWithChildren } from 'react';\nimport { getFontSpecStyle, IText, Text } from '../';\n\n// It uses under the hook, the main differences are it will\n// add max-width to enforce a best practice in terms of readability.\n// how many words a line.\nexport const Paragraph = ({\n size,\n noDefaultLineHeight = false,\n ...rest\n}: PropsWithChildren) => (\n \n);\n","import Alert from 'react-s-alert';\n\nconst error = (message, config = {}) => {\n Alert.error(message, { ...config, customFields: { error: true } });\n}\nconst warning = (message, config = {}) =>\n Alert.warning(message, { ...config, customFields: { warning: true } });\nconst info = (message, config = {}) =>\n Alert.info(message, { ...config, customFields: { info: true } });\nconst success = (message, config = {}) =>\n Alert.success(message, { ...config, customFields: { success: true } });\nconst close = () => Alert.closeAll();\n\nconst alert = {\n error,\n warning,\n info,\n success,\n close,\n};\n\nexport default alert;\n","import React, { PropsWithChildren } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Image } from 'components/vensaComponents';\nimport { useDispatch } from 'react-redux';\nimport closeSVG from 'svgs/blueCross.svg';\nimport { actions } from '../MainShell/actions/actions';\n\nexport const WhiteNotificationWrapper = observer(({ children }: PropsWithChildren<{}>) => {\n const dispatch = useDispatch();\n\n return (\n \n \n {\n e.stopPropagation();\n e.preventDefault();\n dispatch(actions.setWhiteBoxNotification({ isOpen: false }));\n }}\n />\n \n {children}
\n \n );\n});\n","import React, { PropsWithChildren } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Image, Paragraph, FlatButton } from 'components/vensaComponents';\nimport privacyPopUpLogoSVG from 'svgs/privacyPopUpLogo.svg';\nimport { WhiteNotificationWrapper } from './WhiteNotificationWrapper';\nimport { actions } from '../MainShell/actions/actions';\nimport { useDispatch } from 'react-redux';\n\ntype Props = {\n svg?: string;\n paragraph: string;\n height?: string;\n snooze?: boolean;\n}\n\nexport const BaseWhiteNotification = observer(({ \n svg = privacyPopUpLogoSVG, \n paragraph, children, \n height = \"70px\", \n snooze = false \n}: PropsWithChildren) => {\n const dispatch = useDispatch();\n\n return (\n \n \n \n \n {paragraph}\n \n {children}\n \n {snooze &&\n {\n e.stopPropagation();\n e.preventDefault();\n dispatch(actions.setWhiteBoxNotification({ isOpen: false }));\n }}\n >\n Snooze\n \n }\n \n \n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { FlatButton } from 'components/vensaComponents';\nimport { useLocation } from 'react-router';\nimport { BaseWhiteNotification } from './BaseWhiteNotification';\nimport { isDesktop } from 'config';\n\nexport const PHRPrivacyCard: React.FC = observer(() => {\n const { pathname } = useLocation();\n\n if (!isDesktop() && !pathname.startsWith('/home')) return null;\n\n return (\n \n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { useLocation } from 'react-router';\nimport { BaseWhiteNotification } from './BaseWhiteNotification';\n\nexport const PaymentPrivacyCard: React.FC = observer(() => {\n const { pathname } = useLocation();\n\n if (!pathname.startsWith('/payment')) return null;\n\n return (\n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { useLocation } from 'react-router';\nimport { BaseWhiteNotification } from './BaseWhiteNotification';\n\nexport const IdentityPrivacyCard: React.FC = observer(() => {\n const { pathname } = useLocation();\n\n if (!pathname.startsWith('/identity')) return null;\n\n return (\n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport posed from 'react-pose';\nimport { useSelector } from 'react-redux';\nimport { whiteBoxNotificationSettings } from '../MainShell/selectors';\nimport { PHRPrivacyCard } from './PHRPrivacyCard';\nimport { PaymentPrivacyCard } from './PaymentPrivacyCard';\nimport { IdentityPrivacyCard } from './IdentityPrivacyCard';\nimport { PDHViewResult } from './PDHViewResult';\nimport { PDHProvideFeedback } from './PDHProvideFeedback';\nimport { PrescriptionPrivacyCard } from './PrescriptionPrivacyCard';\n\nconst NOTIFICATIONS = [PHRPrivacyCard, PaymentPrivacyCard, IdentityPrivacyCard, PDHViewResult, PDHProvideFeedback, PrescriptionPrivacyCard];\n\nconst UpInChild = posed.div({\n hide: {\n y: '-100%',\n applyAtEnd: { display: 'none' },\n },\n show: {\n y: '0%',\n applyAtStart: { display: 'block' },\n },\n});\n\nexport const WhiteNotificationBox: React.FC = observer(() => {\n const { isOpen, index } = useSelector(whiteBoxNotificationSettings);\n const NotificationComponent = NOTIFICATIONS[index];\n\n return (\n \n \n \n );\n});\n","import React, { useEffect, useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Button } from 'components/vensaComponents';\nimport { useLocation } from 'react-router';\nimport { BaseWhiteNotification } from './BaseWhiteNotification';\nimport { actions } from 'components/UIContainer/MobileUI/MainShell/actions/actions';\n\nimport labs from 'images/labs.png';\nimport { go } from 'routes';\nimport { useDispatch } from 'react-redux';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\nexport const PDHViewResult: React.FC = observer(() => {\n const { pathname } = useLocation();\n const store = useMyHealthStore();\n const [clicked, setClicked] = useState(false);\n\n const { labResultsTab: { feedback }, getLabResult, labResultNotification, currentLabPage } = useMyHealthStore();\n const dispatch = useDispatch();\n\n if (!pathname.startsWith('/home')) return null;\n if (feedback.length === 0) return null; \n\n useEffect(() => {\n if (currentLabPage !== undefined) {\n if (clicked) {\n go.goLabResult(currentLabPage.Id, labResultNotification.PatientId, labResultNotification.LabWhenReceived);\n setClicked(false);\n }\n } \n })\n\n return (\n \n {\n setClicked(true);\n dispatch((\n actions.setWhiteBoxNotification({\n isOpen: false,\n })\n ))\n getLabResult(labResultNotification.PatientId, labResultNotification.LabWhenReceived, () => {\n if (currentLabPage === undefined) { return; }\n go.goLabResult(currentLabPage.Id, labResultNotification.PatientId, labResultNotification.LabWhenReceived);\n })\n }} \n >\n View results\n \n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Button } from 'components/vensaComponents';\nimport { useLocation } from 'react-router';\nimport { BaseWhiteNotification } from './BaseWhiteNotification';\nimport { actions } from 'components/UIContainer/MobileUI/MainShell/actions/actions';\n\nimport labs from 'images/labs.png';\nimport { go } from 'routes';\nimport { useDispatch } from 'react-redux';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\nexport const PDHProvideFeedback: React.FC = observer(() => {\n const { pathname } = useLocation();\n const dispatch = useDispatch();\n\n if (!pathname.startsWith('/lab-result')) return null;\n\n return (\n \n {\n dispatch((\n actions.setWhiteBoxNotification({\n isOpen: false,\n })\n ))\n go.labResultsFeedback();\n }} \n >\n Provide Feedback\n \n \n );\n});\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { useLocation } from 'react-router';\nimport { BaseWhiteNotification } from './BaseWhiteNotification';\n\nexport const PrescriptionPrivacyCard: React.FC = observer(() => {\n const { pathname } = useLocation();\n\n if (!pathname.startsWith('/request-script')) return null;\n\n return (\n \n );\n});\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { Transition } from 'react-pose';\n\nimport { goBack } from '../../../../routes/utils';\nimport styles from './desktopHeading.module.css';\nimport { WhiteNotificationBox } from '../../MobileUI/WhiteNotificationBox/WhiteNotificationBox';\n\n\nconst DesktopHeader = ({ heading, secondaryHeading, }) => (\n \n {secondaryHeading ? (\n {`${heading} /`} \n ) : (\n heading\n )}\n {secondaryHeading && (\n {secondaryHeading} \n )}\n
\n);\n\nDesktopHeader.propTypes = {\n heading: PropTypes.string.isRequired,\n secondaryHeading: PropTypes.string,\n};\n\nexport default DesktopHeader;\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport { Box, Text, Image } from 'components/vensaComponents';\nimport styled from 'styled-components';\nimport Iframe from 'react-iframe';\nimport { useMyHealthStore } from 'store/mobx/mobx';\nimport blueCircleButtonSVG from 'svgs/blueCircleButton.svg';\nimport posed from 'react-pose';\n\nexport const DownInChild = styled(\n posed.div({\n hide: {\n y: '+100%',\n transition: { duration: 500 },\n applyAtEnd: { display: 'none' },\n },\n show: {\n y: '0%',\n transition: { duration: 500 },\n applyAtStart: { display: 'flex' },\n },\n }),\n)`\n z-index: 9999;\n position: relative;\n top: 0px;\n left: 0;\n right: 0;\n border-radius: 4px;\n background: white;\n display: flex;\n flex-direction: column;\n height: calc(100vh - 105px);\n`;\n\nconst StyledIFrame = styled(Iframe)`\n width: 100vw;\n height: 100%;\n border-radius: 4px;\n`;\n\nconst Overlay = styled.div`\n position: absolute;\n z-index: 10;\n padding-top: 105px;\n top: 0px;\n -webkit-transition: background-color 0.3s linear;\n -ms-transition: background-color 0.3s linear;\n transition: background-color 0.3s linear;\n`\n\nexport const HealthNavigatorIFrame: React.FC = observer(() => {\n const myHealthStore = useMyHealthStore();\n const { keywords, isOpen, link } = myHealthStore.healthNavigator;\n\n const escapedKeywords = escape(keywords);\n const url = keywords === '' ? link : `https://healthify.nz/search/results#stq=${escapedKeywords}&stp=1`;\n\n return (\n myHealthStore.setHealthNavigator({ isOpen: false })}>\n \n \n {\n myHealthStore.setHealthNavigator({ isOpen: false });\n }}\n />\n \n {url}\n \n \n \n \n \n );\n});\n","import React, { useEffect } from 'react';\nimport classnames from 'classnames';\nimport { CSSTransitionGroup } from 'react-transition-group';\nimport { Transition } from 'react-pose';\nimport { connect } from 'react-redux';\nimport LoadingSpinner from '../loadingSpinner';\nimport Header from './MobileUI/header';\nimport DesktopHeader from './DesktopUI/DesktopHeading';\nimport { isDesktop } from '../../config';\nimport styles from './pageContainer.module.css';\nimport { HealthNavigatorIFrame } from '../../MyHealthPage/components/HealthNavigatorIframe';\nimport { WhiteNotificationBox } from './MobileUI/WhiteNotificationBox/WhiteNotificationBox';\nimport { isWhiteBoxNotificationOpen } from './MobileUI/MainShell/selectors';\nimport { useAccountStore } from 'store/mobx/mobx';\nimport SideBar from 'components/shared/desktop/SideBar';\n\nconst getStyle = (isWhite, headerHeight, isWhiteBoxNotificationOpen) => {\n const result = isWhite\n ? { background: 'white', marginTop: headerHeight, display: \"flex\" }\n : {\n marginTop: headerHeight, \n display:\"flex\",\n flexDirection: \"row\", \n height: isWhiteBoxNotificationOpen ? \"auto\" : \"100%\",\n };\n\n if (isWhiteBoxNotificationOpen) {\n result.marginTop = `calc( -${headerHeight} + 34px )`;\n } \n \n return result;\n};\n\nconst UIContainer = (props) =>\n {\n const {\n isWhite,\n children,\n heading,\n secondaryHeading,\n isFetching,\n containerClass,\n headerClass,\n goBackFn,\n blueSpinner,\n headerHeight,\n showMenu,\n showHelp,\n showCancel,\n hideArrow,\n saveFn,\n subheading,\n showCross,\n card,\n whiteBg,\n isWhiteBoxNotificationOpen,\n removePadding,\n phrText,\n noAfter,\n showCrossRight,\n navKey\n } = props;\n\n const desktop = isDesktop();\n const store = useAccountStore();\n \n useEffect(() => {\n if (localStorage.getItem(\"token\")) {\n store.getProfile();\n }\n }, [desktop]);\n\n return (\n \n {!isDesktop() &&\n \n \n \n }\n {desktop && heading && (\n \n )}\n {!desktop && (\n \n )}\n {desktop && }\n \n {isDesktop() &&\n \n \n \n }\n {!desktop && card}\n {children}\n \n \n \n \n \n );\n }\n\nexport default connect(state => ({\n isWhiteBoxNotificationOpen: isWhiteBoxNotificationOpen(state),\n}))(UIContainer);\n\nexport { styles };\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport { CSSTransitionGroup } from 'react-transition-group';\n\nimport styles from './loadingSpinner.module.css';\nimport { ReactComponent as LoadingIcon } from '../../svgs/spinner.svg';\n\nconst Loading = ({\n isFetching,\n children,\n containerClassName,\n iconClassName,\n overlayClassName,\n contentRef,\n component,\n style,\n}) => {\n return (\n \n {isFetching ? (\n \n \n
\n ) : null}\n {children}\n \n )\n};\n\nLoading.propTypes = {\n isFetching: PropTypes.bool,\n children: PropTypes.node,\n containerClassName: PropTypes.string,\n iconClassName: PropTypes.string,\n component: PropTypes.string,\n style: PropTypes.objectOf(PropTypes.string),\n contentRef: PropTypes.func,\n overlayClassName: PropTypes.string,\n};\nexport default Loading;\nexport { styles };\n","const actionTypes = {\n login: 'LOGIN',\n loginOrRegister: 'LOGIN_OR_REGISTER',\n loginSuccess: 'LOGIN_SUCCESS',\n loginError: 'LOGIN_ERROR',\n logout: 'LOGOUT',\n logoutSuccess: 'LOGOUT_SUCCESS',\n logoutFailure: 'LOGOUT_FAILURE',\n clearLoginError: 'CLEAR_LOGIN_ERROR',\n refresh: 'REFRESH_TOKEN',\n loginPin: 'LOGIN_PIN',\n clearAll: 'CLEAR_ALL'\n};\n\nconst login = (email, password) => ({\n type: actionTypes.login,\n payload: { email, password },\n});\n\nconst loginOrRegister = (email, password, sessionId) => ({\n type: actionTypes.loginOrRegister,\n payload: { email, password, sessionId },\n});\n\nconst loginPin = (pin, success, fail) => ({\n type: actionTypes.loginPin,\n payload: { pin, success, fail },\n});\n\nconst clearAll = () => ({\n type: actionTypes.clearAll,\n})\n\nconst loginSuccess = (token, expiryTime, email, refreshToken, ConsumerUrl, isNewlyRegistered) => ({\n type: actionTypes.loginSuccess,\n payload: {\n token,\n expiryTime,\n email,\n refreshToken,\n ConsumerUrl,\n isNewlyRegistered,\n },\n});\n\nconst refresh = (refreshToken, email, page) => ({\n type: actionTypes.refresh,\n payload: {\n refreshToken,\n email,\n page,\n },\n});\n\nconst loginError = err => ({\n type: actionTypes.loginError,\n payload: { err },\n error: true,\n});\n\nconst clearLoginError = () => ({\n type: actionTypes.clearLoginError,\n});\n\nconst logout = (token, config) => ({\n type: actionTypes.logout,\n payload: {\n token,\n config,\n },\n});\nconst logoutSuccess = () => ({\n type: actionTypes.logoutSuccess,\n});\n\nconst logoutFailure = err => ({\n type: actionTypes.logoutFailure,\n payload: { err },\n error: true,\n});\n\nconst actions = {\n login,\n loginOrRegister,\n loginSuccess,\n loginError,\n logout,\n logoutSuccess,\n logoutFailure,\n clearLoginError,\n refresh,\n loginPin,\n clearAll\n};\nexport { actionTypes, actions };\n","const actionTypes = {\n setInfo: 'SCRIPT_SET_INFO',\n repeatScript: 'SCRIPT_FILL_REPEATED_INFO',\n ableToRequest: 'CHECK_ABLE_TO_REQUEST',\n isAbleToRequest: 'IS_ABLE_TO_REQUEST',\n notAbleToRequest: 'NOT_ABLE_TO_REQUEST',\n clearAbleToRequest: 'CLEAR_ABLE_TO_REQUEST',\n clearScriptInfo: 'CLEAR_SCRIPT_REQUEST',\n getMedicationList: 'GET_MEDICATION_LIST',\n getMedicationListSuccess: 'GET_MEDICATION_LIST_SUCCESS',\n getMedicationListFailure: 'GET_MEDICATION_LIST_FAILURE',\n resetMedicationSelection: 'RESET_MEDICATION_SELECTION',\n};\n\nconst actions = {\n getMedicationList: (orgId, consumerId, token, scriptId) => ({\n type: actionTypes.getMedicationList,\n payload: {\n orgId,\n consumerId,\n token,\n scriptId\n }\n }),\n getMedicationListSuccess: (data) => ({\n type: actionTypes.getMedicationListSuccess,\n payload: {\n data\n }\n }),\n getMedicationListFailure: (err) => ({\n type: actionTypes.getMedicationListFailure,\n payload: {\n err\n }\n }),\n setInfo: (id, value) => ({\n type: actionTypes.setInfo,\n payload: {\n id,\n value,\n },\n }),\n repeatScript: details => ({\n type: actionTypes.repeatScript,\n payload: {\n details,\n },\n }),\n ableToRequest: (orgId, userId, token, dependantId) => ({\n type: actionTypes.ableToRequest,\n payload: {\n orgId,\n userId,\n token,\n dependantId,\n },\n }),\n isAbleToRequest: () => ({\n type: actionTypes.isAbleToRequest,\n }),\n notAbleToRequest: error => ({\n type: actionTypes.notAbleToRequest,\n payload: {\n error,\n },\n }),\n clearAbleToRequest: () => ({\n type: actionTypes.clearAbleToRequest,\n }),\n clearScriptInfo: () => ({\n type: actionTypes.clearScriptInfo,\n }),\n};\n\nexport { actions, actionTypes };\n","import { go } from \"routes\";\n\nexport \tconst capitalise = (str) => {\n return str ? str[0].toUpperCase() + str.slice(1).toLowerCase() : \"\"\n}\n\nexport const replaceMiddle = (string, n) => {\n var rest = string.length - n;\n return string.slice(0, Math.ceil(rest / 2)) + '*'.repeat(n) + string.slice(-Math.floor(rest / 2));\n};\n\nexport const checkAuth = (err) => {\n if (err.response.status === 401) {\n window.localStorage.removeItem('token');\n go.login();\n }\n return;\n}\n\nexport const isValidPassword = (password) => ( \n password.length >= 8 && //is long enough\n /[a-z]/.test(password) && // has lowercase letters\n /[A-Z]/.test(password) && // has uppercase letters\n /\\d/.test(password) // has digits\n)\nexport const getShort = (text, charLimit) => {\n if (text.length >= charLimit) {\n return text.substring(0, charLimit - 1) + \"...\"\n }\n return text;\n}\nexport const formatName = (name) => {\n return name.charAt(0).toUpperCase() + name.toLowerCase().slice(1);\n}","const actionTypes = {\n getConfirmedAppointments: 'GET_CONFIRMED_APPOINTMENTS',\n getConfirmedAppointmentsSuccess: 'GET_CONFIRMED_APPOINTMENTS_SUCCESS',\n getConfirmedAppointmentsFailure: 'GET_CONFIRMED_APPOINTMENTS_FAILURE',\n clearConfirmedAppointments: 'CLEAR_CONFIRMED_APPOINTMENTS',\n getPastAppointments: 'GET_PAST_APPOINTMENTS',\n getPastAppointmentsSuccess: 'GET_PAST_APPOINTMENTS_SUCCESS',\n getPastAppointmentsFailure: 'GET_PAST_APPOINTMENTS_FAILURE',\n fetchApptDetails: 'APPOINTMENT_FETCH_DETAILS',\n fetchApptDetailsSuccess: 'APPOINTMENT_FETCH_DETAILS_SUCCESS',\n fetchApptDetailsFailure: 'APPOINTMENT_FETCH_DETAILS_FAILURE',\n clearPastAppointments: 'CLEAR_PAST_APPOINTMENTS',\n changeCtaFn: 'CHANGE_CTA_FN_APPOINTMENTS',\n changeCtaIcon: 'CHANGE_CTA_ICON_APPOINTMENTS',\n toggleCta: 'TOGGLE_CTA_APPOINTMENTS',\n clearCta: 'CLEAR_CTA_APPOINTMENTS',\n};\n\nconst actions = {\n getConfirmedAppointments: id => ({\n type: actionTypes.getConfirmedAppointments,\n payload: {\n id,\n },\n }),\n getConfirmedAppointmentsSuccess: appointment => ({\n type: actionTypes.getConfirmedAppointmentsSuccess,\n payload: {\n appointment,\n },\n }),\n getConfirmedAppointmentsFailure: error => ({\n type: actionTypes.getConfirmedAppointmentsFailure,\n payload: {\n error,\n },\n }),\n clearConfirmedAppointments: () => ({\n type: actionTypes.clearConfirmedAppointments,\n }),\n getPastAppointments: id => ({\n type: actionTypes.getPastAppointments,\n payload: {\n id,\n },\n }),\n getPastAppointmentsSuccess: appointment => ({\n type: actionTypes.getPastAppointmentsSuccess,\n payload: {\n appointment,\n },\n }),\n getPastAppointmentsFailure: error => ({\n type: actionTypes.getPastAppointmentsFailure,\n payload: {\n error,\n },\n }),\n clearPastAppointments: () => ({\n type: actionTypes.clearPastAppointments,\n }),\n fetchApptDetails: (id, token) => ({\n type: actionTypes.fetchApptDetails,\n payload: {\n id,\n token,\n },\n }),\n fetchApptDetailsSuccess: details => ({\n type: actionTypes.fetchApptDetailsSuccess,\n payload: {\n details,\n },\n }),\n fetchApptDetailsFailure: error => ({\n type: actionTypes.fetchApptDetailsFailure,\n payload: {\n error,\n },\n }),\n changeCtaFn: ctaFn => ({\n type: actionTypes.changeCtaFn,\n payload: {\n ctaFn,\n },\n }),\n changeCtaIcon: ctaIcon => ({\n type: actionTypes.changeCtaIcon,\n payload: {\n ctaIcon,\n },\n }),\n toggleCta: () => ({\n type: actionTypes.toggleCta,\n }),\n clearCta: () => ({\n type: actionTypes.clearCta,\n }),\n};\nexport { actionTypes, actions };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"termsandConditions_container__1Soma\",\"headerContainer\":\"termsandConditions_headerContainer__1BKU3\",\"header\":\"termsandConditions_header__3yf0R\",\"hr\":\"termsandConditions_hr__2wu9c\",\"textContainer\":\"termsandConditions_textContainer__2cPnU\",\"ie\":\"termsandConditions_ie__1nb31\",\"heading\":\"termsandConditions_heading__nQkVo\",\"minor\":\"termsandConditions_minor__29iZr\",\"closeIcon\":\"termsandConditions_closeIcon__1QO1H\",\"button\":\"termsandConditions_button__2y2EG\"};","const actionTypes = {\n fetchDependants: 'FETCH_DEPENDANTS',\n fetchDependantsSuccess: 'FETCH_DEPENDANTS_SUCCESS',\n fetchDependantsFailure: 'FETCH_DEPENDANTS_FAILURE',\n addDependant: 'ADD_DEPENDANT',\n addDependantSuccess: 'ADD_DEPENDANT_SUCCESS',\n addDependantFailure: 'ADD_DEPENDANT_FAILURE',\n removeDependant: 'REMOVE_DEPENDANT',\n removeDependantSuccess: 'REMOVE_DEPENDANT_SUCCESS',\n removeDependantFailure: 'REMOVE_DEPENDANT_FAILURE',\n removeDependantReset: 'REMOVE_DEPENDANT_RESET',\n addAvatar: 'ADD_AVATAR_DEPENDANT',\n addAvatarSuccess: 'ADD_AVATAR_DEPENDANT_SUCCESS',\n addAvatarFailure: 'ADD_AVATAR_DEPENDANT_FAILURE',\n preloadDependantData: 'PRELOAD_DEPENDANT_DATA',\n clearDependantData: 'CLEAR_DEPENDANT_DATA',\n};\n\nconst actions = {\n fetchDependants: id => ({\n type: actionTypes.fetchDependants,\n payload: {\n id,\n },\n }),\n fetchDependantsSuccess: dependants => ({\n type: actionTypes.fetchDependantsSuccess,\n payload: {\n dependants,\n },\n }),\n fetchDependantsFailure: error => ({\n type: actionTypes.fetchDependantsFailure,\n payload: {\n error,\n },\n }),\n addDependant: (dependant, token, isNew) => ({\n type: actionTypes.addDependant,\n payload: {\n dependant,\n token,\n isNew,\n },\n }),\n addDependantSuccess: () => ({\n type: actionTypes.addDependantSuccess,\n }),\n addDependantFailure: error => ({\n type: actionTypes.addDependantFailure,\n payload: {\n error,\n },\n }),\n removeDependant: (id, token) => ({\n type: actionTypes.removeDependant,\n payload: {\n id,\n token,\n },\n }),\n removeDependantSuccess: (id) => ({\n type: actionTypes.removeDependantSuccess,\n payload: {\n id\n }\n }),\n removeDependantFailure: error => ({\n type: actionTypes.removeDependantFailure,\n payload: {\n error,\n },\n }),\n removeDependantReset: () => ({\n type: actionTypes.removeDependantReset\n }),\n addAvatar: (file, token, id) => ({\n type: actionTypes.addAvatar,\n payload: {\n file,\n token,\n id,\n },\n }),\n addAvatarSuccess: (url) => ({\n type: actionTypes.addAvatarSuccess,\n payload: {\n url\n }\n }),\n addAvatarFailure: error => ({\n type: actionTypes.addAvatarFailure,\n payload: {\n error,\n },\n }),\n preloadDependantData: dependant => ({\n type: actionTypes.preloadDependantData,\n payload: {\n dependant,\n },\n }),\n clearDependantData: () => ({\n type: actionTypes.clearDependantData,\n }),\n};\nexport { actionTypes, actions };\n","const actionTypes = {\n addCustomIcon: 'ADD_CUSTOM_ICON_HEADER',\n clearCustomIcon: 'CLEAR_CUSTOM_ICON_HEADER',\n overrideBackArrow: 'OVERRIDE_BACK_ARROW',\n clearBackArrow: 'CLEAR_BACK_ARROW',\n setSideHeaderItem: 'HEADER_SET_SIDE_HEADER_ITEM',\n};\n\nconst addCustomIcon = customIcon => ({\n type: actionTypes.addCustomIcon,\n payload: {\n customIcon,\n },\n});\nconst clearCustomIcon = () => ({\n type: actionTypes.clearCustomIcon,\n});\nconst overrideBackArrow = backArrowFn => ({\n type: actionTypes.overrideBackArrow,\n payload: {\n backArrowFn,\n },\n});\nconst clearBackArrow = () => ({\n type: actionTypes.clearBackArrow,\n});\nconst setSideHeaderItem = item => ({\n type: actionTypes.setSideHeaderItem,\n payload: {\n item,\n },\n});\n\nconst actions = {\n addCustomIcon,\n clearCustomIcon,\n overrideBackArrow,\n clearBackArrow,\n setSideHeaderItem,\n};\n\nexport { actionTypes, actions };\n","const actionTypes = {\n submitScriptRequest: 'SUBMIT_SCRIPT_REQUEST',\n submitScriptRequestSuccess: 'SUBMIT_SCRIPT_REQUEST_SUCCESS',\n submitScriptRequestFailure: 'SUBMIT_SCRIPT_REQUEST_FAILURE',\n checkForConfirmation: 'CHECK_FOR_SCRIPT_REQUEST_CONFIRMATION',\n confirmationSuccess: 'SCRIPT_REQUEST_CONFIRMATION_SUCCESS',\n confirmationFailure: 'SCRIPT_REQUEST_CONFIRMATION_FAILURE',\n confirmationPollStart: 'SCRIPT_REQUEST_CONFIRMATION_POLL_START',\n confirmationPollContinue: 'SCRIPT_REQUEST_CONFIRMATION_POLL_CONTINUE',\n confirmationPollEnd: 'SCRIPT_REQUEST_CONFIRMATION_POLL_END',\n clearConfirmationState: 'CLEAR_SCRIPT_REQUEST_CONFIRMATION_STATE',\n setIsBusy: 'SCRIPT_REQUEST_SET_IS_BUSY',\n setWillRetry: 'SCRIPT_REQUEST_WILL_RETRY',\n retryRequest: 'RETRY_SCRIPT_REQUEST',\n retrySuccess: 'RETRY_SCRIPT_REQUEST_SUCCESS',\n retryFailure: 'RETRY_SCRIPT_REQUEST_FAILURE',\n retryLimitReached: 'RETRY_LIMIT_REACHED',\n clearRetryState: 'RETRY_SCRIPT_CLEAR_STATE',\n};\nconst setIsBusy = () => ({\n type: actionTypes.setIsBusy,\n});\nconst submitScriptRequest = (details, token) => ({\n type: actionTypes.submitScriptRequest,\n payload: { details, token },\n});\nconst submitScriptRequestSuccess = scriptId => ({\n type: actionTypes.submitScriptRequestSuccess,\n payload: { scriptId },\n});\nconst submitScriptRequestFailure = error => ({\n type: actionTypes.submitScriptRequestFailure,\n error: true,\n payload: { error },\n});\nconst checkForConfirmation = (scriptId, token) => ({\n type: actionTypes.checkForConfirmation,\n payload: { scriptId, token },\n});\nconst confirmationSuccess = () => ({\n type: actionTypes.confirmationSuccess,\n});\nconst confirmationFailure = () => ({\n type: actionTypes.confirmationFailure,\n error: true,\n});\nconst confirmationPollStart = (scriptId, token) => ({\n type: actionTypes.confirmationPollStart,\n payload: { scriptId, token },\n});\nconst confirmationPollContinue = () => ({\n type: actionTypes.confirmationPollContinue,\n});\nconst confirmationPollEnd = (confirmed, error) => ({\n type: actionTypes.confirmationPollEnd,\n // eslint-disable-next-line no-unneeded-ternary\n error: error ? true : false,\n payload: { confirmed, error },\n});\nconst clearConfirmationState = () => ({\n type: actionTypes.clearConfirmationState,\n});\nconst setWillRetry = () => ({\n type: actionTypes.setWillRetry,\n});\nconst retryRequest = (details, token) => ({\n type: actionTypes.retryRequest,\n payload: { details, token },\n});\nconst retrySuccess = () => ({\n type: actionTypes.retrySuccess,\n});\nconst retryFailure = () => ({\n type: actionTypes.retryFailure,\n});\nconst retryLimitReached = () => ({\n type: actionTypes.retryLimitReached,\n});\nconst clearRetryState = () => ({\n type: actionTypes.clearRetryState,\n});\n\nconst actions = {\n setIsBusy,\n submitScriptRequest,\n submitScriptRequestSuccess,\n submitScriptRequestFailure,\n checkForConfirmation,\n confirmationSuccess,\n confirmationFailure,\n confirmationPollStart,\n confirmationPollContinue,\n confirmationPollEnd,\n clearConfirmationState,\n setWillRetry,\n retryRequest,\n retrySuccess,\n retryFailure,\n retryLimitReached,\n clearRetryState,\n};\n\nexport { actionTypes, actions };\n","const actionTypes = {\n addFeelings: 'ADD_FEELINGS',\n getReasons: 'GET_REASONS',\n getReasonsSuccess: 'GET_REASONS_SUCCESS',\n getReasonsFailure: 'GET_REASONS_FAILURE',\n getConsultMethods: 'GET_CONSULT_METHODS',\n getConsultMethodsSuccess: 'GET_CONSULT_METHODS_SUCCESS',\n getConsultMethodsFailure: 'GET_CONSULT_METHODS_FAILURE',\n skipFeelings: 'SKIP_FEELINGS',\n clearFeelings: 'CLEAR_FEELINGS',\n postService: 'POST_SERVICE',\n postServiceSuccess: 'POST_SERVICE_SUCCESS',\n postServiceFailure: 'POST_SERVICE_FAILURE',\n updateSession: 'UPDATE_SESSION',\n updateSessionSuccess: 'UPDATE_SESSION_SUCCESS',\n updateSessionFailure: 'UPDATE_SESSION_FAILURE'\n};\n\nconst addFeelings = feelings => ({\n type: actionTypes.addFeelings,\n payload: { feelings },\n});\nconst getConsultMethods = id => ({\n type: actionTypes.getConsultMethods,\n payload: { id },\n});\n\nconst getConsultMethodsSuccess = methods => ({\n type: actionTypes.getConsultMethodsSuccess,\n payload: { methods },\n});\n\nconst getConsultMethodsFailure = error => ({\n type: actionTypes.getConsultMethodsFailure,\n payload: { error },\n error: true,\n});\n\nconst getReasons = id => ({\n type: actionTypes.getReasons,\n payload: { id },\n});\n\nconst getReasonsSuccess = reasons => ({\n type: actionTypes.getReasonsSuccess,\n payload: { reasons },\n});\n\nconst getReasonsFailure = error => ({\n type: actionTypes.getReasonsFailure,\n payload: { error },\n error: true,\n});\n\nconst postService = (service, sessionId, urlName) => ({\n type: actionTypes.postService,\n payload: { service, sessionId, urlName },\n});\n\nconst postServiceSuccess = session => ({\n type: actionTypes.postServiceSuccess,\n payload: { session },\n});\n\nconst postServiceFailure = error => ({\n type: actionTypes.postServiceFailure,\n payload: { error },\n error: true,\n});\nconst updateSession = (sessionId, consult, symptoms, note, service, urlName, answerIds) => ({\n type: actionTypes.updateSession,\n payload: { sessionId, consult, symptoms, note, service, urlName, answerIds },\n});\n\nconst updateSessionSuccess = session => ({\n type: actionTypes.postServiceSuccess,\n payload: { session },\n});\n\nconst updateSessionFailure = error => ({\n type: actionTypes.postServiceFailure,\n payload: { error },\n error: true,\n});\n\n\nconst skipFeelings = () => ({\n type: actionTypes.skipFeelings,\n});\n\nconst clearFeelings = () => ({\n type: actionTypes.clearFeelings,\n});\n\nconst actions = {\n addFeelings,\n getReasons,\n skipFeelings,\n clearFeelings,\n getReasonsFailure,\n getReasonsSuccess,\n getConsultMethods,\n getConsultMethodsFailure,\n getConsultMethodsSuccess,\n postService,\n postServiceSuccess,\n postServiceFailure,\n updateSession\n};\n\nexport { actions, actionTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"privacyPolicy_container__2sZ9z\",\"headerContainer\":\"privacyPolicy_headerContainer__1W74Z\",\"header\":\"privacyPolicy_header__3Jdzu\",\"hr\":\"privacyPolicy_hr__3VkRA\",\"textContainer\":\"privacyPolicy_textContainer__3kJjV\",\"ie\":\"privacyPolicy_ie__2j1tT\",\"heading\":\"privacyPolicy_heading__BG_6P\",\"minor\":\"privacyPolicy_minor__1jQJ2\",\"closeIcon\":\"privacyPolicy_closeIcon__wvarz\",\"button\":\"privacyPolicy_button__mr5KZ\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"cardText\":\"confirmRequest_cardText__2RDLB\",\"container\":\"confirmRequest_container__Vwti5\",\"pickUp\":\"confirmRequest_pickUp__2LpTQ\",\"subheading\":\"confirmRequest_subheading__2K0pU\",\"selectPayment\":\"confirmRequest_selectPayment__2HhIR\",\"selectPayLater\":\"confirmRequest_selectPayLater__1JfKv\",\"arrow\":\"confirmRequest_arrow__2Pnry\",\"icon\":\"confirmRequest_icon__18OdO\",\"cardNumber\":\"confirmRequest_cardNumber__2GbQO\",\"button\":\"confirmRequest_button__38JmA\",\"pricing\":\"confirmRequest_pricing__25K9T\",\"repeat\":\"confirmRequest_repeat__ulx50\",\"total\":\"confirmRequest_total__1_yAE\",\"spinner\":\"confirmRequest_spinner__mhOuA\",\"credit\":\"confirmRequest_credit__1PkfW\",\"header\":\"confirmRequest_header__1LWT1\",\"banner\":\"confirmRequest_banner__1M51X\",\"backArrow\":\"confirmRequest_backArrow__10j-E\",\"cancel\":\"confirmRequest_cancel__2HWxL\",\"avatar\":\"confirmRequest_avatar__2SZw-\",\"main\":\"confirmRequest_main__1iE_D\",\"secondary\":\"confirmRequest_secondary__fdkGd\",\"iconContainer\":\"confirmRequest_iconContainer__3vYST\",\"type\":\"confirmRequest_type__3jrQx\",\"typeButton\":\"confirmRequest_typeButton__3-DJx\",\"modalOverlay\":\"confirmRequest_modalOverlay__IHW6B\",\"modal\":\"confirmRequest_modal__3mpHq\",\"closeButton\":\"confirmRequest_closeButton__ZwCgd\",\"modalContent\":\"confirmRequest_modalContent__7-ClD\",\"modalHeart\":\"confirmRequest_modalHeart__1w8Yb\",\"modalHeader\":\"confirmRequest_modalHeader__3BJ6j\",\"modalBody\":\"confirmRequest_modalBody__GHe-O\",\"buttonBox\":\"confirmRequest_buttonBox__3-j0S\",\"learnIcon\":\"confirmRequest_learnIcon__aJTVV\",\"totalPrice\":\"confirmRequest_totalPrice__6NXDq\"};","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n\nimport { ReactComponent as Arrow } from '../../svgs/rightarrow2.svg';\nimport { ReactComponent as Spinner } from '../../svgs/spinner.svg';\nimport styles from './ctaButton.module.css';\n\nconst CtaButton = ({\n id,\n onClick,\n className,\n type,\n white,\n active,\n isProcessing,\n style,\n}) => (\n {}}\n style={style ? style : {}}\n >\n {isProcessing ? (\n \n ) : (\n \n )}\n \n);\n\nCtaButton.propTypes = {\n onClick: PropTypes.func,\n className: PropTypes.string,\n type: PropTypes.string,\n id: PropTypes.string,\n white: PropTypes.bool,\n isProcessing: PropTypes.bool,\n style: PropTypes.any,\n active: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),\n};\nexport default CtaButton;\n","const actionTypes = {\n getProfile: 'GET_PROFILE',\n getProfileSuccess: 'GET_PROFILE_SUCCESS',\n getProfileFailure: 'GET_PROFILE_FAILURE',\n clearProfile: 'CLEAR_PROFILE',\n changePhone: 'CHANGE_PROFILE_PHONE',\n userIsVerified: 'USER_IS_VERIFIED',\n profileUpdated: 'PROFILE_UPDATED',\n setFirstTime: 'PROFILE_SET_FIRST_TIME',\n setIsFromMyHealth: 'SET_IS_FROM_MY_HEALTH',\n};\n\nconst actions = {\n setIsFromMyHealth: value => ({\n type: actionTypes.setIsFromMyHealth,\n payload: value,\n }),\n getProfile: token => ({\n type: actionTypes.getProfile,\n payload: {\n token,\n },\n }),\n getProfileSuccess: profile => ({\n type: actionTypes.getProfileSuccess,\n payload: {\n profile,\n },\n }),\n getProfileFailure: err => ({\n type: actionTypes.getProfileFailure,\n error: true,\n payload: {\n err,\n },\n }),\n clearProfile: () => ({\n type: actionTypes.clearProfile,\n }),\n setFirstTime: firstTime => ({\n type: actionTypes.setFirstTime,\n payload: {\n firstTime,\n },\n }),\n changePhone: (mobile, updateSession = true) => ({\n type: actionTypes.changePhone,\n payload: {\n mobile,\n updateSession,\n },\n }),\n userIsVerified: mobile => ({\n type: actionTypes.userIsVerified,\n payload: {\n mobile,\n },\n }),\n profileUpdated: (FirstName, LastName, DateOfBirth, Mobile) => ({\n type: actionTypes.profileUpdated,\n payload: {\n FirstName,\n LastName,\n DateOfBirth,\n Mobile,\n },\n }),\n};\nexport { actionTypes, actions };\n","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgClose = function SvgClose(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"-6709 -5835 10.996 10.996\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_12940\",\n transform: \"translate(-7353 -6024.643)\"\n }, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"Rectangle_7076\",\n width: 1.55,\n height: 14,\n rx: 0.775,\n transform: \"translate(644 190.739) rotate(-45)\"\n }), /*#__PURE__*/React.createElement(\"rect\", {\n id: \"Rectangle_7077\",\n width: 1.55,\n height: 14,\n rx: 0.775,\n transform: \"translate(645.096 200.638) rotate(-135)\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgClose, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/close.e930af3b.svg\";\nexport { ForwardRef as ReactComponent };","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgPrivacyPopUpLogo = function SvgPrivacyPopUpLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 64.348,\n height: 77.68,\n viewBox: \"0 0 64.348 77.68\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_hands_430101\",\n transform: \"translate(-16.81 -5.694)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16716\",\n \"data-name\": \"Group 16716\",\n transform: \"translate(16.81 48.667)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16700\",\n \"data-name\": \"Group 16700\",\n transform: \"translate(5.68 1.336)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10059\",\n \"data-name\": \"Path 10059\",\n d: \"M39.989,74.453l-.175-.174C39.7,74.162,28.033,62.517,22.7,59.7a.4.4,0,0,1,.375-.707c5.142,2.719,15.6,13.035,17.131,14.551a26.268,26.268,0,0,1,4.518-.857.4.4,0,0,1,.086.795,24.523,24.523,0,0,0-4.589.895Z\",\n transform: \"translate(-22.49 -58.946)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16701\",\n \"data-name\": \"Group 16701\",\n transform: \"translate(26.705 15.066)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10060\",\n \"data-name\": \"Path 10060\",\n d: \"M44.769,73.482a.4.4,0,0,1-.047-.8l.048.4-.036-.4.054-.008a.4.4,0,0,1,.081.8l-.05.006A.444.444,0,0,1,44.769,73.482Z\",\n transform: \"translate(-44.369 -72.676)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16702\",\n \"data-name\": \"Group 16702\",\n transform: \"translate(0 0.633)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10061\",\n \"data-name\": \"Path 10061\",\n d: \"M45.234,83.625c-4.343,0-7.947-.236-9.295-.922-2.168-1.1-18.555-18.166-18.967-19.115a5,5,0,0,1,.821-4.195,3.5,3.5,0,0,1,3.743-1.016,6.287,6.287,0,0,1,1.54.615.4.4,0,1,1-.373.707,5.63,5.63,0,0,0-1.338-.541,2.777,2.777,0,0,0-2.954.742,4.4,4.4,0,0,0-.715,3.348C18.428,64.3,34.1,80.869,36.3,81.99c4.076,2.074,31.766-.328,32.043-.352a.4.4,0,0,1,.434.363.4.4,0,0,1-.363.434C67.629,82.5,54.684,83.625,45.234,83.625Z\",\n transform: \"translate(-16.81 -58.243)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16703\",\n \"data-name\": \"Group 16703\",\n transform: \"translate(18.062 6.762)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10062\",\n \"data-name\": \"Path 10062\",\n d: \"M43.31,71.893a.4.4,0,0,1-.274-.109c-1.505-1.424-5.407-5-7.374-6.711a.4.4,0,0,1,.525-.6c1.974,1.721,5.889,5.305,7.4,6.732a.4.4,0,0,1-.275.691Z\",\n transform: \"translate(-35.525 -64.371)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16704\",\n \"data-name\": \"Group 16704\",\n transform: \"translate(11.544 1.452)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10063\",\n \"data-name\": \"Path 10063\",\n d: \"M35.924,65.17a.405.405,0,0,1-.263-.1A63.5,63.5,0,0,0,28.95,59.8a.4.4,0,0,1,.434-.672,64.585,64.585,0,0,1,6.8,5.344.4.4,0,0,1-.263.7Z\",\n transform: \"translate(-28.767 -59.061)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16705\",\n \"data-name\": \"Group 16705\",\n transform: \"translate(5.679)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10064\",\n \"data-name\": \"Path 10064\",\n d: \"M29.167,59.861a.4.4,0,0,1-.217-.064,8.974,8.974,0,0,0-2.563-1.27,2.7,2.7,0,0,0-3.159,1.031.4.4,0,0,1-.678-.424c.568-.91,1.727-1.889,4.008-1.389a9.449,9.449,0,0,1,2.825,1.379.4.4,0,0,1,.119.553A.393.393,0,0,1,29.167,59.861Z\",\n transform: \"translate(-22.489 -57.61)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16706\",\n \"data-name\": \"Group 16706\",\n transform: \"translate(25.856 9.9)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10065\",\n \"data-name\": \"Path 10065\",\n d: \"M43.489,68.119l.518-.609-.168.2.186-.186-.274.291Z\",\n transform: \"translate(-43.489 -67.51)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16707\",\n \"data-name\": \"Group 16707\",\n transform: \"translate(19.481 4.296)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10066\",\n \"data-name\": \"Path 10066\",\n d: \"M43.742,68.211a.4.4,0,0,1-.268-.1c-1.148-1.033-5.191-4.549-6.344-5.492a.4.4,0,0,1,.506-.62c1.187.973,5.188,4.451,6.372,5.518a.4.4,0,0,1,.03.564A.392.392,0,0,1,43.742,68.211Z\",\n transform: \"translate(-36.983 -61.906)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16708\",\n \"data-name\": \"Group 16708\",\n transform: \"translate(11.533 0.632)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10067\",\n \"data-name\": \"Path 10067\",\n d: \"M37.383,62.707a.4.4,0,0,1-.253-.092c-3.189-2.609-4.667-3.334-5.345-3.482a2.168,2.168,0,0,0-2.308.58.4.4,0,0,1-.622-.5,2.888,2.888,0,0,1,3.1-.857c1.125.246,2.983,1.439,5.68,3.645a.4.4,0,0,1-.252.71Z\",\n transform: \"translate(-28.766 -58.242)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16709\",\n \"data-name\": \"Group 16709\",\n transform: \"translate(26.908 8.695)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10068\",\n \"data-name\": \"Path 10068\",\n d: \"M44.978,67.107a.391.391,0,0,1-.279-.117l0,0a.395.395,0,1,1,.283.121Z\",\n transform: \"translate(-44.578 -66.305)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16710\",\n \"data-name\": \"Group 16710\",\n transform: \"translate(19.467 4.051)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10069\",\n \"data-name\": \"Path 10069\",\n d: \"M44.978,67.1a.4.4,0,0,1-.288-.121c-.038-.039-3.748-3.875-5.491-4.412a2.209,2.209,0,0,0-1.647.1.4.4,0,1,1-.335-.726,3.024,3.024,0,0,1,2.219-.137c1.938.6,5.673,4.455,5.83,4.619a.4.4,0,0,1-.01.566A.409.409,0,0,1,44.978,67.1Z\",\n transform: \"translate(-36.984 -61.66)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16711\",\n \"data-name\": \"Group 16711\",\n transform: \"translate(26.452 15.074)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10070\",\n \"data-name\": \"Path 10070\",\n d: \"M54.461,74.359a62.669,62.669,0,0,1-9.032-.691,2.128,2.128,0,0,1-.836-.227.4.4,0,1,1,.351-.717,1.326,1.326,0,0,0,.536.145l.044,0c8.725,1.279,13.934.391,14.153.354a.4.4,0,1,1,.139.787A33.649,33.649,0,0,1,54.461,74.359Z\",\n transform: \"translate(-44.369 -72.683)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16712\",\n \"data-name\": \"Group 16712\",\n transform: \"translate(25.017 9.799)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10071\",\n \"data-name\": \"Path 10071\",\n d: \"M44.769,73.482a.382.382,0,0,1-.176-.041,3.735,3.735,0,0,1-1.808-2.426,4.105,4.105,0,0,1,.622-3.428l.031-.037a.4.4,0,1,1,.606.519l-.3-.26.3.26a3.306,3.306,0,0,0-.485,2.746,2.969,2.969,0,0,0,1.385,1.908.4.4,0,0,1-.175.759Z\",\n transform: \"translate(-42.649 -67.409)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16713\",\n \"data-name\": \"Group 16713\",\n transform: \"translate(25.695 8.699)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10072\",\n \"data-name\": \"Path 10072\",\n d: \"M43.742,68.211a.385.385,0,0,1-.237-.08.4.4,0,0,1-.085-.559,4.941,4.941,0,0,1,1.328-1.2.4.4,0,0,1,.432.674,4.135,4.135,0,0,0-1.116,1A.4.4,0,0,1,43.742,68.211Z\",\n transform: \"translate(-43.342 -66.308)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16714\",\n \"data-name\": \"Group 16714\",\n transform: \"translate(26.9 8.712)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10073\",\n \"data-name\": \"Path 10073\",\n d: \"M44.969,67.105a.4.4,0,0,1-.388-.291.4.4,0,0,1,.273-.492l.123.381.09.391-.09-.391.1.389A.373.373,0,0,1,44.969,67.105Z\",\n transform: \"translate(-44.566 -66.322)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16715\",\n \"data-name\": \"Group 16715\",\n transform: \"translate(25.736 6.485)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10074\",\n \"data-name\": \"Path 10074\",\n d: \"M62.707,92.316l.088-.475a17.681,17.681,0,0,0-.492-9.209.4.4,0,0,1,.736-.31,17.849,17.849,0,0,1,.623,9.191l18.66-.043C81,75.222,78.99,70.976,78.97,70.935l-.027-.07c-.068-.242-1.8-5.969-9.881-5.969-15.678,0-23.649,2.1-23.981,2.193a.4.4,0,1,1-.208-.771c.336-.092,8.406-2.223,24.189-2.223,8.352,0,10.467,5.973,10.641,6.514.205.439,2.152,4.951,3.453,21.229l.033.432Z\",\n transform: \"translate(-44.577 -64.095)\",\n fill: \"#07a3c8\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10075\",\n \"data-name\": \"Path 10075\",\n d: \"M60.77,34.516c-1.432-.44-4.2-3.12-5.156-4.076a4.866,4.866,0,0,0,.656-.588c1.252,1.112,4.041,3.536,5.488,4.756A2.285,2.285,0,0,1,60.77,34.516Z\",\n transform: \"translate(-1.309 -1.464)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10076\",\n \"data-name\": \"Path 10076\",\n d: \"M56.75,29.2a4.067,4.067,0,0,0,.551-2.46c1.824,1.692,4.828,4.437,6.48,5.876a69.175,69.175,0,0,0,6.385,5.064,2.365,2.365,0,0,1-1.98.268c-.676-.147-2.141-.864-5.3-3.439a.112.112,0,0,0-.043-.036c0-.008-.008-.012-.012-.008a.081.081,0,0,0-.033-.028C61.678,33.512,58.139,30.44,56.75,29.2Z\",\n transform: \"translate(-1.532 -1.387)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10077\",\n \"data-name\": \"Path 10077\",\n d: \"M76.49,37.868a2.8,2.8,0,0,1-2.908.692,8.916,8.916,0,0,1-2.564-1.272,63.868,63.868,0,0,1-6.707-5.271c-1.973-1.716-5.873-5.288-7.377-6.712a.408.408,0,0,0-.043-.036,3.957,3.957,0,0,0-.678-.992,24.679,24.679,0,0,0,3.549-.732C61.246,25.02,71.223,34.856,76.49,37.868Z\",\n transform: \"translate(-2.031 -1.24)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10078\",\n \"data-name\": \"Path 10078\",\n d: \"M80.244,33.738a4.477,4.477,0,0,1-.693,3.332,2.634,2.634,0,0,1-2.864.741,5.353,5.353,0,0,1-1.26-.522s0,0-.008,0a.086.086,0,0,0-.026-.012h0c-5.161-2.814-16.455-14.412-16.567-14.527l-.17-.175-.229.08a22.992,22.992,0,0,1-4.343.877,1.967,1.967,0,0,0-.7-.171c-8.547-1.287-13.719-.387-13.935-.347a.4.4,0,0,0-.314.462.386.386,0,0,0,.449.323c.209-.036,5.273-.921,13.708.355l.044,0a1.1,1.1,0,0,1,.359.076.379.379,0,0,0,.236.112,3.007,3.007,0,0,1,1.264,1.853,3.384,3.384,0,0,1-.462,2.726s0,.008-.008.012-.012.016-.019.024l-.024.036a4.179,4.179,0,0,1-1.006.93.013.013,0,0,0-.008,0c-.78.211-8.5,2.172-23.177,2.172-7.823,0-9.5-5.707-9.57-5.95l-.027-.068c-.019-.04-1.96-4.273-3.247-20.458l18.074-.044a19.4,19.4,0,0,0,.425,8.637c-2.8.207-4.742.383-5.028.407a.4.4,0,0,0-.353.434.386.386,0,0,0,.418.359c.077-.008,2.279-.2,5.486-.434a.1.1,0,0,0,.035,0,.232.232,0,0,0,.054,0c8.148-.582,22.646-1.383,25.467.092C64.355,16.178,79.535,32.694,80.244,33.738Z\",\n transform: \"translate(0 0.117)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10079\",\n \"data-name\": \"Path 10079\",\n d: \"M50.833,42.4l-.849.848-.849-.848A5.733,5.733,0,0,0,41.028,50.5l.848.849,8.108,8.107,8.109-8.107.848-.849A5.733,5.733,0,1,0,50.833,42.4Z\",\n transform: \"translate(-1.015 -6.554)\",\n fill: \"#07a3c8\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPrivacyPopUpLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/privacyPopUpLogo.1fb7f38b.svg\";\nexport { ForwardRef as ReactComponent };","import React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport Card from '../components/Card';\nimport privacy from 'images/privacy.svg';\nimport ownership from 'images/ownership.svg';\nimport personalised from 'images/personalHealthcare.svg';\nimport getStarted from 'images/high5.gif';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport { isDesktop } from 'config';\n\nconst Container = styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n margin: auto;\n overflow: hidden;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst IdentityInfo: React.FC = ({hide}) => {\n const [state, setState] = useState(0);\n const [height, setHeight] = useState(isDesktop() ? \"600px\" :window.innerHeight - 34);\n \n useComponentDidMount(() => {\n window.addEventListener('resize', () => setHeight(window.innerHeight - 34)); \n })\n\n\n let card;\n if (state === 0) card = setState(1)}\n icon={privacy}\n goBack={(newState) => setState(newState)}\n />; \n else if (state === 1) card = setState(2)}\n icon={ownership}\n goBack={(newState) => setState(newState)}\n />\n else if (state === 2) card = setState(3)}\n icon={personalised}\n goBack={(newState) => setState(newState)}\n />\n else if (state === 3) card = setState(newState)}\n icon={getStarted}\n />\n \n return (\n \n {card}\n \n )\n}\n\nexport default IdentityInfo","import Alert from 'libs/Alert';\nimport React, { useState } from 'react';\nimport { go } from 'routes';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport styled from 'styled-components';\n\n//import Card from '../components/Card';\nimport { ReactComponent as BlueCross } from 'svgs/blueCross.svg';\n\nconst Container = styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n background-color: white;\n border-radius: 4px;\n padding: 0.8rem;\n`\nconst Title = styled.div`\n font-size: 21px;\n font-weight: medium;\n color: #07A3C8;\n text-align: center;\n margin: 1rem;\n`\nconst Subtitle = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n text-align: center;\n`\nconst FlexV = styled.div`\n display: flex;\n flex-direction: column;\n align-items: center;\n margin: 2rem 0rem;\n`\nconst FlexH = styled.div`\n display: flex;\n flex-direction: row;\n margin: 0.5rem 0rem;\n align-items: center;\n`\nconst Bullet = styled.div`\n height: 35px;\n width: 35px;\n border-radius: 50%;\n background-color: #07A3C8;\n color: white;\n margin: 0rem 0.5rem;\n line-height: 2;\n text-align: center;\n flex-shrink: 0;\n`\nconst Text = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n width: 100%;\n`\nconst Button = styled.div`\n background-color: #07A3C8;\n border-radius: 29px;\n padding: 1rem 2rem;\n color: white;\n font-size: 13px;\n text-align: center;\n`\nconst Link = styled.div`\n border-radius: 29px;\n margin: auto;\n text-align: center;\n color: #FF6A65;\n font-size: 13px;\n text-align: center;\n font-weight: bold;\n`\n\ninterface Props {\n hide: (e: any) => void;\n onDecline: () => void;\n}\nconst DeclineResearch: React.FC = ({hide, onDecline}) => {\n const [state, setState] = useState(0);\n const store = useMyHealthStore();\n \n return (\n \n \n Benefits to you \n Are you sure you don't want to get involved? \n Benefits to you include: \n \n \n 1 \n Get access your test results much faster, right in your pocket \n \n \n 2 \n Get notified when someone attempts to access your account without your permission \n \n \n 3 \n Your feedback to the medical team will eventually enable your doctor to give you personal advice with yoru lab results \n \n \n 4 \n Your input will help improve the healthcare system \n \n \n \n I would like to continue \n \n {\n store.setConsent(false);\n store.postLabInvite(() => {\n hide(e);\n onDecline();\n Alert.success(\"You have been withdrawn from the research. We will inform your practice.\")\n });\n go.home();\n }}>Decline Research\n \n \n )\n}\n\nexport default DeclineResearch","import Alert from 'libs/Alert';\nimport React, { useState } from 'react';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport styled from 'styled-components';\n\n//import Card from '../components/Card';\nimport { ReactComponent as BlueCross } from 'svgs/blueCircleButton.svg';\n\nconst Container = styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n background-color: white;\n border-radius: 4px;\n padding: 0.8rem;\n overflow: scroll;\n`\nconst Title = styled.div`\n font-size: 21px;\n font-weight: medium;\n color: #07A3C8;\n text-align: center;\n margin: 1rem;\n`\nconst Text = styled.div`\n font-size: 17px;\n color: #585858;\n width: 100%;\n text-align: left;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst InformationUsage: React.FC = ({hide}) => { \n return (\n \n How is my information being used? \n \n The study is expected to run for 15 months, to understand several different 'objectives'. You will be sent another copy of this information\n sheet and asked to consent to take part in each Objective as they come up, and you can say no at any time. The intervention of this study \n involves how you receive your test results. \n \n \n \n Objective One looks at understanding the effectiveness of providing different types of advice to patients. \n This will involve you answering questions on how you have received your normal results and the advice provided.\n \n \n \n Objective Two looks at understanding factors that drives test requests. The study will look at reasons why \n you needed to visit your doctor, and your doctor’s clinical reason to order tests for you.\n \n \n \n Objective Three looks at understanding clinical factors in interpretation of the laboratory results and personalising what is \n normal for you. This objective will involve using information in your health record that directly affects test results - such as your \n current conditions, medications, and previous test results - to determine if your latest results are within expected normal range. \n Other questions such as family history of certain heart, liver, or kidney diseases; diet, and lifestyle questions may also be asked due \n to their potential influence on test results. Sometimes a test does not end up being ordered when it usually would have been expected for \n a particular condition or circumstance – for example, if the same type of test has been done recently through a specialist or hospital \n instead. The study also wants to understand this situation, so you may be added to a ‘comparison group’ of people like you, even if you \n do not get a result. Together, having the different objectives and comparison groups helps us learn and analyse a whole range of patterns and preferences.\n \n \n \n
\n \n )\n}\n\nexport default InformationUsage;","import Alert from 'libs/Alert';\nimport React, { useState } from 'react';\nimport { useAccountStore, useMyHealthStore } from 'store/mobx/mobx';\nimport styled from 'styled-components';\n\n//import Card from '../components/Card';\nimport { ReactComponent as BlueCross } from 'svgs/blueCircleButton.svg';\n\nconst Container = styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n background-color: white;\n border-radius: 4px;\n padding: 0.8rem;\n`\nconst Title = styled.div`\n font-size: 21px;\n font-weight: medium;\n color: #07A3C8;\n text-align: center;\n margin: 1rem;\n`\nconst Text = styled.div`\n font-size: 17px;\n color: #585858;\n width: 100%;\n text-align: left;\n`\nconst Link = styled.div`\n font-size: 17px;\n color: #07A3C8;\n text-align: left;\n width: 100%;\n margin: 0.1rem 0rem;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst InvolvedInStudy: React.FC = ({hide}) => {\n return (\n \n Who's involved in the study \n If you have any questions, concerns, or complaints about the study at any state, you can contact: \n \n Samuel Wong, Principal co-investigator \n window.location.href=\"tel:0800228946\"}>0800 228 946\n window.location.href=\"mailto:feedback@vensa.com\"}>feedback@vensa.com\n \n \n If you feel you need to raise any clinical concerns or Māori health support with the study's clinical research co-investigator, \n Dr Tane Taylor, please contact Samuel Wong to arrange a discussion.\n \n \n \n
\n \n )\n}\n\nexport default InvolvedInStudy;","import { isDesktop } from 'config';\nimport React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport { ReactComponent as Cross } from 'svgs/blueCross.svg';\n\nconst Container = !isDesktop() ? styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n background-color: white;\n border-radius: 4px;\n padding: 2rem 1rem;\n overflow: scroll;\n`\n:\nstyled.div` \n position: absolute;\n height: 700px;\n width: 400px;\n left: 50%;\n top: 50%;\n background-color: white;\n border-radius: 4px;\n padding: 2rem 1rem;\n overflow: visible;\n transform: translate(-50%, -50%);\n`\n\nconst Title = styled.div`\n font-size: 21px;\n color: #07A3C8;\n text-align: center;\n margin-bottom: 2rem;\n`\nconst FlexH = styled.div`\n display: flex;\n flex-direction: row;\n margin: 1rem 0rem;\n`\nconst FlexV = styled.div`\n display: flex;\n flex-direction: column;\n margin-left: 0.8rem;\n`\nconst Bullet = styled.div`\n height: 35px;\n width: 35px;\n text-align: center;\n background-color: #07A3C8;\n color: white;\n line-height: 2;\n flex-shrink: 0;\n border-radius: 50%;\n`\nconst Point = styled.div`\n font-size: 16px;\n color: #6C6C6C;\n text-align: left;\n margin-left: 0rem;\n margin-bottom: 0.5rem;\n font-weight: 600;\n`\nconst Text = styled.div`\n font-size: 15px;\n color: #989898;\n text-align: left;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst IdentityInfo: React.FC = ({hide}) => {\n const [state, setState] = useState(0);\n \n return (\n \n \n Security Features \n \n 1 \n \n PIN \n PIN code access enables quick and secure access to your account. Choose from either a 4 or 6 number PIN code. \n \n \n \n \n 2 \n \n Protect your privacy \n A PIN code is safer to identify you than common passwords, so a two-factor security process allows you to have an extra security for those sensitive areas of your records. \n \n \n \n \n 3 \n \n Get notified when someone attempts to access your account without your permission \n If someone attempts to access your account without your permission (by guessing your PIN code or password) you will receive an instant notification. You may then be advised to change your PIN or password. You can always recover your account using your secondary email. \n \n \n \n )\n}\n\nexport default IdentityInfo","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgThumb = function SvgThumb(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"Group_20424\",\n \"data-name\": \"Group 20424\",\n width: 49.554,\n height: 44.555,\n viewBox: \"0 0 49.554 44.555\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20423\",\n \"data-name\": \"Group 20423\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Zoom_In\",\n \"data-name\": \"Zoom In\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Calendar\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20422\",\n \"data-name\": \"Group 20422\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20421\",\n \"data-name\": \"Group 20421\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20420\",\n \"data-name\": \"Group 20420\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20419\",\n \"data-name\": \"Group 20419\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20418\",\n \"data-name\": \"Group 20418\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20417\",\n \"data-name\": \"Group 20417\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20416\",\n \"data-name\": \"Group 20416\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20415\",\n \"data-name\": \"Group 20415\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Play_-_Orange\",\n \"data-name\": \"Play - Orange\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Arrow_Right_-_Orange\",\n \"data-name\": \"Arrow Right - Orange\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_20414\",\n \"data-name\": \"Group 20414\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_11255\",\n \"data-name\": \"Path 11255\",\n d: \"M49.635,27.426a6.286,6.286,0,0,1-.3.944c-.278.556-.61,1.086-.9,1.636a.712.712,0,0,0-.109.505,5.068,5.068,0,0,1-.814,5.106.552.552,0,0,0-.114.616A4.962,4.962,0,0,1,46.751,41a1.213,1.213,0,0,0-.233,1.1,5.414,5.414,0,0,1-1.241,5.248A4.527,4.527,0,0,1,42.8,48.69a14.12,14.12,0,0,1-2.546.278H21.388a5.71,5.71,0,0,1-3.182-1.056,1.176,1.176,0,0,0-.943-.242,7.033,7.033,0,0,1-.074.924,2,2,0,0,1-1.822,1.813,3.873,3.873,0,0,1-.432,0H2.383a2.1,2.1,0,0,1-1.6-.552,2.178,2.178,0,0,1-.7-1.565q0-9.99,0-19.976a2.275,2.275,0,0,1,.634-1.727,2.193,2.193,0,0,1,1.689-.667h14.17a7.858,7.858,0,0,1,.993.192.665.665,0,0,0,.5-.061,15.539,15.539,0,0,0,1.444-1.641A67.407,67.407,0,0,0,24.664,15.8a3.145,3.145,0,0,0,.372-1.611c-.065-1.662-.065-3.328-.124-4.99a2.768,2.768,0,0,1,1.434-2.626,5.2,5.2,0,0,1,5.743.323,3.333,3.333,0,0,1,.883,1.343c.61,1.515,1.191,3.066,1.707,4.626a10.175,10.175,0,0,1,.208,5.243c-.258,1.328-.447,2.672-.67,4.005-.074.455-.06.505.4.505H45.341a4.527,4.527,0,0,1,2.482.6,3.813,3.813,0,0,1,1.653,2.4c.04.157.089.308.134.46v1.369ZM31.662,24.7c.387-2.338.779-4.626,1.137-6.914a10.34,10.34,0,0,0,.223-2.465A20.5,20.5,0,0,0,31.087,9.1a1.5,1.5,0,0,0-1.107-1.01,3.3,3.3,0,0,0-2.482.222.906.906,0,0,0-.541.919q.1,2.758.1,5.515a3.812,3.812,0,0,1-.213,1.288,8.88,8.88,0,0,1-.725,1.515c-1.489,2.48-2.978,4.97-4.507,7.42A9.452,9.452,0,0,1,18.946,28c-.7.465-1.415.939-2.1,1.429a.684.684,0,0,0-.273.465q0,7.493,0,14.98c0,.3.124.328.377.359a7.049,7.049,0,0,1,1.41.3,3.894,3.894,0,0,1,.879.54,4.334,4.334,0,0,0,2.531.773H40.453a8.328,8.328,0,0,0,1.107-.066,3.225,3.225,0,0,0,2.293-1.349,2.341,2.341,0,0,0,.129-2.839,6.062,6.062,0,0,0-1.147-.884.9.9,0,0,1,.318-.348,3.237,3.237,0,0,0,2.313-2.268,2.068,2.068,0,0,0-.635-2.349,8.188,8.188,0,0,0-1.112-.621,1.436,1.436,0,0,1,.442-.434,3.06,3.06,0,0,0,1.886-1.369c.958-1.48.6-3.03-.993-3.606a.436.436,0,0,1-.258-.273.378.378,0,0,1,.077-.28.366.366,0,0,1,.251-.139A3.123,3.123,0,0,0,47.491,27.3a2.031,2.031,0,0,0-1.082-2.328,3.578,3.578,0,0,0-1.38-.263H31.667Zm-16.94,3.364c-.159,0-.278-.025-.392-.025H2.577a.338.338,0,0,0-.337.09.353.353,0,0,0-.085.344q0,9.7,0,19.41a.389.389,0,0,0,.095.374.373.373,0,0,0,.367.1H14.211c.5,0,.5,0,.5-.53V28.083Z\",\n transform: \"translate(-0.081 -5.859)\",\n fill: \"#585858\"\n })))))))))))))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgThumb, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/thumb.0249c417.svg\";\nexport { ForwardRef as ReactComponent };","import React from 'react';\n\nimport styled from 'styled-components';\nimport styles from './privacyInfoPopUp.module.css';\nimport Button from '../PrivacyInfoPopUpButton';\nimport Logo from '../../../svgs/privacyPopUpLogo.svg'\nimport { ReactComponent as DesktopLogo } from 'svgs/privacyPopUpLogo.svg';\nimport { isDesktop } from 'config';\n\nconst Container = styled.div` \n position: absolute;\n height: 700px;\n width: 400px;\n left: 50%;\n top: 50%;\n background-color: white;\n border-radius: 4px;\n padding: 2rem 1rem;\n overflow: visible;\n transform: translate(-50%, -50%);\n`\nconst Title = styled.div`\n width: 100%;\n text-align: center;\n color: #07A3C8;\n font-size: 21px;\n`\nconst Text = styled.div`\n font-size: 17px;\n color: #585858;\n text-align: left;\n width: 100%;\n margin: 1rem 0;\n`\n\nclass PrivacyInfoPopUp extends React.Component {\n constructor(props) {\n super(props);\n\n this.state = { moreInfo: false }\n }\n\n render() {\n return isDesktop() ? \n (\n \n \n Privacy \n Privacy is human right. The Vensa system is designed to: \n \n 1. Collect your data and store it on your behalf. We will never share it with anyone without your control. \n 2. Provide transparency and control over your information. \n 3. Show you the above icon every time an app or feature asks to use your personal information. \n 4. Keep your information stored securely with the highest standard. \n 5. Ensure privacy and security best practices are maintained \n this.props.closePopUp(e)}/>\n \n )\n :\n (\n \n
\n
\n
Privacy
\n
\n
\n Vensa believes privacy is a human right, so our Vensa system are designed to:
\n 1. Collect your data and store it on your behalf. We will never share it with anyone without your control.
\n 2. Provide transparency and control over your information.
\n {/* eslint-disable-next-line */}\n 3. Show you the above icon every time an app or feature asks to use your personal information.
\n {!this.state.moreInfo &&
}\n
{ this.setState({ moreInfo: true }); }} className={this.state.moreInfo ? styles.displayNone : styles.link}> More Info \n
\n
\n 4. Keep your information stored securely with the highest standard. \n 5. Ensure privacy and security best practices are maintained \n { this.setState({ moreInfo: false }); }} className={styles.linkLess}>Less Info \n
\n
\n
this.props.closePopUp(e)}/>\n \n
\n )\n }\n}\n\nexport default PrivacyInfoPopUp;","import React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport Card from '../components/Card';\nimport privacy from 'images/privacy.svg';\nimport booking from 'svgs/booking.svg';\nimport pills from 'svgs/blister-pack.svg';\nimport baby from 'svgs/baby-boy.svg';\nimport report from 'svgs/medical-report.svg';\nimport center from 'svgs/drive-thru.svg';\nimport { useComponentDidMount } from 'libs/newHttp';\n\nconst Container = styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n overflow: hidden;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst TakeATour: React.FC = ({hide}) => {\n const [state, setState] = useState(0);\n const [height, setHeight] = useState(window.innerHeight - 34);\n \n useComponentDidMount(() => {\n window.addEventListener('resize', () => setHeight(window.innerHeight - 34)); \n })\n\n\n let card;\n if (state === 0) card = setState(1)}\n goBack={(newState) => setState(newState)}\n icon={booking}\n />; \n else if (state === 1) card = setState(2)}\n icon={pills}\n goBack={(newState) => setState(newState)}\n />\n else if (state === 2) card = setState(3)}\n goBack={(newState) => setState(newState)}\n icon={report}\n />\n else if (state === 3) card = setState(4)}\n goBack={(newState) => setState(newState)}\n icon={baby}\n />\n else if (state === 4) card = setState(5)}\n goBack={(newState) => setState(newState)}\n icon={center}\n />\n else if (state === 5) card = setState(newState)}\n />\n \n return (\n \n {card}\n \n )\n}\n\nexport default TakeATour;","import React from 'react';\nimport styled from 'styled-components';\n\nimport { ReactComponent as Cross } from 'svgs/blueCross.svg';\nimport Kiwi from 'images/wavingKiwi.png';\nimport { go } from 'routes';\n\nconst Container = styled.div`\n display: block;\n margin: 4rem auto;\n height: 400px;\n width: 500px;\n position: relative;\n background-color: white;\n border-radius: 4px;\n padding: 2rem 1rem;\n`\nconst Title = styled.div`\n font-size: 21px;\n color: #07A3C8;\n text-align: center;\n margin-bottom: 2rem;\n`\nconst FlexH = styled.div`\n display: flex;\n flex-direction: row;\n margin: 1rem 0rem;\n`\nconst FlexV = styled.div`\n display: flex;\n flex-direction: column;\n margin-left: 0.8rem;\n`\nconst Bullet = styled.div`\n height: 35px;\n width: 35px;\n text-align: center;\n background-color: #07A3C8;\n color: white;\n line-height: 2;\n flex-shrink: 0;\n border-radius: 50%;\n`\nconst Image = styled.img`\n display: block;\n margin: 1rem auto;\n`\nconst Text = styled.div`\n font-size: 17px;\n color: #6C6C6C;\n text-align: center;\n margin: 1rem 0;\n padding: 0 3rem;\n`\nconst Button = styled.div`\n color: white;\n background-color: #07A3C8;\n font-size: 17px;\n padding: 1rem 2rem;\n border-radius: 4px;\n margin: 2rem auto;\n width: 200px;\n text-align: center;\n cursor: pointer;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst UnavailableOnDesktop: React.FC = ({hide}) => { \n return (\n \n Unavailable on Desktop \n \n Sorry this service is currently only available on mobile. Please try again from your mobile device's web browser. \n Close \n \n )\n}\n\nexport default UnavailableOnDesktop;","import React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport { ReactComponent as Cross } from 'svgs/blueCircleButton.svg';\nimport HN from 'images/healthnav.png';\nimport { ReactComponent as Thumb } from 'svgs/thumb.svg';\n\nconst Container = styled.div`\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n background-color: white;\n border-radius: 4px;\n padding: 2rem 1rem;\n overflow: scroll;\n display: flex;\n flex-direction: column;\n`\nconst Title = styled.div`\n text-align: center;\n width: 100%;\n color: #07A3C8;\n font-size: 21px;\n margin-top: 1.5rem;\n margin-bottom: 1rem;\n`\nconst Subtitle = styled.div`\n color: #585858;\n width: 100%;\n text-align: left;\n font-size: 17px;\n margin: 2rem 0rem;\n`\nconst HealthN = styled.img`\n position: absolute;\n top: 0.1rem;\n right: 0.5rem;\n`\nconst FlexH = styled.div`\n display: flex;\n flex-direction: row;\n margin-bottom: 2rem;\n`\nconst Content = styled.div`\n font-size: 17px;\n color: #585858;\n overflow: scroll;\n font-weight: 300;\n`\ninterface Props {\n hide: () => void;\n content: any\n}\nconst MedicationInfo: React.FC = ({hide, content}) => {\n const [state, setState] = useState(0);\n \n return (\n \n \n {content.name} \n \n At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat\n \n Was the information helpful for you? \n \n \n \n \n \n \n )\n}\n\nexport default MedicationInfo","import React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport Card from '../components/Card';\nimport booking from 'svgs/booking.svg';\nimport pills from 'svgs/blister-pack.svg';\nimport report from 'svgs/medical-report.svg';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport { isDesktop } from 'config';\nimport EmptyBookings from 'PracticeProfilePage/BookingPageMobile/EmptyBookings';\n\nconst Container = styled.div`\n display: inline-block;\n position: absolute;\n top: 1rem;\n left: 1rem;\n right: 1rem;\n bottom: 1rem;\n margin: auto;\n overflow: hidden;\n`\n\ninterface Props {\n hide: (e: any) => void;\n}\nconst CareCircleInfo: React.FC = ({hide}) => {\n const [state, setState] = useState(0);\n const [height, setHeight] = useState(isDesktop() ? \"530px\" : window.innerHeight - 34);\n \n useComponentDidMount(() => {\n window.addEventListener('resize', () => setHeight(window.innerHeight - 34)); \n })\n\n\n let card;\n let injectStyle = {paddingBottom: '2rem'}\n if (state === 0) card = setState(1)}\n icon={booking}\n goBack={(newState) => setState(newState)}\n injectStyle={injectStyle}\n />; \n else if (state === 1) card = setState(2)}\n icon={pills}\n goBack={(newState) => setState(newState)}\n injectStyle={injectStyle}\n />\n else if (state === 2) card = setState(newState)}\n finishButton={true}\n buttonText={\"Close\"}\n injectStyle={injectStyle}\n />\n \n return (\n \n {card}\n \n )\n}\n\nexport default CareCircleInfo;","import React, { useState } from 'react';\nimport CircleCheckbox from '../../CircleCheckbox/index';\nimport styles from './ServiceFilter.module.css';\n\n//import Card from '../components/Card';\nimport { ReactComponent as BlueCross } from 'svgs/blueCross.svg';\n\ninterface Props {\n hide: (e: any) => void;\n callback: (e: any) => void;\n params: any;\n}\nconst ServiceFilter: React.FC = ({ hide, callback, params }) => {\n const [selected, setSelected] = useState(0);\n\n return (\n \n
\n
Filters
\n
\n {params?.Locations && params.Locations.length > 0 && (\n
\n Locations\n
\n )}\n {params?.Locations &&\n params.Locations.length > 0 &&\n params.Locations.map(s => (\n
\n
{\n window.location.href = `${window.location.origin}/practice-profile/${s.Code}`;\n }}\n className={styles.name}\n >\n {s.Name}\n
\n
\n ))}\n
\n Services\n
\n {params?.Services &&\n params.Services.map(s => (\n
\n
{\n setSelected(s.Id);\n callback(s);\n hide(e);\n }}\n selected={\n s.Id === selected || s.Id === params.SelectedService?.Id\n }\n className={styles.checkbox}\n selectedClassName={styles.selectedCheckbox}\n />\n {\n setSelected(s.Id);\n callback(s);\n hide(e);\n }}\n className={styles.name}\n >\n {s.Name}\n
\n \n ))}\n
\n
\n );\n};\n\nexport default ServiceFilter;\n","import { useComponentDidMount } from 'libs/newHttp';\nimport { observer } from 'mobx-react-lite';\nimport React, { useState } from 'react';\nimport styled from 'styled-components';\n\nimport IdentityInfo from './Identity/IdentityInfo';\nimport PDHDecline from './PDH/DeclineResearch';\nimport InformationUsage from './PDH/InformationUsage';\nimport InvolvedInStudy from './PDH/InvoledInStudy';\nimport { actions } from 'HealthFeed/actions/actions';\nimport SecurityInfo from './Security/SecurityInfo';\nimport PrivacyInfo from '../../Privacy/components/PrivacyInfoPopUp';\nimport TakeATour from './TakeATour/TakeATour';\nimport { bindActionCreators } from 'redux';\nimport { connect } from 'react-redux';\nimport UnavailableOnDesktop from './Misc/UnavailableOnDesktop/UnavailableOnDesktop';\nimport MedicationInfo from './vScript/MedicationInfo';\nimport VScriptInfo from './vScript/vScriptInfo';\nimport AddToHomeScreen from './AddToHomeScreen/AddToHomeScreen';\nimport CareCircleInfo from './CareCircle/CareCircleInfo';\nimport ServiceFilter from './Appointment/ServiceFilter';\nimport ReactDOM from 'react-dom';\n\ninterface OverlayProps {\n show: boolean;\n}\ninterface ComponentProps {\n type: string;\n hide: () => void;\n getFeed: () => void;\n callback?: (e) => void;\n hideOnOverlayClick?: boolean;\n params?: any;\n}\n\nconst Overlay = styled.div`\n background-color: #0000008A;\n opacity: ${(props: OverlayProps) => props.show ? \"1\" : \"0\"};\n transition: all 0.3s linear;\n width: 100%;\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n height: 100%;\n z-index: 20;\n`\nconst TYPES = [\"IDENTITY_INFO\", \"SECURITY_FAQ\", \"PRIVACY_INFO\", \"PDH_DECLINE\", \"PDH_STUDY_INVOLVEMENT\", \"PDH_INFORMATION_USAGE\", \"TAKE_A_TOUR\"]\n\n// Learn more pop up flow for mobile\n// - Can create customised learn more pop up flows\n// - TODO: Add extra flows\nconst LearnMorePopUp: React.FC = observer(({ hide, type, getFeed, callback, hideOnOverlayClick, params }) => {\n const [visible, setVisible] = useState(false);\n\n useComponentDidMount(() => {\n setTimeout(() => {\n setVisible(true);\n }, 0);\n })\n\n const hideHandler = (e: any) => {\n e.preventDefault();\n if (e.target === e.currentTarget || e.currentTarget.contains(e.target)) {\n setVisible(false);\n setTimeout(hide, 300)\n }\n }\n\n const callbackHandler = (e: any) => {\n if (callback)\n callback(e);\n }\n\n const renderSwitch = () => {\n switch (type) {\n case \"IDENTITY_INFO\":\n return ;\n case \"VSCRIPT_INFO\":\n return ;\n case \"PDH_DECLINE\":\n return getFeed()} />;\n case \"PDH_STUDY_INVOLVEMENT\":\n return ;\n case \"PDH_INFORMATION_USAGE\":\n return ;\n case \"SECURITY_FAQ\":\n return ;\n case \"PRIVACY_INFO\":\n return ;\n case \"MEDICATION_INFO\":\n return ;\n case \"TAKE_A_TOUR\":\n return ;\n case \"ADD_TO_HOME_SCREEN\":\n return ;\n case \"UNAVAILABLE_DESKTOP\":\n return ;\n case \"CARE_CIRCLE_INFO\":\n return ;\n case \"SERVICE_FILTER\":\n return ;\n default:\n return\n }\n }\n if (type === 'CARE_CIRCLE_INFO') {\n return ReactDOM.createPortal(\n { }}>\n {renderSwitch()}\n , document.getElementById('portal') as Element\n );\n }\n return (\n\n { }}>\n {renderSwitch()}\n \n )\n})\n\nconst mapDispatchToProps = (dispatch: any) => ({\n getFeed: bindActionCreators(actions.getFeed, dispatch),\n})\n\nexport default connect(null, mapDispatchToProps)(LearnMorePopUp);\n","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgRightarrow2 = function SvgRightarrow2(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"-6691.669 -5818.307 14.879 11.31\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_12943\",\n transform: \"translate(-7243 -6022)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_12942\"\n }, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"Rectangle_7797\",\n width: 8,\n height: 1.55,\n rx: 0.775,\n transform: \"translate(551.331 209.35) rotate(-45)\"\n }), /*#__PURE__*/React.createElement(\"rect\", {\n id: \"Rectangle_7798\",\n width: 8,\n height: 1.55,\n rx: 0.775,\n transform: \"translate(556.987 215.003) rotate(-135)\"\n })), /*#__PURE__*/React.createElement(\"rect\", {\n id: \"Rectangle_7799\",\n width: 14,\n height: 1.55,\n rx: 0.775,\n transform: \"translate(552.21 208.56)\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgRightarrow2, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/rightarrow2.e2f7094d.svg\";\nexport { ForwardRef as ReactComponent };","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"pickUpOption_container__26b27\",\"inactive\":\"pickUpOption_inactive__d_pKp\",\"selectedContainer\":\"pickUpOption_selectedContainer__3aTgL\",\"urgencyContainer\":\"pickUpOption_urgencyContainer__23M7T\",\"urgency\":\"pickUpOption_urgency__3QLmH\",\"selectedUrgency\":\"pickUpOption_selectedUrgency__6rBEU\",\"enter\":\"pickUpOption_enter__3q-xP\",\"enterActive\":\"pickUpOption_enterActive__2-fIE\",\"leave\":\"pickUpOption_leave__3_YGY\",\"leaveActive\":\"pickUpOption_leaveActive__22UO_\",\"disableBox\":\"pickUpOption_disableBox__1R43A\",\"addressBase\":\"pickUpOption_addressBase__1AIcX\",\"disabledBase\":\"pickUpOption_disabledBase__Q7BqK\",\"disabledNewPharmacyBase\":\"pickUpOption_disabledNewPharmacyBase__1hJBG\",\"taller\":\"pickUpOption_taller__Y6CQV\",\"name\":\"pickUpOption_name__4IP2A\",\"selectedName\":\"pickUpOption_selectedName__3PsnN\",\"radio\":\"pickUpOption_radio__3jYxQ\",\"address\":\"pickUpOption_address__2IWDh\",\"disabledContainer\":\"pickUpOption_disabledContainer__3XSVM\",\"disabled\":\"pickUpOption_disabled__3OaMJ\",\"disabledNewPharmacy\":\"pickUpOption_disabledNewPharmacy__3uonn\",\"threeDots\":\"pickUpOption_threeDots__2fAiu\",\"removeContainer\":\"pickUpOption_removeContainer__3NbJd\",\"removeOverlay\":\"pickUpOption_removeOverlay__2_oj9\",\"note\":\"pickUpOption_note__1Pv_E\",\"price\":\"pickUpOption_price__3NwOb\",\"checkbox\":\"pickUpOption_checkbox__3w7kJ\",\"selectedCheckbox\":\"pickUpOption_selectedCheckbox__1Loib\",\"pop\":\"pickUpOption_pop__2bFbK\"};","const actionTypes = {\n sendToConfirm: 'SEND_TO_CONFIRM',\n changeVerificationMobile: 'SEND_NEW_VERIFICATION_MOBILE',\n changeVerificationMobileSuccess: 'SEND_NEW_VERIFICATION_MOBILE_SUCCESS',\n changeVerificationMobileFailure: 'SEND_NEW_VERIFICATION_MOBILE_FAILURE',\n sendToConfirmSuccess: 'SEND_TO_CONFIRM_SUCCESS',\n sendToConfirmFailure: 'SEND_TO_CONFIRM_FAILURE',\n sendCode: 'SEND_CODE_FOR_CONFIRMATION',\n sendCodeFetching: 'SEND_CODE_FETCHING',\n sendCodeSuccess: 'SEND_CODE_FOR_CONFIRMATION_SUCCESS',\n sendCodeFailure: 'SEND_CODE_FOR_CONFIRMATION_FAILURE',\n clearSendCodeError: 'SEND_CODE_FOR_CONFIRMATION_CLEAR_ERROR',\n clearConfirmCode: 'CLEAR_CONFIRM_CODE',\n};\n\nconst sendToConfirm = sessionId => ({\n type: actionTypes.sendToConfirm,\n payload: { sessionId },\n});\nconst sendToConfirmSuccess = () => ({\n type: actionTypes.sendToConfirmSuccess,\n});\nconst sendToConfirmFailure = () => ({\n type: actionTypes.sendToConfirmFailure,\n error: true,\n});\nconst sendCode = (sessionId, code, mobile) => ({\n type: actionTypes.sendCode,\n payload: { sessionId, code, mobile },\n});\nconst sendCodeFetching = () => ({\n type: actionTypes.sendCodeFetching,\n});\nconst sendCodeSuccess = () => ({\n type: actionTypes.sendCodeSuccess,\n});\nconst sendCodeFailure = error => ({\n type: actionTypes.sendCodeFailure,\n error: true,\n payload: error,\n});\nconst clearSendCodeError = () => ({\n type: actionTypes.clearSendCodeError,\n});\nconst clearConfirmCode = () => ({\n type: actionTypes.clearConfirmCode,\n});\nconst changeVerificationMobile = (\n sessionId,\n mobile,\n isBookingForSomeoneElse,\n) => ({\n type: actionTypes.changeVerificationMobile,\n payload: { sessionId, mobile, isBookingForSomeoneElse },\n});\nconst changeVerificationMobileSuccess = () => ({\n type: actionTypes.changeVerificationMobileSuccess,\n});\nconst changeVerificationMobileFailure = error => ({\n type: actionTypes.changeVerificationMobileFailure,\n error: true,\n payload: error,\n});\nconst actions = {\n sendToConfirm,\n sendToConfirmSuccess,\n sendToConfirmFailure,\n sendCode,\n sendCodeFetching,\n sendCodeSuccess,\n sendCodeFailure,\n clearSendCodeError,\n clearConfirmCode,\n changeVerificationMobile,\n changeVerificationMobileSuccess,\n changeVerificationMobileFailure,\n};\n\nexport { actionTypes, actions };\n","const actionTypes = {\n fetchCurrentRequests: 'SCRIPT_FETCH_CURRENT_REQUESTS',\n fetchCurrentRequestsSuccess: 'SCRIPT_FETCH_CURRENT_REQUESTS_SUCCESS',\n fetchCurrentRequestsFailure: 'SCRIPT_FETCH_CURRENT_REQUESTS_FAILURE',\n fetchPastRequests: 'SCRIPT_FETCH_PAST_REQUESTS',\n fetchPastRequestsSuccess: 'SCRIPT_FETCH_PAST_REQUESTS_SUCCESS',\n fetchPastRequestsFailure: 'SCRIPT_FETCH_PAST_REQUESTS_FAILURE',\n fetchScriptDetails: 'SCRIPT_FETCH_REQUEST_DETAILS',\n fetchScriptDetailsSuccess: 'SCRIPT_FETCH_REQUEST_DETAILS_SUCCESS',\n fetchScriptDetailsFailure: 'SCRIPT_FETCH_REQUEST_DETAILS_FAILURE',\n removeScript: 'SCRIPT_REMOVE',\n removeScriptSuccess: 'SCRIPT_REMOVE_SUCCESS',\n removeScriptFailure: 'SCRIPT_REMOVE_FAILURE',\n setRepeatScriptId: \"SET_REPEAT_SCRIPT_ID\"\n};\n\nconst actions = {\n fetchCurrentRequests: token => ({\n type: actionTypes.fetchCurrentRequests,\n payload: {\n token,\n },\n }),\n fetchCurrentRequestsSuccess: requests => ({\n type: actionTypes.fetchCurrentRequestsSuccess,\n payload: {\n requests,\n },\n }),\n fetchCurrentRequestsFailure: error => ({\n type: actionTypes.fetchCurrentRequestsFailure,\n payload: {\n error,\n },\n }),\n fetchPastRequests: token => ({\n type: actionTypes.fetchPastRequests,\n payload: {\n token,\n },\n }),\n fetchPastRequestsSuccess: requests => ({\n type: actionTypes.fetchPastRequestsSuccess,\n payload: {\n requests,\n },\n }),\n fetchPastRequestsFailure: error => ({\n type: actionTypes.fetchPastRequestsFailure,\n payload: {\n error,\n },\n }),\n fetchScriptDetails: (id, token) => ({\n type: actionTypes.fetchScriptDetails,\n payload: {\n id,\n token,\n },\n }),\n fetchScriptDetailsSuccess: details => ({\n type: actionTypes.fetchScriptDetailsSuccess,\n payload: {\n details,\n },\n }),\n fetchScriptDetailsFailure: error => ({\n type: actionTypes.fetchScriptDetailsFailure,\n payload: {\n error,\n },\n }),\n removeScript: (id, token) => ({\n type: actionTypes.removeScript,\n payload: {\n id,\n token,\n },\n }),\n removeScriptSuccess: () => ({\n type: actionTypes.removeScriptSuccess,\n }),\n removeScriptFailure: error => ({\n type: actionTypes.removeScriptFailure,\n payload: {\n error,\n },\n }),\n setRepeatScriptId: (id) => ({\n type: actionTypes.setRepeatScriptId,\n payload: {\n id\n }\n })\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n cancelAppointment: 'CANCEL_APPOINTMENT',\n cancelAppointmentSuccess: 'CANCEL_APPOINTMENT_SUCCESS',\n cancelAppointmentFailure: 'CANCEL_APPOINTMENT_FAILURE',\n checkForConfirmCancel: 'CANCEL_APPOINTMENT_CHECK_FOR_CONFIRMATION',\n confirmCancelSuccess: 'CANCEL_APPOINTMENT_CONFIRM_SUCCESS',\n confirmCancelFailure: 'CANCEL_APPOINTMENT_CONFIRM_FAILURE',\n confirmCancelPollStart: 'CANCEL_APPOINTMENT_CONFIRM_POLL_START',\n confirmCancelPollEnd: 'CANCEL_APPOINTMENT_CONFIRM_POLL_END',\n clearConfirmCancelState: 'CANCEL_APPOINTMENT_CLEAR_STATE',\n setIsBusy: 'CANCEL_APPOINTMENT_SET_IS_BUSY',\n checkAbleToCancel: 'CANCEL_APPOINTMENT_CHECK_ABLE_TO_CANCEL',\n setCancelData: 'CANCEL_APPOINTMENT_ABLE_TO_CANCEL_SET_DATA',\n ableToCancelFailure: 'CANCEL_APPOINTMENT_ABLE_TO_CANCEL_FAILURE',\n clearCancelCheckState: 'CANCEL_APPOINTMENT_CLEAR_ABLE_TO_CANCEL_STATE',\n};\n\nconst actions = {\n cancelAppointment: (sessionId, reason) => ({\n type: actionTypes.cancelAppointment,\n payload: {\n sessionId,\n reason,\n },\n }),\n cancelAppointmentSuccess: () => ({\n type: actionTypes.cancelAppointmentSuccess,\n }),\n cancelAppointmentFailure: error => ({\n type: actionTypes.cancelAppointmentFailure,\n error: true,\n payload: { error },\n }),\n checkForConfirmCancel: sessionId => ({\n type: actionTypes.checkForConfirmCancel,\n payload: { sessionId },\n }),\n confirmCancelSuccess: () => ({\n type: actionTypes.confirmCancelSuccess,\n }),\n confirmCancelFailure: error => ({\n type: actionTypes.confirmCancelFailure,\n error: true,\n payload: { error },\n }),\n confirmCancelPollStart: sessionId => ({\n type: actionTypes.confirmCancelPollStart,\n payload: { sessionId },\n }),\n confirmCancelPollEnd: (cancelled, error) => ({\n type: actionTypes.confirmCancelPollEnd,\n // eslint-disable-next-line no-unneeded-ternary\n error: error ? true : false,\n payload: { cancelled, error },\n }),\n clearConfirmCancelState: () => ({\n type: actionTypes.clearConfirmCancelState,\n }),\n setIsBusy: () => ({\n type: actionTypes.setIsBusy,\n }),\n checkAbleToCancel: (sessionId, reason) => ({\n type: actionTypes.checkAbleToCancel,\n payload: {\n sessionId,\n reason,\n },\n }),\n setCancelData: (data, isAbleToCancel) => ({\n type: actionTypes.setCancelData,\n payload: {\n data,\n isAbleToCancel,\n },\n }),\n ableToCancelFailure: error => ({\n type: actionTypes.ableToCancelFailure,\n payload: {\n error,\n },\n }),\n clearCancelCheckState: () => ({\n type: actionTypes.clearCancelCheckState,\n }),\n};\n\nexport { actionTypes, actions };\n","const actionTypes = {\n setComponentIndex: 'MAIN_SHELL_SET_COMPONENT_INDEX',\n clearComponentIndex: 'MAIN_SHELL_CLEAR_COMPONENT_INDEX',\n setWhiteBoxNotification: 'MAIN_SHELL_SET_WHITE_BOX_NOTIFICATION',\n};\n\nconst actions = {\n setComponentIndex: index => ({\n type: actionTypes.setComponentIndex,\n payload: {\n index,\n },\n }),\n clearComponentIndex: () => ({\n type: actionTypes.clearComponentIndex,\n }),\n setWhiteBoxNotification: payload => ({\n type: actionTypes.setWhiteBoxNotification,\n payload,\n }),\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n fetchAllPractices: 'SCRIPT_FETCH_ALL_PRACTICES',\n fetchAllPracticesSuccess: 'SCRIPT_FETCH_ALL_PRACTICES_SUCCESS',\n fetchAllPracticesFailure: 'SCRIPT_FETCH_ALL_PRACTICES_FAILURE',\n search: 'SCRIPT_SEARCH_PRACTICES',\n searchSuccess: '_SCRIPTSEARCH_PRACTICE_SUCCESS',\n searchMeds: 'SCRIPT_SEARCH_MEDICATIONS',\n searchMedsSuccess: 'SCRIPT_SEARCH_MEDICATIONS_SUCCESS',\n searchMedsFailure: 'SCRIPT_SEARCH_MEDICATIONS_FAILURE',\n clearSelection: 'SCRIPT_CLEAR_SEARCH',\n};\n\nconst actions = {\n fetchAllPractices: token => ({\n type: actionTypes.fetchAllPractices,\n payload: {\n token,\n },\n }),\n fetchAllPracticesSuccess: practices => ({\n type: actionTypes.fetchAllPracticesSuccess,\n payload: {\n practices,\n },\n }),\n fetchAllPracticesFailure: error => ({\n type: actionTypes.fetchAllPracticesFailure,\n payload: { error },\n error: true,\n }),\n search: (items, query) => ({\n type: actionTypes.search,\n payload: {\n query,\n items,\n },\n }),\n searchSuccess: matched => ({\n type: actionTypes.searchSuccess,\n payload: {\n matched,\n },\n }),\n clearSelection: () => ({\n type: actionTypes.clearSelection,\n }),\n searchMeds: (query = '', token) => ({\n type: actionTypes.searchMeds,\n payload: {\n query,\n token,\n },\n }),\n searchMedsSuccess: meds => ({\n type: actionTypes.searchMedsSuccess,\n payload: {\n meds,\n },\n }),\n searchMedsFailure: error => ({\n type: actionTypes.searchMedsFailure,\n payload: {\n error,\n },\n error: true,\n }),\n};\n\nexport { actions, actionTypes };\n","const filterTypes = {\n morning: 'MORNING',\n afternoon: 'AFTERNOON',\n evening: 'EVENING',\n};\n\nconst actionTypes = {\n filterMorning: 'FILTER_PRACTICE_BOOKINGS_MORNING',\n filterAfternoon: 'FILTER_PRACTICE_BOOKINGS_AFTERNOON',\n filterEvening: 'FILTER_PRACTICE_BOOKINGS_EVENING',\n clearFilter: 'CLEAR_FILTER_PRACTICE_BOOKINGS',\n};\n\nconst filterMorning = () => ({\n type: actionTypes.filterMorning,\n});\n\nconst filterAfternoon = () => ({\n type: actionTypes.filterAfternoon,\n});\n\nconst filterEvening = () => ({\n type: actionTypes.filterEvening,\n});\n\nconst clearFilter = () => ({\n type: actionTypes.clearFilter,\n});\n\nconst actions = {\n filterMorning,\n filterAfternoon,\n filterEvening,\n clearFilter,\n};\n\nexport { actions, actionTypes, filterTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"form_container__4PTcS\",\"inputContainer\":\"form_inputContainer__3hh4x\",\"expContainer\":\"form_expContainer__3ftDU form_inputContainer__3hh4x\",\"cvcContainer\":\"form_cvcContainer__eQztA form_inputContainer__3hh4x\",\"cardIcon\":\"form_cardIcon__2DRg0\",\"label\":\"form_label__3y14w\",\"focused\":\"form_focused__2E-k3\",\"input\":\"form_input__JX4ou input_input__2YbVH\",\"numberInput\":\"form_numberInput__1b6-r form_input__JX4ou input_input__2YbVH form_input__JX4ou input_input__2YbVH\",\"doubleContainer\":\"form_doubleContainer__g0h3u\",\"submit\":\"form_submit__1r7LB button_button__2n_ir\",\"button\":\"form_button__1iCqu button_button__2n_ir\",\"loginButton\":\"form_loginButton__3CMXn form_button__1iCqu button_button__2n_ir\",\"activeButton\":\"form_activeButton__Q3uQ8\",\"arrow\":\"form_arrow__38qN5\",\"spinner\":\"form_spinner__3IBns form_arrow__38qN5 form_arrow__38qN5\",\"loginBlurb\":\"form_loginBlurb__1KYnd\",\"loginBlurbText\":\"form_loginBlurbText__2t4JT\",\"error\":\"form_error__J0dO3\",\"cardLabel\":\"form_cardLabel__3Qi3x\"};","const actionTypes = {\n getPracticeListings: 'GET_PRACTICE_LISTINGS',\n getPracticeListingsSuccess: 'GET_PRACTICE_LISTINGS_SUCCESS',\n getPracticeListingsFailure: 'GET_PRACTICE_LISTINGS_FAILURE',\n linkPractice: 'LINK_PRACTICE_TO_USER',\n linkPracticeSuccess: 'LINK_PRACTICE_TO_USER_SUCCESS',\n linkPracticeFailure: 'LINK_PRACTICE_TO_USER_FAILURE',\n unlinkPractice: 'UNLINK_PRACTICE_FROM_USER',\n unlinkPracticeSuccess: 'UNLINK_PRACTICE_FROM_USER_SUCCESS',\n unlinkPracticeFailure: 'UNLINK_PRACTICE_FROM_USER_FAILURE',\n};\n\nconst actions = {\n getPracticeListings: token => ({\n type: actionTypes.getPracticeListings,\n payload: {\n token,\n },\n }),\n getPracticeListingsSuccess: practices => ({\n type: actionTypes.getPracticeListingsSuccess,\n payload: {\n practices,\n },\n }),\n getPracticeListingsFailure: error => ({\n type: actionTypes.getPracticeListingsFailure,\n error: true,\n payload: {\n error,\n },\n }),\n unlinkPractice: (practice, token) => ({\n type: actionTypes.unlinkPractice,\n payload: {\n practice,\n token,\n },\n }),\n unlinkPracticeSuccess: practice => ({\n type: actionTypes.unlinkPracticeSuccess,\n payload: {\n practice,\n },\n }),\n unlinkPracticeFailure: error => ({\n type: actionTypes.unlinkPracticeFailure,\n error: true,\n payload: {\n error,\n },\n }),\n linkPractice: (practice, token, onFinishAdd, shouldAdd) => ({\n type: actionTypes.linkPractice,\n payload: {\n practice,\n token,\n onFinishAdd,\n shouldAdd,\n },\n }),\n linkPracticeSuccess: (practice, matched, usingVensa) => ({\n type: actionTypes.linkPracticeSuccess,\n payload: {\n practice,\n matched,\n usingVensa,\n },\n }),\n linkPracticeFailure: error => ({\n type: actionTypes.linkPracticeFailure,\n error: true,\n payload: {\n error,\n },\n }),\n};\n\nexport { actions, actionTypes };\n","import React from 'react';\n\nconst DEFAULT_GUID = '00000000-0000-0000-0000-000000000000';\n\nexport class HttpStatusCode {\n static readonly OK = 200;\n static readonly PARTIAL_CONTENT = 206;\n static readonly BAD_REQUEST = 400;\n static readonly NOTFOUND = 404;\n static readonly CONFLICT = 409;\n static readonly UNKNOWN = 520;\n}\n\n// 0 - Unverified\n// 1 - Verified\n// 2 - Pending\nexport class VerificationStatus {\n static readonly UNVERIFIED = 0;\n static readonly VERIFIED = 1;\n static readonly PENDING = 2;\n}\n\nexport class PatientStatus {\n static readonly NONE = -1; // Creating a dependant\n static readonly VERIFIED = 2; // -\n}\n\nexport {\n DEFAULT_GUID,\n};","var _defs, _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgMenu = function SvgMenu(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"-15889 -19371 20.957 17\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_844\",\n transform: \"translate(-15889 -19370)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1057\",\n d: \"M-2835.314,10084.765h-20.956\",\n transform: \"translate(2856.271 -10084.765)\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1058\",\n d: \"M-2835.314,10084.819h-20.956\",\n transform: \"translate(2856.271 -10077.318)\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1059\",\n d: \"M-2835.314,10084.765h-20.956\",\n transform: \"translate(2856.271 -10069.765)\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMenu, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/menu.76513437.svg\";\nexport { ForwardRef as ReactComponent };","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n\nimport { ReactComponent as MessagesIcon } from '../../../../../../svgs/envelope.svg';\nimport styles from './messages.module.css';\n\nconst Messages = ({ onClick, className }) => (\n \n \n
\n);\n\nMessages.propTypes = {\n onClick: PropTypes.func.isRequired,\n className: PropTypes.arrayOf(PropTypes.string),\n};\n\nexport default Messages;\n","import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { bindActionCreators } from 'redux';\nimport { connect } from 'react-redux';\n\nimport { actions as appActions } from '../../../../App/actions/actions';\nimport { actions as menuActions } from '../Menu/actions/actions';\n// eslint-disable-next-line max-len\nimport { actions as appointmentActions } from '../../../../AppointmentsPage/actions/actions';\nimport { ReactComponent as MenuIcon } from '../../../../svgs/menu.svg';\nimport { ReactComponent as Arrow } from '../../../../svgs/rightarrow2.svg';\nimport styles from './menuButton.module.css';\n\nclass MenuButton extends Component {\n static propTypes = {\n toggleCta: PropTypes.func.isRequired,\n toggleShrinkApp: PropTypes.func.isRequired,\n toggleMenu: PropTypes.func.isRequired,\n isShowing: PropTypes.bool.isRequired,\n };\n constructor(props) {\n super(props);\n this.handleMenuClick = this.handleMenuClick.bind(this);\n }\n handleMenuClick() {\n if (this.props.isShowing) {\n //setTimeout(this.props.toggleMenu, 400);\n } else {\n this.props.toggleShrinkApp();\n this.props.toggleMenu();\n }\n setTimeout(this.props.toggleCta, 400);\n }\n render() {\n return (\n \n {this.props.isShowing ? (\n \n ) : (\n \n )}\n \n );\n }\n}\n\nconst mapStateToProps = state => ({\n isShowing: state.appStylesReducer.shrink,\n});\nconst mapDispatchToProps = dispatch => ({\n toggleShrinkApp: bindActionCreators(appActions.toggleShrinkApp, dispatch),\n toggleCta: bindActionCreators(appointmentActions.toggleCta, dispatch),\n showMenu: bindActionCreators(menuActions.showMenu, dispatch),\n hideMenu: bindActionCreators(menuActions.hideMenu, dispatch),\n toggleMenu: bindActionCreators(menuActions.toggleMenu, dispatch),\n});\n\nexport default connect(\n mapStateToProps,\n mapDispatchToProps,\n)(MenuButton);\nexport { MenuButton };\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { connect } from 'react-redux';\nimport classnames from 'classnames';\nimport styles from './header.module.css';\nimport { ReactComponent as Arrow } from '../../../../svgs/rightarrow2.svg';\nimport { ReactComponent as Cross } from '../../../../svgs/crossGrey.svg';\nimport Messages from './components/Messages/index';\nimport Logo from './components/Logo/index';\nimport MenuButton from '../MenuButton/index';\nimport Menu from '../Menu/index';\nimport { go } from '../../../../routes';\n// eslint-disable-next-line\nimport { goBack } from '../../../../routes/utils';\nimport { isDesktop } from '../../../../config';\nimport { isWhiteBoxNotificationOpen } from '../MainShell/selectors';\n\nconst getStyleForShowingWhiteBox = isWhiteBoxNotificationOpen => {\n\n if (window.location.pathname.startsWith('/home')) {\n if (isWhiteBoxNotificationOpen) return { position: 'static' };\n } else {\n if (isWhiteBoxNotificationOpen) return { top: \"initial\" } ;\n }\n \n return { }\n}\n\nconst Header = ({\n isWhiteBoxNotificationOpen,\n firstLine,\n isWhite,\n headerClassNames,\n secondLine,\n showMenu,\n showHelp,\n showCancel,\n hideArrow,\n goBackFn,\n backArrowFn,\n saveFn,\n customIcon,\n pic,\n token,\n subheading,\n showCross,\n phrText,\n noAfter,\n showCrossRight\n}) => {\n return (\n \n {isDesktop() && token &&
}\n
\n
\n {!showMenu && !hideArrow &&(\n
\n )}\n {showCross && (\n
\n )}\n {showMenu &&
}\n
\n {pic && (\n
\n )}\n {firstLine ? \n \tfirstLine : \n \t
{\n\t\t\t\t\t\tif (window.location.pathname.endsWith(\"home\")) { window.location.reload() }\n\t\t\t\t\t\telse { go.home(); }\n\t\t\t\t\t}} \n\t\t\t\t\tstyle={{\n\t\t\t\t\t\twidth: \"80px\",\n\t\t\t\t\t\tmargin: \"auto\"\n\t\t\t\t\t}} \n\t\t\t\t/>\n\t\t\t}\n {subheading !== undefined && subheading !== \"\" && {subheading}
}\n \n
\n {showMenu &&
}\n {customIcon && customIcon}\n {phrText &&\n
\n {phrText}\n
\n }\n {showHelp && (\n
\n HELP\n \n )}\n {showCancel && (\n
go.home(0)}>\n Cancel\n \n )}\n {showCrossRight && (\n
go.home(2)}\n style={isWhite ? { fill: '#6C6C6C', zIndex: \"1\" } : { zIndex: \"1\" }}\n />\n )}\n {saveFn && (\n \n SAVE\n \n )}\n \n {secondLine &&
{secondLine}
}\n
\n );\n};\nHeader.propTypes = {\n backArrowFn: PropTypes.func, // mapped from state\n goBackFn: PropTypes.func, // passed through component\n saveFn: PropTypes.func,\n customIcon: PropTypes.node,\n firstLine: PropTypes.node,\n secondLine: PropTypes.node,\n hideArrow: PropTypes.bool,\n showMenu: PropTypes.bool,\n showHelp: PropTypes.bool,\n showCancel: PropTypes.bool,\n isWhite: PropTypes.bool,\n token: PropTypes.string,\n headerClassNames: PropTypes.string,\n isWhiteBoxNotificationOpen: PropTypes.bool,\n};\n\nconst mapStateToProps = state => ({\n token: state.loginReducer.token,\n backArrowFn: state.headerReducer.backArrowFn,\n customIcon: state.headerReducer.customIcon,\n isWhiteBoxNotificationOpen: isWhiteBoxNotificationOpen(state),\n});\n\nexport default connect(mapStateToProps)(Header);\nexport { styles, Header };\n","import moment from 'moment';\n\nconst inputFormat = ['DD-MM-YYYY', 'DD/MM/YYYY', 'YYYY-MM-DD'];\n\nconst getMoment = date => moment.utc(date, inputFormat, true);\n\nconst isValidFormat = date => getMoment(date).isValid();\n\nconst getDateString = date => isValidFormat(date) && getMoment(date);\n\nconst toServerFormat = date =>\n moment.utc(date, inputFormat).format('YYYY-MM-DD');\n\nconst toNormalFormat = date =>\n moment.utc(date, inputFormat).format('DD/MM/YYYY');\n\nconst toNormalTime = date => {\n return moment(date).format('hh:mma');\n}\n\nconst isUnderAge = date =>\n getMoment(date).isAfter(moment().subtract(16, 'years'));\n\nconst isTooOld = date =>\n getMoment(date).isBefore(moment().subtract(110, 'years'));\n\nconst isInFuture = date => getMoment(date).isAfter(moment());\n\nconst isValidDate = (\n date,\n allowUnderage = false,\n onlyUnderAge = false,\n required = true,\n) => {\n if (!required) return (isValidFormat(date) && !isInFuture(date)) || !date;\n if (onlyUnderAge)\n return isValidFormat(date) && isUnderAge(date) && !isInFuture(date);\n return (\n isValidFormat(date) &&\n !isInFuture(date) &&\n !isTooOld(date) &&\n (allowUnderage || !isUnderAge(date))\n );\n};\n\nconst getErrorMessage = (date, onlyUnderAge) => {\n if (!isValidFormat(date) || isTooOld(date) || isInFuture(date)) {\n return 'Invalid Date of Birth';\n }\n if (onlyUnderAge) {\n if (!isUnderAge(date)) {\n return 'Too old to be a minor';\n }\n return '';\n }\n if (isUnderAge(date)) {\n return 'You must be at least 16 years old';\n }\n return '';\n};\nconst tConvert = (date) => {\n var hours = date.getHours();\n var minutes = date.getMinutes();\n var ampm = hours >= 12 ? 'pm' : 'am';\n hours = hours % 12;\n hours = hours ? hours : 12; // the hour '0' should be '12'\n minutes = minutes < 10 ? '0'+minutes : minutes;\n var strTime = hours + ':' + minutes + ' ' + ampm;\n return strTime;\n}\n\nexport {\n isValidFormat,\n isValidDate,\n isInFuture,\n isUnderAge,\n isTooOld,\n getErrorMessage,\n getDateString,\n getMoment,\n toServerFormat,\n toNormalFormat,\n tConvert,\n toNormalTime\n};\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"requestScriptMobile_container__114v6\",\"fixed\":\"requestScriptMobile_fixed__1ILU3\",\"listContainer\":\"requestScriptMobile_listContainer__1qZvE\",\"otherPracticeContainer\":\"requestScriptMobile_otherPracticeContainer__yo2h0\",\"verifyContainer\":\"requestScriptMobile_verifyContainer__2Vd_E\",\"where\":\"requestScriptMobile_where__1pHXz\",\"backArrow\":\"requestScriptMobile_backArrow__3Khew\",\"spinnerContainer\":\"requestScriptMobile_spinnerContainer__1VpzM\",\"spinner\":\"requestScriptMobile_spinner__1DsqH\",\"enter\":\"requestScriptMobile_enter__10x98\",\"enterActive\":\"requestScriptMobile_enterActive__29sYO\",\"leave\":\"requestScriptMobile_leave__2SXtj\",\"leaveActive\":\"requestScriptMobile_leaveActive__1VOlE\"};","const actionTypes = {\n fillSession: 'FILL_SESSION',\n fillSessionSuccess: 'FILL_SESSION_SUCCESS',\n fillSessionFailure: 'FILL_SESSION_FAILURE',\n checkEnrolledPatient: 'CHECK_PATIENT_IS_ENROLLED',\n checkEnrolledDependant: 'CHECK_DEPENDANT_IS_ENROLLED',\n checkEnrolledSomeoneElse: 'CHECK_SOMEONE_ELSE_IS_ENROLLED',\n enrolledPatientSuccess: 'CHECK_PATIENT_IS_ENROLLED_SUCCESS',\n enrolledPatientFailure: 'CHECK_PATIENT_IS_ENROLLED_FAILURE',\n clearState: 'CHECK_PATIENT_IS_ENROLLED_CLEAR_STATE',\n};\n\nconst actions = {\n fillSession: (\n UrlName,\n OrganisationId, \n SessionId,\n PmsUserId, \n AppointmentId, \n Time,\n ) => ({\n type: actionTypes.fillSession,\n payload: {\n UrlName,\n OrganisationId, \n SessionId,\n PmsUserId, \n AppointmentId, \n Time,\n },\n error: null,\n }),\n checkEnrolledPatient: (\n practiceUrl,\n InitiatorFirstName, \n InitiatorLastName, \n InitiatorMobile,\n InitiatorDateOfBirth, \n OrganisationId, \n PmsUserId, \n AppointmentId, \n Time,\n guest = false\n ) => ({\n type: actionTypes.checkEnrolledPatient,\n payload: {\n practiceUrl,\n InitiatorFirstName, \n InitiatorLastName, \n InitiatorMobile,\n InitiatorDateOfBirth, \n OrganisationId, \n PmsUserId, \n AppointmentId, \n Time,\n guest\n },\n error: null,\n }),\n checkEnrolledDependant: (\n practiceUrl,\n InitiatorFirstName, \n InitiatorLastName, \n InitiatorMobile, \n InitiatorDateOfBirth,\n OrganisationId, \n PmsUserId, \n AppointmentId, \n Time, \n DependantId\n ) => ({\n type: actionTypes.checkEnrolledDependant,\n payload: {\n practiceUrl,\n InitiatorFirstName, \n InitiatorLastName, \n InitiatorMobile,\n InitiatorDateOfBirth, \n OrganisationId, \n PmsUserId, \n AppointmentId, \n Time, \n DependantId\n },\n error: null,\n }),\n checkEnrolledSomeoneElse: (\n practiceUrl,\n InitiatorFirstName, \n InitiatorLastName, \n InitiatorMobile, \n InitiatorDateOfBirth,\n OrganisationId, \n PmsUserId, \n AppointmentId, \n Time, \n FirstName, \n LastName,\n DateOfBirth, \n Mobile\n ) => ({\n type: actionTypes.checkEnrolledSomeoneElse,\n payload: {\n practiceUrl,\n InitiatorFirstName, \n InitiatorLastName, \n InitiatorMobile, \n InitiatorDateOfBirth,\n OrganisationId, \n PmsUserId, \n AppointmentId, \n Time, \n FirstName, \n LastName,\n DateOfBirth, \n Mobile\n },\n error: null,\n }),\n\n\n enrolledPatientSuccess: (data) => ({\n type: actionTypes.enrolledPatientSuccess,\n payload: {\n data\n }\n }),\n enrolledPatientFailure: error => ({\n type: actionTypes.enrolledPatientFailure,\n payload: {\n error,\n },\n }),\n\n fillSessionSuccess: (data) => ({\n type: actionTypes.fillSessionSuccess,\n payload: {\n data\n }\n }),\n fillSessionFailure: error => ({\n type: actionTypes.fillSessionFailure,\n payload: {\n error,\n },\n }),\n\n clearState: () => ({\n type: actionTypes.clearState,\n }),\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n setIsBusy: 'APPOINTMENT_CONFIRMATION_SET_IS_BUSY',\n submitAppointment: 'SUBMIT_APPOINTMENT',\n submitAppointmentSuccess: 'SUBMIT_APPOINTMENT_SUCCESS',\n submitAppointmentFailure: 'SUBMIT_APPOINTMENT_FAILURE',\n checkForConfirmation: 'CHECK_FOR_CONFIRMATION',\n checkConfirmationSuccess: 'CHECK_FOR_CONFIRMATION_SUCCESS',\n checkConfirmationFailure: 'CHECK_FOR_CONFIRMATION_FAILURE',\n confirmationPollStart: 'APPOINTMENT_CONFIRMATION_POLL_START',\n confirmationPollEnd: 'APPOINTMENT_CONFIRMATION_POLL_END',\n clearConfirmationState: 'CLEAR_APPOINTMENT_CONFIRMATION_STATE',\n};\nconst setIsBusy = () => ({\n type: actionTypes.setIsBusy,\n});\nconst submitAppointment = (sessionId, payLater) => ({\n type: actionTypes.submitAppointment,\n payload: { sessionId, payLater },\n});\nconst submitAppointmentSuccess = () => ({\n type: actionTypes.submitAppointmentSuccess,\n});\nconst submitAppointmentFailure = error => ({\n type: actionTypes.submitAppointmentFailure,\n error: true,\n payload: { error },\n});\nconst checkForConfirmation = sessionId => ({\n type: actionTypes.checkForConfirmation,\n payload: { sessionId },\n});\nconst checkConfirmationSuccess = () => ({\n type: actionTypes.checkConfirmationSuccess,\n});\nconst checkConfirmationFailure = error => ({\n type: actionTypes.checkConfirmationFailure,\n error: true,\n payload: { error },\n});\nconst confirmationPollStart = sessionId => ({\n type: actionTypes.confirmationPollStart,\n payload: { sessionId },\n});\nconst confirmationPollEnd = (confirmed, error) => ({\n type: actionTypes.confirmationPollEnd,\n // eslint-disable-next-line no-unneeded-ternary\n error: error ? true : false,\n payload: { confirmed, error },\n});\nconst clearConfirmationState = () => ({\n type: actionTypes.clearConfirmationState,\n});\n\nconst actions = {\n setIsBusy,\n submitAppointment,\n submitAppointmentSuccess,\n submitAppointmentFailure,\n checkForConfirmation,\n checkConfirmationSuccess,\n checkConfirmationFailure,\n confirmationPollStart,\n confirmationPollEnd,\n clearConfirmationState,\n};\n\nexport { actionTypes, actions };\n","import React from 'react';\nimport { observer } from 'mobx-react-lite';\nimport styled from 'styled-components';\nimport { useAccountStore } from '../../store/mobx/mobx';\nimport { go } from '../../routes';\nimport { formatName } from 'libs/misc';\n\nconst Container = styled.div`\n width: 100%;\n padding: 1rem 2rem;\n display: flex;\n flex-direction: row;\n align-items: center;\n height: fit-content;\n font-size: 15px;\n background-color: white;\n`\nconst Item = styled.div`\n cursor: pointer;\n color: #07A3C8;\n height: fit-content;\n`\nconst PaymentsSub = [\"Payment Method\", \"Transaction History\", \"Active Outstanding\"]\nconst SettingsSub = [\"Home\", \"Identity\", \"Privacy\", \"Notification\", \"Security\"]\nconst PHRSub = [\"My Health Record\", \"My Health Summary\", \"Labs/Results\", \"Immunisations\", \"Clinical Notes\"]\n\ninterface Props {\n lowLevel: string;\n lowLink: () => void;\n}\n\nconst RouteBar: React.FC = observer(({lowLevel, lowLink}) => {\n const { FirstName } = useAccountStore().profile;\n const { LastName } = useAccountStore().profile;\n\n let highLevel: string = \"\";\n let onClick: () => void = () => console.log(\"none\");\n\n if (PaymentsSub.includes(lowLevel)) { \n highLevel = \"My Wallet\"; \n onClick = SettingsSub[0] !== lowLevel ? () => go.settings() : () => window.location.reload(); \n } else if (SettingsSub.includes(lowLevel)) { \n highLevel = \"Settings\"; \n onClick = SettingsSub[0] !== lowLevel ? () => go.settings() : () => window.location.reload(); \n } else if (PHRSub.includes(lowLevel)) { \n highLevel = \"My Health Record\"; \n onClick = SettingsSub[0] !== lowLevel ? () => go.PHRSummary() : () => window.location.reload(); \n }\n\n return (\n \n - onClick()}>{highLevel}
/ \n - {lowLevel}
/ {formatName(FirstName)} {formatName(LastName)}\n \n );\n});\n\nexport default RouteBar;","const actionTypes = {\n getAllPractices: 'GET_ALL_PRACTICES',\n getAllPracticesSuccess: 'GET_ALL_PRACTICES_SUCCESS',\n getAllPracticesFailure: 'GET_ALL_PRACTICES_FAILURE',\n searchPractices: 'SEARCH_ALL_PRACTICES',\n searchPracticesSuccess: 'SEARCH_ALL_PRACTICES_SUCCESS',\n clearPracticeSelection: 'SEARCH_ALL_PRACTICES_CLEAR',\n};\n\nconst actions = {\n getAllPractices: () => ({\n type: actionTypes.getAllPractices,\n }),\n getAllPracticesSuccess: practices => ({\n type: actionTypes.getAllPracticesSuccess,\n payload: {\n practices,\n },\n }),\n getAllPracticesError: error => ({\n type: actionTypes.getAllPracticesFailure,\n error: true,\n payload: {\n error,\n },\n }),\n searchPractices: (practices, query) => ({\n type: actionTypes.searchPractices,\n payload: {\n query,\n practices,\n },\n }),\n searchPracticesSuccess: practices => ({\n type: actionTypes.searchPracticesSuccess,\n payload: {\n practices,\n },\n }),\n clearPracticeSelection: () => ({\n type: actionTypes.clearPracticeSelection,\n }),\n};\n\nexport { actions, actionTypes };\n","import React, { useState } from 'react';\nimport { observer } from 'mobx-react-lite';\nimport styled from 'styled-components';\nimport { go } from '../../routes';\nimport { useEffect } from 'react';\nimport { useMyHealthStore } from 'store/mobx/mobx';\n\nconst Container = styled.div`\n background-color: #F4F4F4;\n width: 100%;\n height: fit-content;\n padding: 0.6rem 2rem;\n`\nconst TabContainer = styled.div`\n width: fit-content;\n display: flex;\n margin: 0 auto;\n`\nconst Tab = styled.div`\n padding: 0rem 1rem;\n font-size: 14px;\n cursor: pointer;\n`\n\ninterface Props {\n id: number;\n type: number;\n hideNotes?: boolean;\n hideDocuments?: boolean;\n}\ninterface Tab {\n id: number;\n name: string;\n onClick: () => void;\n}\n\nconst SettingsTabs = [\n {\n id: 0,\n name: \"Home\",\n onClick: () => { go.settings() }\n },\n {\n id: 1,\n name: \"Identity\",\n onClick: () => { go.identity() }\n },\n {\n id: 2,\n name: \"Privacy\",\n onClick: () => { go.privacy() }\n },\n {\n id: 3,\n name: \"Security\",\n onClick: () => { go.security() }\n }\n]\nconst PHRTabs = [\n {\n id: 0,\n name: \"Health Summary\",\n onClick: () => { go.PHRSummary() }\n },\n {\n id: 1,\n name: \"Labs/Results\",\n onClick: () => { go.LabsPage(); }\n },\n {\n id: 2,\n name: \"Immunisations\",\n onClick: () => { go.ImmsPage(); }\n },\n {\n id: 3,\n name: \"Health Documents\",\n onClick: () => { go.DocumentsPage() }\n },\n {\n id: 4,\n name: \"Clinical Notes\",\n onClick: () => { go.NotesPage() }\n },\n]\nconst Tabs = [SettingsTabs, PHRTabs];\n\nconst TabBar: React.FC = observer(({id, type, hideNotes, hideDocuments}) => {\n //Always remove hidden tabs to avoid duplicates, and add back if not hiding\n const documentsIndex = PHRTabs.findIndex(p => p.id === 3);\n if (documentsIndex > -1) {\n PHRTabs.splice(documentsIndex, 1);\n }\n const notesIndex = PHRTabs.findIndex(p => p.id === 4);\n if (notesIndex > -1) {\n PHRTabs.splice(notesIndex, 1);\n }\n if (!hideDocuments) {\n PHRTabs.push(\n {\n id: 3,\n name: \"Health Documents\",\n onClick: () => { go.DocumentsPage() }\n },\n )\n }\n if (!hideNotes) {\n PHRTabs.push(\n {\n id: 4,\n name: \"Clinical Notes\",\n onClick: () => { go.NotesPage() }\n },\n )\n }\n return (\n \n \n {Tabs[type].map((tab) => {\n return (\n \n {tab.name}\n \n )}\n )}\n \n \n );\n});\n\nexport default TabBar;","const actionTypes = {\n fetchConnectedPractices: 'SCRIPT_FETCH_CONNECTED_PRACTICES',\n fetchConnectedPracticesSuccess: 'SCRIPT_FETCH_CONNECTED_PRACTICES_SUCCESS',\n fetchConnectedPracticesFailure: 'SCRIPT_FETCH_CONNECTED_PRACTICES_FAILURE',\n fetchDoctors: 'SCRIPT_FETCH_DOCTORS',\n fetchDoctorsSuccess: 'SCRIPT_FETCH_DOCTORS_SUCCESS',\n fetchDoctorsFailure: 'SCRIPT_FETCH_DOCTORS_FAILURE',\n};\n\nconst actions = {\n fetchConnectedPractices: id => ({\n type: actionTypes.fetchConnectedPractices,\n payload: {\n id,\n },\n }),\n fetchConnectedPracticesSuccess: practices => ({\n type: actionTypes.fetchConnectedPracticesSuccess,\n payload: {\n practices,\n },\n }),\n fetchConnectedPracticesFailure: error => ({\n type: actionTypes.fetchConnectedPracticesFailure,\n payload: { error },\n error: true,\n }),\n fetchDoctors: (id, token) => ({\n type: actionTypes.fetchDoctors,\n payload: {\n id,\n token,\n },\n }),\n fetchDoctorsSuccess: doctors => ({\n type: actionTypes.fetchDoctorsSuccess,\n payload: {\n doctors,\n },\n }),\n fetchDoctorsFailure: error => ({\n type: actionTypes.fetchDoctorsFailure,\n payload: { error },\n error: true,\n }),\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n\taddPharmacy: 'SCRIPT_ADD_PHARMACY_INFO',\n\taddPharmacySuccess: 'SCRIPT_ADD_PHARMACY_INFO_SUCCESS',\n\taddPharmacyFailure: 'SCRIPT_ADD_PHARMACY_INFO_FAILURE',\n\tdeletePharmacy: 'SCRIPT_DELETE_PHARMACY_INFO',\n\tdeletePharmacySuccess: 'SCRIPT_DELETE_PHARMACY_INFO_SUCCESS',\n\tdeletePharmacyFailure: 'SCRIPT_DELETE_PHARMACY_INFO_FAILURE',\n\tgetOptions: 'GET_OPTIONS',\n\tgetOptionsSuccess: 'GET_OPTIONS_SUCCESS',\n\tgetOptionsFailure: 'GET_OPTIONS_FAILURE',\n};\n\nconst addPharmacy = (details, token) => ({\n\ttype: actionTypes.addPharmacy,\n\tpayload: {\n\t\tdetails,\n\t\ttoken,\n\t},\n});\nconst addPharmacySuccess = Id => ({\n\ttype: actionTypes.addPharmacySuccess,\n\tpayload: {\n\t\tId,\n\t},\n});\nconst addPharmacyFailure = err => ({\n\ttype: actionTypes.addPharmacyFailure,\n\terror: true,\n\tpayload: {\n\t\terr,\n\t},\n});\n\nconst deletePharmacy = (id, token) => ({\n\ttype: actionTypes.deletePharmacy,\n\tpayload: {\n\t\tid,\n\t\ttoken,\n\t},\n});\nconst deletePharmacySuccess = () => ({\n\ttype: actionTypes.deletePharmacySuccess,\n});\nconst deletePharmacyFailure = err => ({\n\ttype: actionTypes.deletePharmacyFailure,\n\terror: true,\n\tpayload: {\n\t\terr,\n\t},\n});\n\nconst getOptions = (token, orgId) => ({\n\ttype: actionTypes.getOptions,\n\tpayload: {\n\t\ttoken,\n\t\torgId,\n\t}\n});\nconst getOptionsSuccess = (options) => ({\n\ttype: actionTypes.getOptionsSuccess,\n\tpayload: {\n\t\toptions: options\n\t}\n});\nconst getOptionsFailure = err => ({\n\ttype: actionTypes.getOptionsFailure,\n\tpayload: {\n\t\terr\n\t}\n});\n\nconst actions = {\n\taddPharmacy,\n\taddPharmacySuccess,\n\taddPharmacyFailure,\n\tdeletePharmacy,\n\tdeletePharmacySuccess,\n\tdeletePharmacyFailure,\n\tgetOptions,\n\tgetOptionsSuccess,\n\tgetOptionsFailure,\n};\n\nexport { actions, actionTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"unsupportedBrowser_container__-jcD7\",\"containerM\":\"unsupportedBrowser_containerM__2wEJJ\",\"top\":\"unsupportedBrowser_top__oHYpe\",\"logoM\":\"unsupportedBrowser_logoM__1Aqcy\",\"textContainer\":\"unsupportedBrowser_textContainer__5uIi8\",\"titleM\":\"unsupportedBrowser_titleM__1_1Sh\",\"textM\":\"unsupportedBrowser_textM__i9ati\",\"bannerM\":\"unsupportedBrowser_bannerM__3DzoG\",\"browserM\":\"unsupportedBrowser_browserM__2RPPQ\",\"footerM\":\"unsupportedBrowser_footerM__2nto_\",\"title\":\"unsupportedBrowser_title__BeqSM\",\"logo\":\"unsupportedBrowser_logo__2L41c\",\"footer\":\"unsupportedBrowser_footer__kxuOx\",\"browser\":\"unsupportedBrowser_browser__3L_oh\",\"banner\":\"unsupportedBrowser_banner__2m3oW\",\"placeholder\":\"unsupportedBrowser_placeholder__sBjMt\",\"smContainer\":\"unsupportedBrowser_smContainer__2qtdO\"};","var _style, _rect, _rect2, _rect3, _rect4, _rect5, _rect6, _rect7, _rect8, _rect9, _rect10, _rect11, _rect12, _rect13;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgSpinner = function SvgSpinner(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"46px\",\n height: \"46px\",\n viewBox: \"0 0 100 100\",\n preserveAspectRatio: \"xMidYMid\",\n className: \"uil-default\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _style || (_style = /*#__PURE__*/React.createElement(\"style\", {\n type: \"text/css\"\n }, \"\\n .spinner0{animation: one 1s infinite}\\n .spinner1{animation: one 1s .083s infinite}\\n .spinner2{animation: one 1s .166s infinite}\\n .spinner3{animation: one 1s .25s infinite}\\n .spinner4{animation: one 1s .33s infinite}\\n .spinner5{animation: one 1s .417s infinite}\\n .spinner6{animation: one 1s .5s infinite}\\n .spinner7{animation: one 1s .583s infinite}\\n .spinner8{animation: one 1s .667s infinite}\\n .spinner9{animation: one 1s .75s infinite}\\n .spinner10{animation: one 1s .833s infinite}\\n .spinner11{animation: one 1s .917s infinite}\\n @keyframes one {\\n 0% {\\n opacity: 1;\\n }\\n 100% {\\n opacity: 0;\\n }\\n }\\n \")), _rect || (_rect = /*#__PURE__*/React.createElement(\"rect\", {\n x: 0,\n y: 0,\n width: 100,\n height: 100,\n fill: \"none\",\n className: \"bk\"\n })), _rect2 || (_rect2 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner0\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(0 50 50) translate(0 -30)\"\n })), _rect3 || (_rect3 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner1\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(30 50 50) translate(0 -30)\"\n })), _rect4 || (_rect4 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner2\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(60 50 50) translate(0 -30)\"\n })), _rect5 || (_rect5 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner3\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(90 50 50) translate(0 -30)\"\n })), _rect6 || (_rect6 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner4\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(120 50 50) translate(0 -30)\"\n })), _rect7 || (_rect7 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner5\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(150 50 50) translate(0 -30)\"\n })), _rect8 || (_rect8 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner6\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(180 50 50) translate(0 -30)\"\n })), _rect9 || (_rect9 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner7\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(210 50 50) translate(0 -30)\"\n })), _rect10 || (_rect10 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner8\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(240 50 50) translate(0 -30)\"\n })), _rect11 || (_rect11 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner9\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(270 50 50) translate(0 -30)\"\n })), _rect12 || (_rect12 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner10\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(300 50 50) translate(0 -30)\"\n })), _rect13 || (_rect13 = /*#__PURE__*/React.createElement(\"rect\", {\n className: \"spinner11\",\n x: 46.5,\n y: 40,\n width: 7,\n height: 20,\n rx: 5,\n ry: 5,\n transform: \"rotate(330 50 50) translate(0 -30)\"\n })));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSpinner, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/spinner.706ca9f0.svg\";\nexport { ForwardRef as ReactComponent };","import { baseSpacing } from './base';\n\nexport const DEFAULT_SIZE = {\n xxSmall: `${baseSpacing * 3}px`, // 24\n xSmall: `${baseSpacing * 4.5}px`, // 36\n small: `${baseSpacing * 6}px`, // 48\n medium: `${baseSpacing * 9}px`, // 72\n large: `${baseSpacing * 12}px`, // 96\n xLarge: `${baseSpacing * 18}px`, // 144\n xxLarge: `${baseSpacing * 32}px`, // 256\n xxxLarge: `${baseSpacing * 48}px`, // 384\n xxxxLarge: `${baseSpacing * 96}px`, // 768\n};\n","const actionTypes = {\n selectTime: 'SELECT_TIME',\n clearSelection: 'CLEAR_SELECT_TIME',\n selectDay: 'SELECT_DAY',\n fetchDoctorAppointments: 'FETCH_DOCTOR_APPOINTMENTS',\n fetchDoctorAppointmentsSuccess: 'FETCH_DOCTOR_APPOINTMENTS_SUCCESS',\n fetchDoctorAppointmentsFailure: 'FETCH_DOCTOR_APPOINTMENTS_FAILURE',\n setSmokingRecallId: 'SET_SMOKING_RECALL_ID_FOR_APPOINTMENT',\n};\n\nconst actions = {\n setSmokingRecallId: smokingRecallId => ({\n type: actionTypes.setSmokingRecallId,\n payload: {\n smokingRecallId,\n },\n }),\n selectTime: (doctorId, appointmentId, time) => ({\n type: actionTypes.selectTime,\n payload: {\n doctorId,\n appointmentId,\n time,\n },\n }),\n clearSelection: () => ({\n type: actionTypes.clearSelection,\n }),\n selectDay: (practiceId, time, dayNum, doctorName, details, token) => ({\n type: actionTypes.selectDay,\n payload: {\n time,\n practiceId,\n dayNum,\n doctorName,\n details,\n token,\n },\n }),\n fetchDoctorAppointments: (\n day,\n practiceId,\n dayNum,\n doctorName,\n details,\n token,\n ) => ({\n type: actionTypes.fetchDoctorAppointments,\n payload: {\n day,\n practiceId,\n dayNum,\n doctorName,\n details,\n token,\n },\n }),\n fetchDoctorAppointmentsSuccess: (doctors, dayNum, doctorName) => ({\n type: actionTypes.fetchDoctorAppointmentsSuccess,\n payload: {\n doctors,\n dayNum,\n doctorName,\n },\n }),\n fetchDoctorAppointmentsFailure: error => ({\n type: actionTypes.fetchDoctorAppointmentsFailure,\n error: true,\n payload: {\n error,\n },\n }),\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n setFirstName: 'EDIT_PROFILE_SET_FIRSTNAME',\n setLastName: 'EDIT_PROFILE_SET_LASTNAME',\n setDateOfBirth: 'EDIT_PROFILE_SET_DATE_OF_BIRTH',\n setMobile: 'EDIT_PROFILE_SET_MOBILE',\n addAvatar: 'EDIT_PROFILE_ADD_AVATAR',\n addAvatarSuccess: 'EDIT_PROFILE_ADD_AVATAR_SUCCESS',\n addAvatarFailure: 'EDIT_PROFILE_ADD_AVATAR_FAILURE',\n changeProfile: 'EDIT_PROFILE_CHANGE_PROFILE',\n changeProfileSuccess: 'EDIT_PROFILE_CHANGE_PROFILE_SUCCESS',\n changeProfileFailure: 'EDIT_PROFILE_CHANGE_PROFILE_FAILURE',\n clearEditProfile: 'EDIT_PROFILE_CLEAR',\n initEditProfile: 'EDIT_PROFILE_INIT',\n};\n\nconst setFirstName = name => ({\n type: actionTypes.setFirstName,\n payload: {\n name,\n },\n});\nconst setLastName = name => ({\n type: actionTypes.setLastName,\n payload: {\n name,\n },\n});\nconst setDateOfBirth = date => ({\n type: actionTypes.setDateOfBirth,\n payload: {\n date,\n },\n});\nconst setMobile = mobile => ({\n type: actionTypes.setMobile,\n payload: {\n mobile,\n },\n});\nconst addAvatar = (file, token) => ({\n type: actionTypes.addAvatar,\n payload: {\n file,\n token,\n },\n});\nconst addAvatarSuccess = () => ({\n type: actionTypes.addAvatarSuccess,\n});\nconst addAvatarFailure = err => ({\n type: actionTypes.addAvatarFailure,\n error: true,\n payload: {\n err,\n },\n});\nconst changeProfile = ({ firstName, lastName, dateOfBirth, mobile }) => ({\n type: actionTypes.changeProfile,\n payload: {\n firstName,\n lastName,\n dateOfBirth,\n mobile,\n },\n});\nconst changeProfileSuccess = () => ({\n type: actionTypes.changeProfileSuccess,\n});\nconst changeProfileFailure = err => ({\n type: actionTypes.changeProfileFailure,\n error: true,\n payload: {\n err,\n },\n});\nconst clearEditProfile = () => ({\n type: actionTypes.clearEditProfile,\n});\nconst initEditProfile = (\n firstName,\n lastName,\n dateOfBirth,\n mobile,\n email,\n avatar,\n) => ({\n type: actionTypes.initEditProfile,\n payload: {\n firstName,\n lastName,\n dateOfBirth,\n mobile,\n email,\n avatar,\n },\n});\n\nconst actions = {\n setFirstName,\n setLastName,\n setDateOfBirth,\n setMobile,\n addAvatar,\n addAvatarSuccess,\n addAvatarFailure,\n changeProfile,\n changeProfileSuccess,\n changeProfileFailure,\n clearEditProfile,\n initEditProfile,\n};\n\nexport { actionTypes, actions };\n","import React, { ComponentType } from 'react';\n\nexport const withStyles = (styles: React.CSSProperties) => (Component: ComponentType
) => \n(props: P) => ;","import 'react';\nimport Axios, { AxiosError, AxiosResponse } from \"axios\";\nimport { HttpStatusCode } from 'common/constants';\nimport cache from 'services/cache';\n\nconst axios = Axios.create(\n {\n baseURL: '/api',\n }\n);\n\naxios.defaults.headers.common['Accept'] = 'application/json';\n\naxios.interceptors.request.use(\n async (config) => {\n const token = cache.get('token');\n if (token) {\n config.headers = {\n ...config.headers,\n authorization: `Bearer ${JSON.parse(token).token}`\n };\n }\n \n return config;\n },\n (error) => Promise.reject(error),\n);\n\nexport interface AxiosResult {\n data?: TResponse;\n error?: AxiosError | null;\n loading: boolean;\n}\n\nexport interface AxiosResponseResult {\n status: number,\n data?: TResponse\n}\n\nexport const callApi = async(request: Promise>) => {\n try{\n const {data, status} = await request;\n return {\n data, \n status\n }\n }\n catch(err){\n const response = (err as AxiosError).response;\n const status = response?.status;\n return {\n status: status ?? HttpStatusCode.UNKNOWN,\n data: response?.data\n }\n }\n}\n\nexport default axios;","import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n\nimport Alert from '../../libs/Alert';\nimport styles from './basicInputField.module.css';\n\nclass BasicInputField extends Component {\n static propTypes = {\n value: PropTypes.string,\n label: PropTypes.string.isRequired,\n onChange: PropTypes.func.isRequired,\n onKeyDown: PropTypes.func,\n onBlur: PropTypes.func,\n error: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),\n className: PropTypes.string,\n type: PropTypes.string,\n readOnly: PropTypes.bool,\n required: PropTypes.bool,\n clearError: PropTypes.func,\n };\n static defaultProps = {\n value: '',\n type: 'text',\n clearError: () => {},\n };\n state = {\n focused: false,\n };\n UNSAFE_componentWillReceiveProps(nextProps) {\n if (nextProps.error) {\n Alert.error(nextProps.error, {\n onClose: this.props.clearError,\n });\n }\n }\n toggleFocus = () => {\n if (!this.state.focused) {\n Alert.close();\n }\n this.setState({ focused: !this.state.focused });\n };\n handleBlur = e => {\n this.toggleFocus();\n if (this.props.onBlur) {\n this.props.onBlur(e);\n }\n };\n\n render() {\n const {\n required,\n value,\n type,\n className,\n label,\n onChange,\n readOnly,\n onKeyDown,\n error,\n mobile,\n email,\n verified\n } = this.props;\n return (\n \n
\n {label}\n \n {!mobile ? (\n
{\n this.inputField = c;\n }}\n onKeyDown={onKeyDown}\n />\n ) : (\n
\n
{\n this.inputField = c;\n }}\n onKeyDown={onKeyDown}\n />\n
{verified ? \"Verified >\" : \"Not Verified >\"}
\n
\n )}\n
\n );\n }\n}\n\nexport default BasicInputField;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { CSSTransitionGroup } from 'react-transition-group';\n\nimport styles from './transition.module.css';\n\nconst Transition = props => ;\nTransition.propTypes = {\n component: PropTypes.string,\n transitionAppearTimeout: PropTypes.number,\n transitionEnterTimeout: PropTypes.number,\n transitionLeaveTimeout: PropTypes.number,\n transitionAppear: PropTypes.bool,\n transitionName: PropTypes.shape({\n enter: PropTypes.string.isRequired,\n enterActive: PropTypes.string.isRequired,\n leave: PropTypes.string.isRequired,\n leaveActive: PropTypes.string.isRequired,\n appearActive: PropTypes.string,\n appear: PropTypes.string,\n }),\n className: PropTypes.string,\n children: PropTypes.node.isRequired\n};\nTransition.defaultProps = {\n component: 'div',\n transitionAppearTimeout: 1500,\n transitionEnterTimeout: 2000,\n transitionLeaveTimeout: 1500,\n transitionAppear: true,\n transitionName: {\n enter: styles.enter,\n enterActive: styles.enterActive,\n appear: styles.enter,\n appearActive: styles.enterActive,\n leave: styles.leave,\n leaveActive: styles.leaveActive,\n },\n};\nexport default Transition;\n","export enum CommentType {\n Condition,\n Medication,\n Allergy,\n DoctorNotes,\n LabResult,\n Immunisation,\n}\n\nexport interface IComment {\n Id: string;\n ParentId: string;\n ConsumerId: string;\n PatientId: string;\n CommentType: CommentType;\n Deleted: boolean;\n Content: string;\n DateOfComment: string; //'2019-11-07T05:06:57.495Z';\n}\n\nexport interface ICommentNew {\n ParentId: string;\n PatientId: string;\n CommentType: CommentType;\n Content: string;\n}\n\nexport interface ISendFeedback {\n PatientId: string;\n NoteId: string | null;\n Usefulness: number;\n Meaningfulness: number;\n Experience: number;\n LevelOfInformation: number;\n Reconsent: number;\n Comments: string;\n}\n\nexport interface ILabResult {\n Id: string;\n NameOfTest: string;\n ArticleLinks: string[] | null;\n ConsumerId: string;\n PatientId: string;\n PatientPmsId: string;\n GivenName: string;\n FamilyName: string;\n AttentionStaffCode: string;\n Abnormal: number;\n OrganisationId: string;\n OrganisationName: string;\n ProfilePictureURL: string;\n ProviderId: string;\n ProviderName: string;\n DoctorNotes: string;\n Confidential: boolean;\n DateTime: string;\n IsNewInPastMonth: boolean;\n Results: string;\n InternalComment: string;\n Comments: IComment[];\n ErrorMessage: string;\n NeedFeedBackForLabResearch: boolean;\n NoteId: string | null;\n LastSyncDateTime: string;\n}\n\nexport interface IImmunisation {\n Id: string;\n NameOfImmunisation: string;\n VaccCode: string;\n IsNewInPastMonth: boolean;\n ConsumerId: string;\n PatientId: string;\n PatientPmsId: string;\n OrganisationId: string;\n OrganisationName: string;\n ProviderId: string;\n ProviderName: string;\n DoctorNotes: string;\n DateTime: string;\n IsNewInPast3Month: boolean;\n Summary: string;\n Comments: IComment[];\n FamilyName: string;\n GivenName: string;\n ProfilePictureURL: string;\n BatchNumber: string;\n Expiry: string;\n Route: string;\n Site: string;\n}\n\nexport enum ConditionTypeEnum {\n Current,\n Past,\n}\n\nexport enum AllergyTypeEnum {\n Drug,\n Generic,\n NoteOnly,\n UnKnown,\n}\n\nexport interface ICondition {\n Id: string;\n PatientId: string;\n Name: string;\n Code: string;\n Description: string;\n DiagnosisDate: string;\n ConditionType: ConditionTypeEnum;\n ProviderId: string;\n EnteredBy: string;\n OrganisationId: string;\n OrganisationName: string;\n Comments: IComment[];\n}\n\nexport interface IAllergy {\n Id: string;\n NameOfAllergy: string;\n AllergyType: AllergyTypeEnum;\n ConsumerId: string;\n PatientId: string;\n PatientPmsId: string;\n OrganisationId: string;\n OrganisationName: string;\n ProviderId: string;\n ProviderName: string;\n DoctorNotes: string;\n DateTime: string; //'2019-11-07T10:06:41.590Z';\n IsNewInPastMonth: boolean;\n Comments: IComment[];\n}\n\nexport enum MedicationCodingSystemEnum {\n MIMS,\n NZULM,\n}\n\nexport interface IMedication {\n Id: string;\n DrugCode: string;\n GenericName: string;\n BrandName: string;\n CodingSystem: MedicationCodingSystemEnum;\n ConsumerId: string;\n PatientId: string;\n PatientPmsId: string;\n OrganisationId: string;\n OrganisationName: string;\n ProviderId: string;\n ProviderName: string;\n DoctorNotes: string;\n DateTime: string; //'2019-11-07T10:06:41.590Z';\n IsNewInPastMonth: boolean;\n Comments: IComment[];\n}\n\nexport interface IProcedure {\n Id: string;\n PatientId: string;\n Name: string;\n Code: string;\n Description: string;\n DiagnosisDate: string; // '2019-11-07T10:06:41.590Z';\n ConditionType: ConditionTypeEnum;\n ProviderId: string;\n ProviderName: string;\n OrganisationId: string;\n OrganisationName: string;\n Comments: IComment[];\n}\n\nexport interface IAccident {\n AccidentNumber : string;\n ProviderName : string;\n Description: string;\n Diagnosis : string;\n Employer : string;\n Type : string;\n Insurer : string;\n Status : string;\n AccidentDateTime : string; // '2019-11-07T10:06:41.590Z';\n LastUpdated : string; // '2019-11-07T10:06:41.590Z';\n}\n\nexport interface IIdentity {\n PatientId: string;\n ConsumerId: string;\n Email: string;\n OrganisationId: string;\n MobileVerified: boolean;\n IdentityVerified: boolean;\n VerificationStatusUpdatedOn: string; //'2019-11-07T10:06:41.591Z';\n VerificationMethod: 0;\n}\n\nexport enum BloodTypeEnum {\n A = 0,\n B = 1,\n O = 2,\n AB = 3,\n UnKnown = 4,\n}\n\nexport interface SummaryAPIResponse {\n ConsumerId: string;\n GivenName: string;\n FamilyName: string;\n DateOfBirth: string;\n CurrentConditions: ICondition[];\n PastConditions: ICondition[];\n Allergies: IAllergy[];\n CurrentMedications: IMedication[];\n PastMedications: IMedication[];\n Procedures: IProcedure[];\n Accidents: IAccident[];\n HeightInCm: number;\n WhenHeight: string;\n WhenWeight: string;\n WeightInKg: number;\n BMI: number;\n BloodType: BloodTypeEnum;\n BloodPressure: {\n Diastolic: number;\n Systolic: number;\n WhenMeasured: string;\n }\n ErrorMessage: string;\n IdentityVerified: boolean;\n Identities: IIdentity[];\n ConsumerPrivacySettingsWithAPractice: [\n {\n OrganisationId: string;\n OrganisationName: string;\n LogoUrl: string;\n AllowAccessMyHealthRecords: {\n Allow: boolean;\n Overridden: boolean;\n Reason: string;\n };\n AllowAccessMyDoctorNotes: {\n Allow: boolean;\n Overridden: boolean;\n Reason: string;\n };\n AllowAccessMyDependantHealthRecords: {\n Allow: boolean;\n Overridden: boolean;\n Reason: string;\n };\n AllowShareMyHealthDataWithPractices: boolean;\n },\n ];\n BlacklistedCard: {\n Type: string;\n Reason: string;\n Item: IRestrictedCardItem[];\n };\n OrganisationServiceNotEnabledCard: {\n Type: string;\n Reason: string;\n };\n}\n\ninterface IRestrictedCardItem {\n OrganisationName: string;\n Reason: string;\n}\nexport interface ISummaryItem {\n Id: string;\n ClinicalFinding: string;\n Notes: string;\n}\n\nexport interface IClinicNote {\n ConsultType: string;\n DateTime: string;\n FamilyName: string;\n GivenName: string;\n Id: string;\n IsNewInPastMonth: true;\n OrganisationName: string;\n ProviderName: string;\n ObjectiveNotes: string;\n SubjectiveNotes: string;\n ClinicalNotesSummaries: ISummaryItem[];\n Comments: IComment[] | null;\n}\n\nexport type SelectedCommentTypeEnum =\n | CommentType.LabResult\n | CommentType.Immunisation\n | CommentType.DoctorNotes;\n\n export interface IPatientDocument {\n Id: string;\n ConsumerId: string;\n PatientId: string;\n Description: string;\n DocumentType: string;\n Status: string;\n GivenName: string;\n FamilyName: string;\n DateTime: string;\n ProviderName: string;\n OrganisationId: string;\n OrganisationName: string;\n Content: IDocumentContent[] | null;\n IsNewInPastMonth: boolean,\n LastSyncDateTime: string;\n }\n\n\nexport interface IDocumentContent {\n ContentType: string;\n Data: string;\n Url: string;\n }","export const baseSpacing = 8;\nexport const baseFontSize = baseSpacing * 2; // 16\n\nconst scale = 4;\nexport const fontScale = baseSpacing / scale; // 2\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"innerContainer\":\"appointmentDetails_innerContainer__11Gbk\",\"top\":\"appointmentDetails_top__12sqi\",\"date\":\"appointmentDetails_date__REow1\",\"status\":\"appointmentDetails_status__2GDDv\",\"doctorSection\":\"appointmentDetails_doctorSection__33UH5\",\"doctorDetails\":\"appointmentDetails_doctorDetails__3hbV6\",\"image\":\"appointmentDetails_image__1T8Pa\",\"doctorName\":\"appointmentDetails_doctorName__1FahO\",\"label\":\"appointmentDetails_label__1zV97\",\"button\":\"appointmentDetails_button__12qrQ button_button__2n_ir\",\"patientSection\":\"appointmentDetails_patientSection__ALrca\",\"depButton\":\"appointmentDetails_depButton__30Gws appointmentDetails_button__12qrQ button_button__2n_ir\",\"reasonSection\":\"appointmentDetails_reasonSection__1rcZd appointmentDetails_patientSection__ALrca\",\"addressSection\":\"appointmentDetails_addressSection__1FvRK appointmentDetails_patientSection__ALrca\",\"directionsButton\":\"appointmentDetails_directionsButton__rEHLf appointmentDetails_depButton__30Gws appointmentDetails_button__12qrQ button_button__2n_ir\",\"map\":\"appointmentDetails_map__21qlL\",\"buttons\":\"appointmentDetails_buttons__3AX0L\",\"addButton\":\"appointmentDetails_addButton__qKfZQ appointmentDetails_button__12qrQ button_button__2n_ir\",\"enter\":\"appointmentDetails_enter__oblpN\",\"enterActive\":\"appointmentDetails_enterActive__1rhck\",\"leave\":\"appointmentDetails_leave__3SETl\",\"leaveActive\":\"appointmentDetails_leaveActive__1U5DY\"};","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgBlueRightCircleArrow = function SvgBlueRightCircleArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 38.44,\n height: 38.44,\n viewBox: \"0 0 38.44 38.44\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_2190\",\n \"data-name\": \"Group 2190\",\n transform: \"translate(-804.734 -463.825)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Symbol_261\",\n \"data-name\": \"Symbol 261\",\n transform: \"translate(804.734 463.825)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_2188\",\n \"data-name\": \"Group 2188\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"group-66\"\n }, /*#__PURE__*/React.createElement(\"circle\", {\n id: \"ellipse-17\",\n cx: 19.22,\n cy: 19.22,\n r: 19.22,\n fill: \"#07a3c8\"\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_685132_cc\",\n transform: \"translate(830.141 478.239) rotate(90)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_2189\",\n \"data-name\": \"Group 2189\",\n transform: \"translate(0 0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1404\",\n \"data-name\": \"Path 1404\",\n d: \"M4.8.069.086,4.5A.284.284,0,0,0,.073,4.9a.291.291,0,0,0,.394.013L4.71.918v11.4a.277.277,0,0,0,.554,0V.918L9.506,4.909A.29.29,0,0,0,9.9,4.9.281.281,0,0,0,9.887,4.5L5.177.069a.3.3,0,0,0-.381,0Z\",\n fill: \"#07a3c8\",\n stroke: \"#fff\",\n strokeWidth: 1\n }))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBlueRightCircleArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/blueRightCircleArrow.5e51c03a.svg\";\nexport { ForwardRef as ReactComponent };","import { IBaseBox } from '../components';\ntype NullOrUndefined = null | undefined;\n\nexport const is = {\n function: (v: unknown): v is Function => typeof v === 'function',\n number: (v: unknown): v is number => typeof v === 'number',\n notExist: (v: unknown): v is NullOrUndefined => v === undefined || v === null,\n};\n\nexport const getRefProp = (takeRef?: IBaseBox['ref']) =>\n takeRef\n ? {\n ref: takeRef,\n }\n : {};\n","import isMobilePhone from 'validator/lib/isMobilePhone';\nimport isEmail from 'validator/lib/isEmail';\nimport { isValidDate } from './Dates';\n\nconst isValidPassword = (password) => ( password.length >= 8 && //is long enough\n /[a-z]/.test(password) && // has lowercase letters\n /[A-Z]/.test(password) && // has uppercase letters\n /\\d/.test(password) // has digits\n)\n\nconst isValidPasswordText = (password) => {\n const text = [\n \"Your password must be 8 characters long\",\n \"Your password must contain at least 1 lower case character\",\n \"Your password must contain at least 1 upper case character\",\n \"Your password must contain 1 numeric character\"\n ]\n if (password.length < 8) return text[0];\n if (!/[a-z]/.test(password)) return text[1];\n if (!/[A-Z]/.test(password)) return text[2];\n if (!/\\d/.test(password)) return text[3];\n\n return \"\"\n}\n//const isValidPassword = password => password.length > 7;\n\nconst isValidMobile = (mobile, required) =>\n isMobilePhone(mobile.replace(/\\s/g, ''), 'en-NZ') || (!required && !mobile);\n\nconst isValidEmail = (email, required) =>\n isEmail(email) || (!required && !email);\n\nconst isValidName = (name, required = true) => name.length > 0 || !required;\n\nconst isValidBasicInfo = (\n firstName,\n surname,\n dob,\n mobile,\n email,\n allowUnderage,\n onlyUnderAge,\n firstNameRequired = true,\n surnameRequired = true,\n dobRequired = true,\n mobileRequired = false,\n emailRequired = false,\n) =>\n isValidName(firstName, firstNameRequired) &&\n isValidName(surname, surnameRequired) &&\n isValidMobile(mobile, mobileRequired) &&\n isValidDate(dob, allowUnderage, onlyUnderAge, dobRequired) &&\n isValidEmail(email, emailRequired);\n\nexport {\n isValidMobile,\n isValidName,\n isValidBasicInfo,\n isValidEmail,\n isValidPassword,\n isValidPasswordText\n};\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"outer\":\"confirmAppointmentMobile_outer__3e9xZ\",\"container\":\"confirmAppointmentMobile_container__4697w\",\"header\":\"confirmAppointmentMobile_header__2inRr\",\"inner\":\"confirmAppointmentMobile_inner__1fovj\",\"heading\":\"confirmAppointmentMobile_heading__JUyye\",\"appointmentDetailsContainer\":\"confirmAppointmentMobile_appointmentDetailsContainer__NJLvP\",\"appointmentDetails\":\"confirmAppointmentMobile_appointmentDetails__xWZgW\",\"image\":\"confirmAppointmentMobile_image__3b4gL\",\"practiceName\":\"confirmAppointmentMobile_practiceName__2zk3A\",\"patientDetailsContainer\":\"confirmAppointmentMobile_patientDetailsContainer__3gpMj\",\"patientDetails\":\"confirmAppointmentMobile_patientDetails__SKRL5\",\"detailContainer\":\"confirmAppointmentMobile_detailContainer__2axTh\",\"label\":\"confirmAppointmentMobile_label__7byE5\",\"buttonContainer\":\"confirmAppointmentMobile_buttonContainer__23wHD\",\"button\":\"confirmAppointmentMobile_button__1oWey button_button__2n_ir\",\"confirmButton\":\"confirmAppointmentMobile_confirmButton__1jiZ3 confirmAppointmentMobile_button__1oWey button_button__2n_ir\",\"changeButton\":\"confirmAppointmentMobile_changeButton__2WLv5 confirmAppointmentMobile_button__1oWey button_button__2n_ir\",\"spinner\":\"confirmAppointmentMobile_spinner__1OQrZ\"};","var _path;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgBlueCross = function SvgBlueCross(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 22.19,\n height: 22.19,\n viewBox: \"0 0 22.19 22.19\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n id: \"Union_849\",\n \"data-name\": \"Union 849\",\n d: \"M6.378,14.234,6.622,8.6l-5.81.237a.959.959,0,0,1-1.03-1A1.172,1.172,0,0,1,.9,6.744l5.81-.237L6.956.869A1.175,1.175,0,0,1,8.078-.218a.96.96,0,0,1,1.031,1L8.865,6.42l5.81-.237a.958.958,0,0,1,1.031,1,1.175,1.175,0,0,1-1.122,1.089l-5.81.237-.244,5.638a1.177,1.177,0,0,1-1.122,1.089H7.363A.957.957,0,0,1,6.378,14.234Z\",\n transform: \"translate(21.88 10.928) rotate(135)\",\n fill: \"#07a3c8\"\n })));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBlueCross, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/blueCross.cb6580a0.svg\";\nexport { ForwardRef as ReactComponent };","const actionTypes = {\n addDetails: 'PATIENT_DETAILS_ADD_DETAILS',\n changePhone: 'PATIENT_DETAILS_CHANGE_PHONE',\n clearDetails: 'PATIENT_DETAILS_CLEAR_DETAILS',\n fetchPatientDetailForSmokingAppointment:\n 'FETCH_PATIENT_DETAIL_FOR_SMOKING_APPOINTMENT',\n isReady: 'PATIENT_DETAILS_IS_READY',\n};\n\nconst fetchPatientDetailForSmokingAppointment = () => ({\n type: actionTypes.fetchPatientDetailForSmokingAppointment,\n});\nconst isReady = () => ({\n type: actionTypes.isReady,\n});\nconst addDetails = details => ({\n type: actionTypes.addDetails,\n payload: { details },\n});\nconst changePhone = mobile => ({\n type: actionTypes.changePhone,\n payload: { mobile },\n});\nconst clearDetails = () => ({\n type: actionTypes.clearDetails,\n});\n\nconst actions = {\n addDetails,\n changePhone,\n clearDetails,\n fetchPatientDetailForSmokingAppointment,\n isReady,\n};\n\nexport { actionTypes, actions };\n","var _title, _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgTick = function SvgTick(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"Layer_1\",\n viewBox: \"0 0 7.32 5.49\",\n ref: svgRef\n }, props), title === undefined ? _title || (_title = /*#__PURE__*/React.createElement(\"title\", null, \"tick icon\")) : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_610548_cc\",\n \"data-name\": \"noun 610548 cc\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"group\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"path\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n className: \"cls-1\",\n d: \"M-10,8.73h0Zm0-.65,0,.05M-7,10.33a.54.54,0,0,1-.38-.15l-1.93-1.8a.56.56,0,0,1,0-.79.56.56,0,0,1,.79,0L-7,9-3.67,5a.55.55,0,0,1,.37-.2.53.53,0,0,1,.17,0A.93.93,0,0,1-3,4.91l.1.07a.56.56,0,0,1,0,.78l-3.73,4.37A.6.6,0,0,1-7,10.33Z\",\n transform: \"translate(10 -4.84)\"\n }))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTick, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/tick.ef940d1c.svg\";\nexport { ForwardRef as ReactComponent };","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgCircleRightArrow = function SvgCircleRightArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 32.578,\n height: 31.771,\n viewBox: \"0 0 32.578 31.771\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Symbol_998\",\n \"data-name\": \"Symbol 998\",\n transform: \"translate(-258 -352)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Symbol_798\",\n \"data-name\": \"Symbol 798\",\n transform: \"translate(258 352)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_1492\",\n \"data-name\": \"Group 1492\",\n transform: \"translate(0)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"group-66\"\n }, /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"ellipse-17\",\n cx: 16.289,\n cy: 15.886,\n rx: 16.289,\n ry: 15.886,\n fill: \"#07a3c8\"\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_685132_cc\",\n transform: \"translate(282.045 360.582) rotate(90)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_1493\",\n \"data-name\": \"Group 1493\",\n transform: \"translate(0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1582\",\n \"data-name\": \"Path 1582\",\n d: \"M6.742.092.121,5.98A.363.363,0,0,0,.1,6.5a.427.427,0,0,0,.554.017l5.964-5.3V16.361a.39.39,0,0,0,.779,0V1.219l5.964,5.3a.425.425,0,0,0,.554-.017A.359.359,0,0,0,13.9,5.98L7.278.092a.437.437,0,0,0-.536,0Z\",\n transform: \"translate(0)\",\n fill: \"#fff\"\n }))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCircleRightArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/circleRightArrow.12fd9e93.svg\";\nexport { ForwardRef as ReactComponent };","const actionTypes = {\n verifyCode: 'VERIFY_USER_REGISTRATION_CODE',\n verifyCodeSuccess: 'VERIFY_USER_REGISTRATION_CODE_SUCCESS',\n verifyCodeFailure: 'VERIFY_USER_REGISTRATION_CODE_FAILURE',\n clearVerifyCodeError: 'VERIFY_USER_REGISTRATION_CODE_CLEAR_ERROR',\n resendCode: 'VERIFY_USER_REGISTRATION_RESEND_CODE',\n resendCodeSuccess: 'VERIFY_USER_REGISTRATION_RESEND_CODE_SUCCESS',\n resendCodeFailure: 'VERIFY_USER_REGISTRATION_RESEND_CODE_FAILURE',\n sendCodeToVerify: 'SEND_CODE_TO_VERIFY',\n sendCodeToVerifySuccess: 'SEND_CODE_TO_VERIFY_SUCCESS',\n sendCodeToVerifyFailure: 'SEND_CODE_TO_VERIFY_FAILURE',\n};\n\nconst verifyCode = (token, code, mobile) => ({\n type: actionTypes.verifyCode,\n payload: {\n token,\n code,\n mobile,\n },\n});\nconst verifyCodeSuccess = () => ({\n type: actionTypes.verifyCodeSuccess,\n});\nconst verifyCodeFailure = err => ({\n type: actionTypes.verifyCodeFailure,\n error: true,\n payload: err,\n});\nconst clearVerifyCodeError = () => ({\n type: actionTypes.clearVerifyCodeError,\n});\nconst resendCode = mobile => ({\n type: actionTypes.resendCode,\n payload: {\n mobile,\n },\n});\nconst resendCodeSuccess = () => ({\n type: actionTypes.resendCodeSuccess,\n});\nconst resendCodeFailure = err => ({\n type: actionTypes.resendCodeFailure,\n error: true,\n payload: {\n err,\n },\n});\nconst sendCodeToVerify = mobile => ({\n type: actionTypes.sendCodeToVerify,\n payload: {\n mobile,\n },\n});\nconst sendCodeToVerifySuccess = () => ({\n type: actionTypes.sendCodeToVerifySuccess,\n});\n\nconst sendCodeToVerifyFailure = error => ({\n type: actionTypes.sendCodeToVerifyFailure,\n error: true,\n payload: {\n error,\n },\n});\nconst actions = {\n verifyCode,\n verifyCodeSuccess,\n verifyCodeFailure,\n clearVerifyCodeError,\n resendCode,\n resendCodeSuccess,\n resendCodeFailure,\n sendCodeToVerify,\n sendCodeToVerifySuccess,\n sendCodeToVerifyFailure,\n};\n\nexport { actions, actionTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"photoSecurity_container__uZigm\",\"cameraButton\":\"photoSecurity_cameraButton__VO_pk\",\"cover\":\"photoSecurity_cover__3LMqi\",\"webcam\":\"photoSecurity_webcam__1qDKA\",\"checkText\":\"photoSecurity_checkText__2EByf\",\"checkbox\":\"photoSecurity_checkbox__1-9HR\",\"buttonContainer\":\"photoSecurity_buttonContainer__1164d\",\"placeholder\":\"photoSecurity_placeholder__28Gge\",\"placeholder7\":\"photoSecurity_placeholder7__eETx2\",\"hole\":\"photoSecurity_hole__1dqE1\",\"cameraText\":\"photoSecurity_cameraText__2TDhh\",\"card\":\"photoSecurity_card__1R3DG\",\"card2\":\"photoSecurity_card2__1xPKV\",\"para\":\"photoSecurity_para__1UXzM\",\"wrapper\":\"photoSecurity_wrapper__3ablO\",\"takenPhoto\":\"photoSecurity_takenPhoto__DJKGL\",\"button\":\"photoSecurity_button__1AUgg\",\"buttonWhite\":\"photoSecurity_buttonWhite__1ZTuN\"};","const actionTypes = {\n getFeed: 'GET_FEED',\n getFeedSuccess: 'GET_FEED_SUCCESS',\n getFeedFailure: 'GET_FEED_FAILURE',\n clearFeed: 'CLEAR_FEED',\n};\n\nconst actions = {\n getFeed: id => ({\n type: actionTypes.getFeed,\n payload: {\n id,\n },\n }),\n getFeedSuccess: feed => ({\n type: actionTypes.getFeedSuccess,\n payload: {\n feed,\n },\n }),\n getFeedFailure: error => ({\n type: actionTypes.getFeedFailure,\n payload: {\n error,\n },\n }),\n \n clearFeed: () => ({\n type: actionTypes.clearFeed,\n }),\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n setPractice: 'SET_PRACTICE',\n setPhoto: 'SET_PHOTO',\n sendVerifyRequest: 'SEND_VERIFY_REQUEST',\n sendVerifyRequestSuccess: 'SEND_VERIFY_REQUEST_SUCCESS',\n sendVerifyRequestFailure: 'SEND_VERIFY_REQUEST_FAILURE',\n setSettings: \"SET_SETTINGS\",\n setPin: \"SET_PIN\"\n };\n \n const actions = { \n setPractice: practice => ({\n type: actionTypes.setPractice,\n payload: {\n practice,\n },\n }),\n setPhoto: photo => ({\n type: actionTypes.setPhoto,\n payload: {\n photo,\n }\n }),\n sendVerifyRequest: (token, user) => ({\n type: actionTypes.sendVerifyRequest,\n payload: {\n token,\n user,\n }\n }),\n sendVerifyRequestSuccess: data => ({\n type: actionTypes.sendVerifyRequestSuccess,\n payload: {\n data,\n }\n }),\n sendVerifyRequestFailure: error => ({\n type: actionTypes.sendVerifyRequestFailure,\n payload: {\n error,\n }\n }),\n setSettings: settings => ({\n type: actionTypes.setSettings,\n payload: {\n settings\n }\n }),\n setPin: pin => ({\n type: actionTypes.setPin,\n payload: {\n pin\n }\n })\n };\n \n export { actions, actionTypes };","var _defs, _path;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgPlus = function SvgPlus(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"-15604.094 -18857.094 18.863 18.863\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null)), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n id: \"Union_45\",\n d: \"M19487.16-371.408v-6.885h-6.885a1.269,1.269,0,0,1-1.271-1.272,1.273,1.273,0,0,1,1.271-1.277h6.885v-6.88a1.275,1.275,0,0,1,1.273-1.277,1.278,1.278,0,0,1,1.275,1.277v6.88h6.887a1.277,1.277,0,0,1,1.271,1.277,1.273,1.273,0,0,1-1.271,1.272h-6.887v6.885a1.273,1.273,0,0,1-1.275,1.272A1.27,1.27,0,0,1,19487.16-371.408Z\",\n transform: \"translate(-15974.229 -38336.098) rotate(90)\"\n })));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPlus, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/plus.75fe298b.svg\";\nexport { ForwardRef as ReactComponent };","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgBlueLock = function SvgBlueLock(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 52,\n height: 61.5,\n viewBox: \"0 0 52 61.5\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_Pin_Code_97219\",\n \"data-name\": \"noun_Pin Code_97219\",\n transform: \"translate(-24 -19.5)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17360\",\n \"data-name\": \"Group 17360\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17353\",\n \"data-name\": \"Group 17353\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10648\",\n \"data-name\": \"Path 10648\",\n d: \"M71,81H29a4.951,4.951,0,0,1-5-5V50a4.951,4.951,0,0,1,5-5H71a4.951,4.951,0,0,1,5,5V76A4.951,4.951,0,0,1,71,81ZM29,47a2.946,2.946,0,0,0-3,3V76a2.946,2.946,0,0,0,3,3H71a2.946,2.946,0,0,0,3-3V50a2.946,2.946,0,0,0-3-3Z\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17354\",\n \"data-name\": \"Group 17354\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10649\",\n \"data-name\": \"Path 10649\",\n d: \"M66,45.5H64V35.7A14.255,14.255,0,0,0,49.8,21.5,13.828,13.828,0,0,0,36,35.3V45.5H34V35.3A15.834,15.834,0,0,1,49.8,19.5,16.261,16.261,0,0,1,66,35.7Z\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17359\",\n \"data-name\": \"Group 17359\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17355\",\n \"data-name\": \"Group 17355\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10650\",\n \"data-name\": \"Path 10650\",\n d: \"M32.4,66l-3-2.4.7-.8c.1-.2.3-.3.4-.5-.3-.1-.5-.1-.6-.2l-.9-.2,1.2-3.5,1,.4c.2.1.3.1.5.2V57.4h3.6v1.7a4.875,4.875,0,0,1,.7-.3l1-.4,1.1,3.7-1,.2c-.2,0-.4.1-.6.1.2.2.3.4.4.5l.7.9-3.1,2.1-.9-1.4c-.1.2-.3.4-.4.6Z\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17356\",\n \"data-name\": \"Group 17356\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10651\",\n \"data-name\": \"Path 10651\",\n d: \"M43,66l-3-2.4.7-.8c.1-.2.3-.3.4-.5-.3-.1-.5-.1-.6-.2l-.9-.3,1.2-3.5,1,.4c.2.1.3.1.5.2V57.3h3.6V59a4.875,4.875,0,0,1,.7-.3l1-.4L48.7,62l-1,.2c-.2,0-.4.1-.6.1.2.2.3.4.4.5l.7.9-3.1,2.1L44,64.5c-.1.2-.3.4-.4.6Z\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17357\",\n \"data-name\": \"Group 17357\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10652\",\n \"data-name\": \"Path 10652\",\n d: \"M53.6,66l-3-2.4.7-.8c.1-.2.3-.3.4-.5-.3-.1-.5-.1-.6-.2l-.9-.3,1.2-3.5,1,.4c.2.1.3.1.5.2V57.3h3.6V59a4.875,4.875,0,0,1,.7-.3l1-.4L59.3,62l-1,.2c-.2,0-.4.1-.6.1.2.2.3.4.4.5l.7.9-3.1,2.1-.9-1.4c-.1.2-.3.4-.4.6Z\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_17358\",\n \"data-name\": \"Group 17358\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10653\",\n \"data-name\": \"Path 10653\",\n d: \"M64.2,66l-3-2.4.7-.8c.1-.2.3-.3.4-.5-.3-.1-.5-.1-.6-.2l-.9-.3L62,58.3l1,.4c.2.1.3.1.5.2V57.3H67V59a4.875,4.875,0,0,1,.7-.3l1-.4L69.8,62l-1,.2c-.2,0-.4.1-.6.1.2.2.3.4.4.5l.7.9-3.1,2.1-.9-1.4c-.1.2-.3.4-.4.6Z\",\n fill: \"#07a3c8\"\n })))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBlueLock, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/blueLock.ba873ef8.svg\";\nexport { ForwardRef as ReactComponent };","var _defs, _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgProfileIcon = function SvgProfileIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"-6080 -3664.059 82 81.765\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"style\", null, \"\\n .cls-12345 {\\n fill: none;\\n stroke-width: 2px;\\n }\\n\\n .cls-09876 {\\n }\\n \"))), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"group-89\",\n transform: \"translate(-6079 -3663.059)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"ellipse-19\",\n className: \"cls-12345\",\n d: \"M40,0A39.883,39.883,0,1,1,0,39.883,39.941,39.941,0,0,1,40,0Z\",\n transform: \"translate(0 0)\"\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"group-66\",\n transform: \"translate(11.226 16.06)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"path-64\",\n className: \"cls-09876\",\n d: \"M28.773,63.94A39.733,39.733,0,0,1,0,51.761c6.217-11.4,17.092-18.208,29.091-18.208,11.812,0,22.6,6.645,28.851,17.776a40.187,40.187,0,0,1-19.75,11.5A39.729,39.729,0,0,1,28.773,63.94Zm0-34.818a14.561,14.561,0,1,1,14.6-14.561A14.6,14.6,0,0,1,28.773,29.121Z\"\n })))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgProfileIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/profileIcon.3f71d238.svg\";\nexport { ForwardRef as ReactComponent };","import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport { ReactComponent as Arrow } from '../../../svgs/rightarrow2.svg';\nimport { ReactComponent as Cross } from '../../../svgs/close.svg';\nimport styles from './navigationBar.module.css';\n\nconst NavigationBar = ({ goBack, close }) => (\n \n {goBack ?
:
// to keep cross positioned correctly\n }\n {close &&\n
\n }\n
\n);\n\nNavigationBar.propTypes = {\n goBack: PropTypes.func,\n close: PropTypes.func,\n};\n\nexport default NavigationBar;\n","import React from 'react';\nimport { Observer } from 'mobx-react-lite';\nimport styles from './privacyToggle.module.css';\nimport { isDesktop } from 'config.js'\n\nclass PrivacyToggle extends React.Component {\n constructor(props) {\n super(props)\n \n this.state = {\n switched: this.props.initial ? this.props.initial : false\n }\n }\n\n componentWillReceiveProps(prevProps) {\n if (this.props.initial !== prevProps.initial) {\n this.setState({switched: prevProps.initial})\n }\n }\n\n\n toggleSwitch = () => {\n this.props.toggle();\n /*this.setState(prevState => {\n return {\n switched: !prevState.switched\n };\n });*/\n };\n\n render() {\n return(\n \n {() => \n \n
{this.props.text}
\n
{} : this.toggleSwitch}>\n
\n
\n
\n }\n \n\n )\n }\n}\n\nexport default PrivacyToggle;","import PropTypes from 'prop-types';\n\nconst SlotPropType = PropTypes.shape({\n Guid: PropTypes.string.isRequired,\n Time: PropTypes.string.isRequired,\n});\n\nconst DoctorProfilePropType = PropTypes.shape({\n Name: PropTypes.string.isRequired,\n Type: PropTypes.string,\n Description: PropTypes.string,\n ProfilePictureURL: PropTypes.string,\n AvailableSlots: PropTypes.arrayOf(SlotPropType),\n NextAvailableSlot: PropTypes.string,\n Services: PropTypes.arrayOf(PropTypes.number),\n ShowServiceQuestionnaire: PropTypes.bool,\n});\n\nconst SelectedTimePropType = PropTypes.shape({\n time: PropTypes.string,\n doctorId: PropTypes.string.isRequired,\n appointmentId: PropTypes.string.isRequired,\n});\n\nconst PracticeInfoPropType = PropTypes.shape({\n Name: PropTypes.string.isRequired,\n Address: PropTypes.string.isRequired,\n Phone: PropTypes.string,\n});\n\nconst AppointmentPropType = PropTypes.shape({\n PracticeName: PropTypes.string.isRequired,\n Address: PropTypes.string.isRequired,\n ProviderName: PropTypes.string.isRequired,\n ProviderPictureUrl: PropTypes.string.isRequired,\n Time: PropTypes.string.isRequired,\n CalendarUrl: PropTypes.string.isRequired,\n Id: PropTypes.string.isRequired,\n SessionId: PropTypes.string.isRequired,\n Phone: PropTypes.string,\n});\n\nexport {\n AppointmentPropType,\n SlotPropType,\n DoctorProfilePropType,\n SelectedTimePropType,\n PracticeInfoPropType,\n};\n","import React from 'react';\nimport { connect } from 'react-redux';\nimport { observer } from 'mobx-react-lite';\nimport styled from 'styled-components';\n\nimport warning from '../../../svgs/redIdentityCrossWarning.svg';\nimport orangeCheck from 'svgs/orangeTickWarning.svg';\nimport cross from '../../../svgs/redCross.svg';\nimport tick from '../../../svgs/greenTickSmall.svg';\nimport { ReactComponent as Tick } from 'svgs/greenTickSmall.svg';\nimport warningSymbol from 'svgs/orangeWarning.svg';\nimport check from 'svgs/check.svg';\nimport { useAccountStore, useCareCircle } from 'store/mobx/mobx';\nimport { useComponentDidMount } from 'libs/newHttp';\nimport { go } from 'routes';\nimport { isDesktop } from 'config';\nimport DeclarationLabel from 'components/shared/common/DeclarationLabel';\n\nconst Container = styled.div`\n width: 100%;\n margin-bottom: 1rem;\n`\nconst FlexR = styled.div`\n display: flex;\n flex-direction: row;\n width: 100%;\n`\nconst FlexC = styled.div`\n display: flex;\n flex-direction: column;\n`\nconst Title = styled.div`\n font-size: 21px;\n color: #7B7B7B;\n margin: 1rem;\n width: 63%;\n @media (min-width: 1024px) {\n font-size: 16px;\n font-weight: bold;\n }\n`\nconst Subtext = styled.div`\n color: #989898;\n font-size: 15px;\n @media (min-width: 1024px) {\n font-size: 13px;\n }\n`\n// const DeclarationLabel = styled.span`\n// color: #07A3C8;\n// font-size: 15px;\n// margin-top: 1rem;\n// margin-left: calc(1rem + 12px);\n// `;\n\nconst IdentityLabel = observer(() => {\n const accStore = useAccountStore();\n const careCircle = useCareCircle();\n\n useComponentDidMount(() => {\n accStore.getIdentityRequestsStatus();\n careCircle.getDeclareDate(accStore.profile.Id);\n })\n\n const renderTitle = () => {\n let status = getFinalStatus(accStore);\n let nhiLabel = (accStore.profile.NHI && accStore.profile.NHI !== '') ? ` - NHI: ${accStore.profile.NHI}` : ''; \n switch(status) {\n case VerificationStatus.Pending:\n return (\n \n \n Partially Verified \n \n );\n case VerificationStatus.Verified:\n return (\n \n \n Identity Verified {nhiLabel} \n \n );\n case VerificationStatus.Unverified:\n return (\n \n \n \n Identity Not Verified \n go.identity()} style={{color: \"#FF6A65\", margin: \"0px\", marginBottom: \"1rem\", textDecoration: \"underline\", cursor: \"pointer\"}}>Verify now! \n \n \n );\n default:\n return (\n \n \n \n Identity Not Verified \n go.identity()} style={{color: \"#FF6A65\", margin: \"0px\", marginBottom: \"1rem\", textDecoration: \"underline\"}}>Verify now! \n \n \n );\n }\n }\n const isDependant = !!careCircle.declareDate;\n const downloadDocument = () => careCircle.downloadDeclarationDocument(accStore.profile.Id, accStore.profile.LatestPracticeId);\n return(\n \n {renderTitle()}\n \n {accStore.profile.VerificationStatusDetails.length > 0 &&\n accStore.profile.VerificationStatusDetails.map((item) => {\n if (item.VerificationStatus === 0) {\n return (\n \n \n \n Identity partially verified, wating on response from {item.OrganisationName}.\n go.identityViewRequest(item.OrganisationId)} style={{color: \"#07A3C8\", cursor: \"pointer\"}}> View Status. \n \n \n )\n } else if (item.IdentityVerified) {\n return (\n \n \n \n {accStore.profile.FirstName} has been successfully verified by {item.OrganisationName}\n \n \n )\n }\n })\n }\n \n \n \n Mobile verified\n \n \n \n \n \n Email verified\n \n \n \n \n \n PIN code created\n {!accStore.profile.SecurityPinCodeSetup &&\n go.home()} style={{textDecoration: \"underline\", fontWeight: \"bold\", cursor: \"pointer\", marginLeft: \"0.3rem\"}}>Set-up Now \n }\n \n \n \n \n \n Privacy settings selected\n {!accStore.profile.PrivacyPolicySetup &&\n go.home()} style={{textDecoration: \"underline\", fontWeight: \"bold\", cursor: \"pointer\", marginLeft: \"0.3rem\"}}>Set-up Now \n }\n \n \n \n {\n isDependant && \n \n \n \n }\n \n \n \n );\n})\n\nconst mapStateToProps = state => ({\n isMobileVerified: state.verifyReducer.isMobileVerified,\n verificationStatus: state.verifyReducer.verificationStatus,\n verificationMethod: state.verifyReducer.verificationMethod,\n isPinSetup: state.verifyReducer.isPinCodeSetup,\n})\n\nconst VerificationStatus = {\n Unverified: 0,\n Verified: 1,\n Pending: 2\n}\n\n// 0 - Unverified\n// 1 - Verified\n// 2 - Pending\nexport const getFinalStatus = (accStore) => {\n const profile = accStore.profile;\n if (profile.IdentityVerified) {\n if (profile.PrivacyPolicySetup) {\n if (profile.EmailVerified) {\n if (profile.MobileVerified) {\n return VerificationStatus.Verified;\n } else return VerificationStatus.Pending;\n } else return VerificationStatus.Pending\n } else return VerificationStatus.Pending;\n }\n if (accStore.profile.PendingRequest) return VerificationStatus.Pending;\n \n return VerificationStatus.Unverified;\n /*\n let verifiedArr = accStore.userAccountIdentityLabelArr.map((item) => { return item.IdentityRequest.Status === 1 });\n let pendingArr = accStore.userAccountIdentityLabelArr.map((item) => { return item.IdentityRequest.Status === 0 });\n\n if (!accStore.userAccountIdentityLabelArr.length) {\n return 0;\n } else if (verifiedArr.includes(true)) {\n return 1;\n } else if (pendingArr.includes(true)) {\n return 2;\n } else {\n return 0\n }*/\n}\n\nexport default connect(mapStateToProps)(IdentityLabel);\n","import React from 'react';\nimport styled from 'styled-components';\n\nconst Container = styled.div`\n padding: 1rem 2rem;\n color: white;\n background-color: ${(p: ContainerProps) => p.disabled ? \"lightgray\" : \"#07a3c8\"};\n font-size: 13px;\n margin: 10px;\n border-radius: 25px;\n cursor: pointer;\n width: fit-content;\n margin: auto;\n box-shadow: 1px 5px 6px lightgray;\n`\ninterface ContainerProps {\n disabled: boolean;\n}\ninterface Props {\n text: string;\n onClick: () => void;\n style?: {};\n disabled?: boolean;\n}\n\nconst BlueButton: React.FC = ({text, onClick, style, disabled}) => {\n return (\n {\n if (disabled) { return; }\n onClick();\n }}\n disabled={disabled!}\n > \n {text}\n \n );\n}\n\nexport default BlueButton;","import { isDesktop } from 'config';\nimport React, { CSSProperties } from 'react';\nimport styled, { StyledComponent } from 'styled-components';\n\nimport { ReactComponent as Cross } from 'svgs/blueCross.svg';\n\nconst Container = styled.div`\n border-radius: 4px;\n position: relative;\n background-color: white;\n overflow: hidden;\n padding: 2rem 0rem;\n display: flex;\n flex-direction: column;\n margin: auto;\n height: 100%;\n`\nconst Icon = styled.img`\n display: block;\n width: 100%;\n height: 400px;\n z-index: 4\n`\n// width: 425px;\n// position: absolute;\nconst TextContainer = styled.div`\n display: flex;\n flex-direction: column;\n margin: 0rem 1rem;\n text-align: left;\n margin-top: auto;\n`\nconst Title = styled.div`\n color: #585858;\n font-size: 17px;\n font-weight: 600;\n margin: 0.2rem 0rem;\n`\nconst Text = styled.div`\n font-size: 13px;\n color: #6C6C6C;\n`\nconst FlexH = styled.div`\n display: flex;\n flex-direction: row;\n align-items: center;\n`\nconst Slide = styled.div`\n height: 15px;\n width: 15px;\n background-color: #AFAFAF;\n border-radius: 50%;\n margin: 1rem;\n margin-left: 0px;\n cursor: pointer;\n`\nconst ActiveSlide = styled.div`\n height: 15px;\n width: 15px;\n background-color: #07A3C8;\n border-radius: 50%;\n margin: 1rem;\n margin-left: 0px;\n\n`\nconst Button = styled.div`\n color: #07A3C8;\n font-size: 17px;\n font-weight: bold;\n margin: 2rem;\n cursor: pointer;\n margin-left: auto;\n`\nconst BlueButton = styled.div`\n background-color: #07A3C8;\n color: white;\n font-size: 17px;\n font-weight: bold;\n padding: 0.75rem 2rem;;\n border-radius: 36px;\n margin: 1rem 2rem;\n cursor: pointer;\n margin-left: auto;\n box-shadow: 0px 3px 6px #00000029;\n`;\n\ninterface ContentContainerProps {\n paddingBottom?: string | number\n}\nconst ContentContainer = styled.div`\n margin-top: auto;\n padding-bottom: ${p => p.paddingBottom ?? '0'}\n`\ninterface Props {\n hide: (e: any) => void;\n totalCards: number;\n title: string;\n text: string;\n linkText?: string;\n linkTarget?: string;\n active: number; // Which slide is active\n onNext: (e: any) => void;\n finishButton?: boolean;\n icon: string;\n goBack: (newState: number) => void;\n noX?: boolean;\n buttonText?: string;\n injectStyle?: CSSProperties;\n}\nconst Card: React.FC = ({\n hide, buttonText, totalCards, title, text, linkText, linkTarget, active,\n onNext, finishButton, icon, goBack, noX, injectStyle }) => {\n let slides: boolean[] = [];\n\n for (var i = 0; i < totalCards; i++) {\n slides.push(i === active);\n }\n return (\n \n {!noX && }\n \n \n \n {title} \n {text} \n {\n linkText &&\n \n {linkText}\n }\n \n \n \n {slides.map((active, i) => active ? : goBack(i)} key={i} />)}\n \n {/* {finishButton ?\n {buttonText ? buttonText : \"Get Started\"} \n :\n Next \n } */}\n {buttonText} \n \n \n \n )\n}\n\nexport default Card;\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"pinCode_container__1Su3l\",\"input\":\"pinCode_input__2sGzp\",\"textButton\":\"pinCode_textButton__2jQCM\",\"button\":\"pinCode_button__37uos\",\"guess\":\"pinCode_guess__yWts1\",\"text\":\"pinCode_text__1U0cz\",\"placeholder\":\"pinCode_placeholder__3qIzc\",\"loading\":\"pinCode_loading__cYxPy\",\"spinner\":\"pinCode_spinner__2-Yof\",\"pinTitle\":\"pinCode_pinTitle__2Q4Zq\",\"pinText\":\"pinCode_pinText__96QhZ\",\"learnMore\":\"pinCode_learnMore__3i9bQ\",\"blueButton\":\"pinCode_blueButton__2DeFy\",\"link\":\"pinCode_link__3o30-\",\"containerPin\":\"pinCode_containerPin__2Qdpa\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"empty\":\"expressioninterest_empty__1OwUg\",\"close\":\"expressioninterest_close__1znyL\",\"container\":\"expressioninterest_container__ybhUJ\",\"noFade\":\"expressioninterest_noFade__3DWJZ\",\"topHeaderText\":\"expressioninterest_topHeaderText__1ylzM\",\"topLogo\":\"expressioninterest_topLogo__3q5YA\",\"subHeaderText\":\"expressioninterest_subHeaderText__38gX8\",\"textArea\":\"expressioninterest_textArea__2k5F1\",\"button\":\"expressioninterest_button__2X8T1\",\"buttonSection\":\"expressioninterest_buttonSection__140go\",\"textContent\":\"expressioninterest_textContent__3VFQ8\",\"number\":\"expressioninterest_number__11CeA\",\"textLine\":\"expressioninterest_textLine__1x_Rl\",\"blueButton\":\"expressioninterest_blueButton__Miqjd\",\"whiteButton\":\"expressioninterest_whiteButton__3FVv1\"};","const actionTypes = {\n fetchPickUpOptions: 'SCRIPT_FETCH_PICK_UP_OPTIONS',\n fetchPickUpOptionsSuccess: 'SCRIPT_FETCH_PICK_UP_OPTIONS_SUCCESS',\n fetchPickUpOptionsFailure: 'SCRIPT_FETCH_PICK_UP_OPTIONS_FAILURE',\n fetchPickUpOptionsDependant: 'SCRIPT_FETCH_PICK_UP_OPTIONS_DEPENDANTS',\n};\n\nconst actions = {\n fetchPickUpOptions: (dateOfBirth, orgId, token) => ({\n type: actionTypes.fetchPickUpOptions,\n payload: {\n dateOfBirth,\n orgId,\n token,\n },\n }),\n fetchPickUpOptionsSuccess: options => ({\n type: actionTypes.fetchPickUpOptionsSuccess,\n payload: {\n options,\n },\n }),\n fetchPickUpOptionsFailure: error => ({\n type: actionTypes.fetchPickUpOptionsFailure,\n payload: {\n error,\n },\n }),\n fetchPickUpOptionsDependant: (dateOfBirth, orgId, token, dependantsId) => ({\n type: actionTypes.fetchPickUpOptionsDependant,\n payload: {\n dateOfBirth,\n orgId,\n token,\n dependantsId\n },\n }),\n};\n\nexport { actions, actionTypes };\n","import { css } from 'styled-components';\n\nconst color = {\n grey5: '#585858',\n grey4: '#939393',\n // grey-5-50: \"#58585880\",\n grey3: '#AFAFAF',\n grey2: '#DADADA',\n grey1: '#F9F9F9',\n greyLine: '#F0F0F0',\n boxShadow: '#00000029',\n white: '#FFF',\n white25: 'rgba(255,255,255,0.25)',\n white50: 'rgba(255,255,255,0.5)',\n pelorous: '#07A3C8',\n blueLagoon: '#0E6171',\n red: '#FF6A65',\n fadedBlack: '#000000B3',\n topBottomGradient: 'linear-gradient(to bottom, #3CB9C0, #07A3C8)',\n};\n\nconst font = {\n thinWeight: '200',\n lightWeight: '300',\n mediumWeight: '400',\n boldWeight: '500',\n /* 11px */\n size11: '0.7rem',\n /* 13px */\n size13: '0.8rem',\n /* 15px */\n size15: '0.95rem',\n /* 19px */\n size19: '1.2rem',\n /* 21px */\n size21: '1.3rem',\n /* 23px */\n size23: '1.45rem',\n};\n\nconst flex = css`\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-between;\n`;\n\nconst center = css`\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n`;\n\nconst topLeft = css`\n position: absolute;\n top: 0;\n left: 0;\n`;\n\nexport { color, font, flex, center, topLeft };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"basicInfoForm_container__20_jt\",\"form\":\"basicInfoForm_form__1m7Wj\",\"button\":\"basicInfoForm_button__23Noo button_button__2n_ir\",\"active\":\"basicInfoForm_active__2_4SI\",\"name\":\"basicInfoForm_name__ftKn9\",\"surname\":\"basicInfoForm_surname___l_QY\",\"dob\":\"basicInfoForm_dob__2XKqf\",\"mobile\":\"basicInfoForm_mobile__xv7ib\",\"email\":\"basicInfoForm_email__28wjW\",\"preferredName\":\"basicInfoForm_preferredName__2R5tf\",\"ctaButton\":\"basicInfoForm_ctaButton__UBJ4s\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"contentContainer\":\"practiceCard_contentContainer__23hDz\",\"container\":\"practiceCard_container__ScwWO\",\"title\":\"practiceCard_title__2wTLD\",\"text\":\"practiceCard_text__1OUhZ\",\"orangeStatus\":\"practiceCard_orangeStatus__3KKMT\",\"textContainer\":\"practiceCard_textContainer__3nApS\",\"redStatus\":\"practiceCard_redStatus__1EATS\",\"greenStatus\":\"practiceCard_greenStatus__1crFI\",\"practicePic\":\"practiceCard_practicePic__3_Fe7\",\"dots\":\"practiceCard_dots__37VTh\",\"practiceCardMenu\":\"practiceCard_practiceCardMenu__3SDdN\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"header\":\"urgentAttention_header__2iIke\",\"container\":\"urgentAttention_container__1GcVn\",\"feelingIcon\":\"urgentAttention_feelingIcon__1BnsP\",\"labelSmall\":\"urgentAttention_labelSmall__3pIGW\",\"nextContainer\":\"urgentAttention_nextContainer__3PGFD\",\"feelingPage\":\"urgentAttention_feelingPage__10PA7\",\"navLinkLarge\":\"urgentAttention_navLinkLarge__1A4Oa\",\"backwardArrow\":\"urgentAttention_backwardArrow__3_5jc\",\"bottomNote\":\"urgentAttention_bottomNote__9zvJ7\",\"footer\":\"urgentAttention_footer__1ljNr\",\"back\":\"urgentAttention_back__32k2J\"};","const actionTypes = {\n addDetails: 'GUARDIAN_DETAILS_ADD_DETAILS',\n changePhone: 'GUARDIAN_DETAILS_CHANGE_PHONE',\n clearState: 'GUARDIAN_DETAILS_CLEAR_STATE',\n};\n\nconst actions = {\n addDetails: details => ({\n type: actionTypes.addDetails,\n payload: {\n details,\n },\n }),\n changePhone: mobile => ({\n type: actionTypes.changePhone,\n payload: {\n mobile,\n },\n }),\n clearState: () => ({\n type: actionTypes.clearState,\n }),\n};\n\nexport { actions, actionTypes };\n","import { observable, action, when, makeAutoObservable } from 'mobx';\nimport {\n ILabResult,\n IImmunisation,\n SummaryAPIResponse,\n IComment,\n CommentType,\n IClinicNote,\n SelectedCommentTypeEnum,\n ICommentNew,\n ISendFeedback,\n IPatientDocument,\n} from './myHealthStore.type';\nimport {\n downloadFile,\n generalRequest,\n LOADING_STATUS,\n LoadingStatusType,\n} from '../../../libs/newHttp';\nimport {\n getLabResultsAPI,\n getImmunisationsAPI,\n getSummaryAPI,\n postNewCommentAPI,\n getClinicNotesAPI,\n deleteCommentAPI,\n postLabInviteAPI,\n postLabResultFeedbackAPI,\n getLabResultAPI,\n getPatientDocumentsAPI,\n} from './myHealthStore.api';\nimport { go } from 'routes';\nimport Alert from 'libs/Alert';\n\nexport enum MyHealthTabEnum {\n LabResults = 'LabResults',\n Immunisations = 'Immunisations',\n ClinicalNotes = 'Clinical Notes',\n Summary = 'Summary',\n Documents = 'Health Documents'\n}\n\nexport class MyHealthStore {\n constructor(){\n makeAutoObservable(this);\n }\n // TODO: This property is a temporoary solution for only showing the whiteBox one time, it should use a value from server instead\n @observable hasWhiteBoxOpened = false;\n @observable labSectionFeedbackWhiteBox = {\n show: false,\n noteId: \"\"\n }\n @observable labPageFeedbackWhiteBox = {\n show: false,\n noteId: \"\"\n }\n loading = false;\n\n @observable healthNavigator = {\n keywords: '',\n link: \"\",\n isOpen: false,\n };\n\n @observable currentDocumentPage: IPatientDocument | undefined = undefined;\n @observable currentLabPage: ILabResult | undefined = undefined;\n @observable labResultNotification: {\n LabWhenReceived: string;\n NoteId: string;\n PatientId: string;\n } = {\n LabWhenReceived: \"\",\n NoteId: \"\",\n PatientId: \"\"\n }\n\n @observable currentFeedbackDetails: { patientId: string, noteId: string } | undefined = undefined;\n\n @observable currentTab: MyHealthTabEnum = MyHealthTabEnum.Summary;\n\n @observable postNewCommentLoadingStatus = LOADING_STATUS.INITIAL;\n\n @observable clinicalErrorText: string | null = \"\";\n @observable labsErrorText: string | null = null;\n @observable immunisationsErrorText: string | null = null;\n @observable documentsErrorText: string | null = null;\n\n @observable summaryTabLoadingStatus = LOADING_STATUS.INITIAL;\n @observable summaryTabErrorText = '';\n @observable summaryTab: SummaryAPIResponse = {\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n GivenName: '',\n FamilyName: '',\n ErrorMessage: '',\n DateOfBirth: '',\n CurrentConditions: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n Name: '',\n Code: '',\n Description:\n '',\n DiagnosisDate: '',\n ConditionType: 0,\n ProviderId: '00000000-0000-0000-0000-000000000000',\n EnteredBy: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n {\n Id: '00000000-0000-0000-0000-000000000001',\n PatientId: '00000000-0000-0000-0000-000000000000',\n Name: '',\n Code: 'string',\n Description:\n '',\n DiagnosisDate: '',\n ConditionType: 0,\n ProviderId: '00000000-0000-0000-0000-000000000000',\n EnteredBy: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n ],\n PastConditions: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n Name: '',\n Code: 'string',\n Description: 'string',\n DiagnosisDate: '',\n ConditionType: 0,\n ProviderId: '00000000-0000-0000-0000-000000000000',\n EnteredBy: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n ],\n Allergies: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n NameOfAllergy: '',\n AllergyType: 0,\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n PatientPmsId: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n ProviderId: '00000000-0000-0000-0000-000000000000',\n ProviderName: 'string',\n DoctorNotes: 'string',\n DateTime: '',\n IsNewInPastMonth: true,\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n Deleted: false,\n DateOfComment: '2019-11-07T10:06:41.590Z',\n },\n ],\n },\n {\n Id: '00000000-0000-0000-0000-000000000001',\n NameOfAllergy: '',\n AllergyType: 0,\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n PatientPmsId: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n ProviderId: '00000000-0000-0000-0000-000000000000',\n ProviderName: 'string',\n DoctorNotes: 'string',\n DateTime: '',\n IsNewInPastMonth: true,\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n ],\n CurrentMedications: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n DrugCode: 'string',\n GenericName: '',\n BrandName: 'string',\n CodingSystem: 0,\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n PatientPmsId: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n ProviderId: '00000000-0000-0000-0000-000000000000',\n ProviderName: 'string',\n DoctorNotes: 'string',\n DateTime: '',\n IsNewInPastMonth: true,\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n ],\n PastMedications: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n DrugCode: 'string',\n GenericName: '',\n BrandName: 'string',\n CodingSystem: 0,\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n PatientPmsId: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n ProviderId: '00000000-0000-0000-0000-000000000000',\n ProviderName: 'string',\n DoctorNotes: 'string',\n DateTime: '',\n IsNewInPastMonth: true,\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n ],\n Procedures: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n Name: '',\n Code: 'string',\n Description: 'string',\n DiagnosisDate: '',\n ConditionType: 0,\n ProviderId: '00000000-0000-0000-0000-000000000000',\n ProviderName: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n {\n Id: '00000000-0000-0000-0000-000000000001',\n PatientId: '00000000-0000-0000-0000-000000000000',\n Name: '',\n Code: 'string',\n Description: 'string',\n DiagnosisDate: '',\n ConditionType: 0,\n ProviderId: '00000000-0000-0000-0000-000000000000',\n ProviderName: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n Comments: [\n {\n Id: '00000000-0000-0000-0000-000000000000',\n ParentId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n PatientId: '00000000-0000-0000-0000-000000000000',\n CommentType: 0,\n Content: 'string',\n DateOfComment: '2019-11-07T10:06:41.590Z',\n Deleted: false,\n },\n ],\n },\n ],\n Accidents: [\n {\n AccidentNumber : '',\n ProviderName : '',\n Description: '',\n Diagnosis : '',\n Employer : '',\n Type : '',\n Insurer : '',\n Status : '',\n AccidentDateTime : '',\n LastUpdated : '',\n },\n ],\n HeightInCm: 0,\n WhenHeight: \"\",\n WeightInKg: 0,\n WhenWeight: \"\",\n BMI: 0,\n BloodType: 0,\n BloodPressure: {\n Diastolic: 0,\n Systolic: 0,\n WhenMeasured: \"\"\n },\n IdentityVerified: true,\n Identities: [\n {\n PatientId: '00000000-0000-0000-0000-000000000000',\n ConsumerId: '00000000-0000-0000-0000-000000000000',\n Email: 'string',\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n MobileVerified: true,\n IdentityVerified: true,\n VerificationStatusUpdatedOn: '2019-11-07T10:06:41.591Z',\n VerificationMethod: 0,\n },\n ],\n ConsumerPrivacySettingsWithAPractice: [\n {\n OrganisationId: '00000000-0000-0000-0000-000000000000',\n OrganisationName: 'string',\n LogoUrl: 'string',\n AllowAccessMyHealthRecords: {\n Allow: true,\n Overridden: true,\n Reason: 'string',\n },\n AllowAccessMyDoctorNotes: {\n Allow: true,\n Overridden: true,\n Reason: 'string',\n },\n AllowAccessMyDependantHealthRecords: {\n Allow: true,\n Overridden: true,\n Reason: 'string',\n },\n AllowShareMyHealthDataWithPractices: true,\n },\n ],\n BlacklistedCard: {\n Type: 'string',\n Item: [],\n Reason: 'string',\n },\n OrganisationServiceNotEnabledCard: {\n Type: 'string',\n Reason: 'string',\n },\n };\n\n @observable labResultsTabLoadingStatus = LOADING_STATUS.INITIAL;\n @observable labResultsTab: {\n all: ILabResult[];\n newInLastMonth: ILabResult[];\n past: ILabResult[];\n feedback: ILabResult[];\n } = {\n all: [],\n newInLastMonth: [],\n past: [],\n feedback: [],\n };\n\n @observable immunisationsTabLoadingStatus = LOADING_STATUS.INITIAL;\n @observable immunisationsTab: {\n all: IImmunisation[];\n givenWithLast3Months: IImmunisation[];\n past: IImmunisation[];\n } = {\n all: [],\n givenWithLast3Months: [],\n past: [],\n };\n\n @observable clinicNotesTabLoadingStatus = LOADING_STATUS.INITIAL;\n @observable clinicNotesTab: {\n all: IClinicNote[];\n newInLastMonth: IClinicNote[];\n past: IClinicNote[];\n } = {\n all: [],\n newInLastMonth: [],\n past: [],\n };\n\n @observable labInviteData = {\n PatientId: \"\",\n Consent: false,\n AllowInformationContinueUsedAfterWithdrawn: false,\n ReceiveSummaryAfterResearch: false\n }\n @observable labInviteGeneralInfo = {\n PatientId: \"\",\n OrgName: \"\",\n ProviderName: \"\"\n }\n\n @observable patientDocumentTabLoadingStatus = LOADING_STATUS.INITIAL;\n @observable patientDocumentTab: {\n all: IPatientDocument[];\n newInLastMonth: IPatientDocument[];\n past: IPatientDocument[];\n } = {\n all: [],\n newInLastMonth: [],\n past: [],\n };\n\n @observable justGaveLabsFeedback: boolean = false; \n\n @action.bound\n setJustGaveLabsFeedback() {\n this.justGaveLabsFeedback = true;\n }\n\n @action.bound \n setLabInviteGeneralInfo(pId: string, org: string, provider: string) {\n this.labInviteGeneralInfo = {\n PatientId: pId,\n OrgName: org,\n ProviderName: provider,\n }\n }\n \n @action.bound\n setHasWhiteBoxOpened(value: boolean) {\n this.hasWhiteBoxOpened = value;\n }\n\n @action.bound\n setCurrentLabPage(value: ILabResult) {\n this.currentLabPage = value;\n }\n\n @action.bound\n setCurrentDocumentPage(value: IPatientDocument) {\n this.currentDocumentPage = value;\n }\n\n @action.bound\n goToTab(tabToGo: MyHealthTabEnum) {\n this.currentTab = tabToGo;\n }\n\n @action.bound\n async setAllowInformationContinueUsedAfterWithdrawn(value: boolean) {\n this.labInviteData.AllowInformationContinueUsedAfterWithdrawn = value;\n }\n @action.bound\n async setReceiveSummaryAfterResearch(value: boolean) {\n this.labInviteData.ReceiveSummaryAfterResearch = value;\n }\n @action.bound\n async setConsent(value: boolean) {\n this.labInviteData.Consent = value;\n }\n async setPatientId(value: string) {\n this.labInviteData.PatientId = value;\n }\n\n @action.bound\n async postLabInvite(onSuccess: () => void) {\n this.loading = true\n\n await generalRequest.bind(this)({\n api: postLabInviteAPI(this.labInviteData),\n afterLoaded: (data: any) => {\n this.loading = false;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message)\n }\n })\n }\n @action.bound\n async postLabResultFeedback(feedback: ISendFeedback, onSuccess: () => void) {\n this.loading = true;\n\n await generalRequest.bind(this)({\n api: postLabResultFeedbackAPI(feedback),\n afterLoaded: (data: any) => {\n this.loading = false\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n\n @action.bound\n async getSummary(onUnauth: () => void) {\n //if (this.isLoaded(this.summaryTabLoadingStatus)) return;\n \n this.loading = true;\n\n await generalRequest.bind(this)({\n loadingStatusName: 'summaryTabLoadingStatus',\n api: getSummaryAPI,\n dataPropertyName: 'summaryTab',\n afterLoaded: (data: any) => {\n this.loading = false;\n this.summaryTab = data;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n if (err.response.status === 401) {\n onUnauth();\n }\n this.summaryTabErrorText = err.response.data.Message;\n },\n });\n }\n\n @action.bound\n async getLabResults() {\n if (this.isLoaded(this.labResultsTabLoadingStatus) && !this.justGaveLabsFeedback) return;\n this.loading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'labResultsTabLoadingStatus',\n api: getLabResultsAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.updateLabResults(data.LabResults);\n this.labPageFeedbackWhiteBox.show = data.NeedFeedBackForLabResearch;\n this.labResultNotification = data.LabResearchNotifications[0];\n this.labPageFeedbackWhiteBox.noteId = data.NoteId;\n this.labsErrorText = data.ErrorMessage;\n this.justGaveLabsFeedback = false;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n }\n });\n }\n\n @action.bound\n async getLabResult(patientId: string, whenReceived: string, onSuccess: () => void) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: getLabResultAPI(patientId, whenReceived),\n afterLoaded: (data: any) => {\n this.loading = false;\n this.currentLabPage = data;\n onSuccess();\n },\n afterFailed: (err: any) => {\n this.loading = false;\n Alert.error(err.response.data.Message);\n }\n })\n }\n @action.bound\n async getImmunisations() {\n if (this.isLoaded(this.immunisationsTabLoadingStatus)) return;\n this.loading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'immunisationsTabLoadingStatus',\n api: getImmunisationsAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.updateImmunisations(data.Immunisations);\n this.immunisationsErrorText = data.ErrorMessage;\n },\n });\n }\n\n @action.bound\n async getClinicNotes() {\n if (this.isLoaded(this.clinicNotesTabLoadingStatus)) return;\n this.loading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'clinicNotesTabLoadingStatus',\n api: getClinicNotesAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.updateClinicNotes(data.DoctorNotes);\n this.clinicalErrorText = data.ErrorMessage;\n },\n });\n }\n\n @action.bound\n async deleteComment(commentId: string) {\n this.loading = true;\n await generalRequest.bind(this)({\n api: deleteCommentAPI(commentId),\n afterLoaded: (data: any) => {\n this.loading = false;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n }\n })\n }\n @action.bound\n async postNewComment(\n commentType: SelectedCommentTypeEnum,\n parentId: string,\n newComment: ICommentNew,\n ) {\n await generalRequest.bind(this)({\n loadingStatusName: 'postNewCommentLoadingStatus',\n api: postNewCommentAPI(newComment),\n afterLoaded: (response: IComment) => {\n const DATA_MAP = {\n [CommentType.LabResult]: {\n data: this.labResultsTab.all,\n update: this.updateLabResults,\n },\n [CommentType.Immunisation]: {\n data: this.immunisationsTab.all,\n update: this.updateImmunisations,\n },\n [CommentType.DoctorNotes]: {\n data: this.clinicNotesTab.all,\n update: this.updateClinicNotes,\n },\n };\n\n const { data, update } =\n // @ts-ignore\n DATA_MAP[newComment.CommentType];\n\n if (commentType === CommentType.DoctorNotes) {\n data.forEach((item: IClinicNote) => {\n if (item.Id === response.ParentId) {\n if (item.Comments === null) {\n item.Comments = [response];\n } else {\n item.Comments.unshift(response);\n }\n }\n });\n } else {\n data.forEach((item: IImmunisation | ILabResult) => {\n if (item.Id === parentId) {\n if (item.Comments === null) {\n item.Comments = [response];\n } else {\n item.Comments.unshift(response);\n }\n }\n });\n }\n\n update(data);\n },\n });\n }\n\n @action.bound\n setHealthNavigator({\n keywords,\n isOpen,\n link,\n }: {\n link?: string;\n keywords?: string;\n isOpen?: boolean;\n }) {\n if (keywords) {\n this.healthNavigator.keywords = keywords;\n this.healthNavigator.link = \"\";\n\n }\n\n if (link) {\n this.healthNavigator.link = link;\n this.healthNavigator.keywords = '';\n }\n\n if (isOpen != null) {\n this.healthNavigator.isOpen = isOpen;\n }\n }\n\n @action.bound\n private updateLabResults(data: ILabResult[]) {\n const newInLastMonthItems: ILabResult[] = [];\n const pastItems: ILabResult[] = [];\n const feedbackItems: ILabResult[] = [];\n\n data.forEach(item => {\n if (item.NeedFeedBackForLabResearch) { feedbackItems.push(item); }\n if (item.IsNewInPastMonth) {\n newInLastMonthItems.push(item);\n } else {\n pastItems.push(item);\n }\n });\n\n this.labResultsTab.all = data;\n this.labResultsTab.newInLastMonth = newInLastMonthItems;\n this.labResultsTab.past = pastItems;\n this.labResultsTab.feedback = feedbackItems;\n }\n\n @action.bound\n private updateImmunisations(data: IImmunisation[]) {\n const givenWithLast3Months: IImmunisation[] = [];\n const pastItems: IImmunisation[] = [];\n\n data.forEach(item => {\n if (item.IsNewInPast3Month) {\n givenWithLast3Months.push(item);\n } else {\n pastItems.push(item);\n }\n });\n\n this.immunisationsTab.all = data;\n this.immunisationsTab.givenWithLast3Months = givenWithLast3Months;\n this.immunisationsTab.past = pastItems;\n }\n\n @action.bound\n private updatePatientDocuments(data: IPatientDocument[]) {\n const newInLastMonthItems: IPatientDocument[] = [];\n const pastItems: IPatientDocument[] = [];\n\n data.forEach(item => {\n if (item.IsNewInPastMonth) {\n newInLastMonthItems.push(item);\n } else {\n pastItems.push(item);\n }\n });\n\n const dateSorter = (a: IPatientDocument, b: IPatientDocument) => {\n if(a.DateTime < b.DateTime) { return 1; }\n if(a.DateTime > b.DateTime) { return -1; }\n return 0;\n }\n\n this.patientDocumentTab.all = data.sort(dateSorter);\n this.patientDocumentTab.newInLastMonth = newInLastMonthItems.sort(dateSorter);\n this.patientDocumentTab.past = pastItems.sort(dateSorter);\n }\n\n @action.bound\n private updateClinicNotes(data: IClinicNote[]) {\n const newInLastMonthItems: IClinicNote[] = [];\n const pastItems: IClinicNote[] = [];\n\n data.forEach(item => {\n if (item.IsNewInPastMonth) {\n newInLastMonthItems.push(item);\n } else {\n pastItems.push(item);\n }\n });\n\n this.clinicNotesTab.all = data;\n this.clinicNotesTab.newInLastMonth = newInLastMonthItems;\n this.clinicNotesTab.past = pastItems;\n }\n\n private isLoaded(status: LoadingStatusType) {\n return status === LOADING_STATUS.LOADED;\n }\n\n @action.bound\n async getPatientDocuments() {\n if (this.patientDocumentTab.all.length > 0) return;\n this.loading = true;\n await generalRequest.bind(this)({\n loadingStatusName: 'patientDocumentTabLoadingStatus',\n api: getPatientDocumentsAPI,\n afterLoaded: (data: any) => {\n this.loading = false;\n this.updatePatientDocuments(data.PatientDocuments);\n this.documentsErrorText = data.ErrorMessage;\n },\n afterFailed: (err: any) => {\n this.loading = false;\n }\n });\n }\n\n @action.bound\n async downloadDocument(patientId, documentId) {\n this.loading = true;\n await downloadFile(patientId, documentId);\n this.loading = false;\n }\n}\n","import { request, HTTP } from '../../../libs/newHttp';\nimport { ICommentNew, ISendFeedback } from './myHealthStore.type';\n\nexport const getSummaryAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/phr/summary`,\n });\n\nexport const getLabResultsAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/phr/lab-results`,\n });\n\nexport const getImmunisationsAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/phr/immunisations`,\n });\n\nexport const getPatientDocumentsAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/phr/patient-documents`,\n });\n\nexport const getClinicNotesAPI = () =>\n request({\n method: HTTP.GET,\n url: `consumer/phr/doctor-notes`,\n });\n\nexport const postNewCommentAPI = (newComment: ICommentNew) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/phr/comment/new`,\n data: newComment,\n });\n\nexport const deleteCommentAPI = (commentId: string) => () => \n request({\n method: HTTP.DELETE,\n url: `consumer/phr/comment/${commentId}`\n})\n\nexport const postLabInviteAPI = (item: {PatientId: string, Consent: boolean, AllowInformationContinueUsedAfterWithdrawn: boolean, ReceiveSummaryAfterResearch: boolean}) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/lab-research/invitation`,\n data: item\n })\n\nexport const postLabResultFeedbackAPI = (feedback: ISendFeedback) => () =>\n request({\n method: HTTP.POST,\n url: `consumer/lab-research/feedback`,\n data: feedback,\n })\nexport const getLabResultAPI = (patientId: string, whenReceived: string) => () => \n request({\n method: HTTP.GET,\n url: `consumer/phr/lab-result?patientId=${patientId}&whenReceived=${whenReceived}`,\n })\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"switcheroo_container__5dE-I\",\"enter\":\"switcheroo_enter__ev19o\",\"enterActive\":\"switcheroo_enterActive__-UTfl\",\"leave\":\"switcheroo_leave__3n7hE\",\"leaveActive\":\"switcheroo_leaveActive__1ECcG\",\"enterLeft\":\"switcheroo_enterLeft__1rmVN\",\"enterLeftActive\":\"switcheroo_enterLeftActive__3eyLQ\",\"leaveLeft\":\"switcheroo_leaveLeft__2qWRU\",\"leaveLeftActive\":\"switcheroo_leaveLeftActive__h_BvE\",\"enterRight\":\"switcheroo_enterRight__1JukM\",\"enterRightActive\":\"switcheroo_enterRightActive__2tl1h\",\"leaveRight\":\"switcheroo_leaveRight__29abi\",\"leaveRightActive\":\"switcheroo_leaveRightActive__2onbA\",\"lastEnter\":\"switcheroo_lastEnter__1wt0A\",\"lastEnterActive\":\"switcheroo_lastEnterActive__2hWk6\",\"lastLeave\":\"switcheroo_lastLeave__cZ_rP\",\"lastLeaveActive\":\"switcheroo_lastLeaveActive__3I1RM\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"header\":\"reasonOld_header__2Sk1d\",\"feelingPage\":\"reasonOld_feelingPage__w1XDD\",\"formContainer\":\"reasonOld_formContainer__2Nmck\",\"label\":\"reasonOld_label__2PiLy\",\"formInnerContainer\":\"reasonOld_formInnerContainer__30uZn\",\"footer\":\"reasonOld_footer__P1ChD\",\"bottomNote\":\"reasonOld_bottomNote__2bu9j\",\"navLinkLarge\":\"reasonOld_navLinkLarge__2DQKu\",\"backwardArrow\":\"reasonOld_backwardArrow__12I9O\",\"forwardArrow\":\"reasonOld_forwardArrow__3DpW-\",\"cta\":\"reasonOld_cta__3Sndz\",\"headerTitle\":\"reasonOld_headerTitle__3QfQV\",\"desktopLabel\":\"reasonOld_desktopLabel__3vAwi\",\"nextContainer\":\"reasonOld_nextContainer__3NQ_L\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"ImgTextCard_container__1pMxg\",\"containerUser\":\"ImgTextCard_containerUser__14e0j\",\"contentContainer\":\"ImgTextCard_contentContainer__1of0K\",\"profilePic\":\"ImgTextCard_profilePic__3MYE5\",\"title\":\"ImgTextCard_title__1fGv3\",\"text\":\"ImgTextCard_text__UW0qd\",\"userDetails\":\"ImgTextCard_userDetails__2F-eh\",\"image\":\"ImgTextCard_image__RdSj4\",\"arrowImage\":\"ImgTextCard_arrowImage__3y4WC\",\"verticleContainer\":\"ImgTextCard_verticleContainer__1577v\",\"placeholder\":\"ImgTextCard_placeholder__3pkSh\",\"banner\":\"ImgTextCard_banner__1iXqb\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"mainInfo_container__2Qgmu\",\"openContainer\":\"mainInfo_openContainer__XStXf\",\"date\":\"mainInfo_date__NiRjQ\",\"loadingContainer\":\"mainInfo_loadingContainer__2rOB7\",\"spinner\":\"mainInfo_spinner__va0Zr\",\"patientNotesIcon\":\"mainInfo_patientNotesIcon__2H6_0\",\"sectionTitle\":\"mainInfo_sectionTitle__76uw2\",\"section\":\"mainInfo_section__1sBQL\",\"pickupDetails\":\"mainInfo_pickupDetails__pHvnp\",\"placeAddress\":\"mainInfo_placeAddress__1oDHO\",\"placeName\":\"mainInfo_placeName__1QuPL mainInfo_placeAddress__1oDHO mainInfo_placeAddress__1oDHO\",\"paymentItems\":\"mainInfo_paymentItems__1F4LN\",\"itemContainer\":\"mainInfo_itemContainer__2IHfw\",\"name\":\"mainInfo_name__1tQLB\",\"refund\":\"mainInfo_refund__1zBvh\",\"totalPayment\":\"mainInfo_totalPayment__3n-fN mainInfo_itemContainer__2IHfw\",\"directions\":\"mainInfo_directions__rnSRB\",\"contact\":\"mainInfo_contact__Bgqqe\",\"paymentHeading\":\"mainInfo_paymentHeading__3H6AD\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"RequestScriptDesktop_container__2B6dj\",\"autoCompleteContainer\":\"RequestScriptDesktop_autoCompleteContainer__2Cie1\",\"appear\":\"RequestScriptDesktop_appear__35WoZ\",\"infoPopUp\":\"RequestScriptDesktop_infoPopUp__2vQbH\",\"arrow\":\"RequestScriptDesktop_arrow__3EflE\",\"heading\":\"RequestScriptDesktop_heading__3nTz1\",\"paymentDetailsHeading\":\"RequestScriptDesktop_paymentDetailsHeading__3ZiPZ RequestScriptDesktop_heading__3nTz1\",\"page\":\"RequestScriptDesktop_page__3LrAW\",\"overlay\":\"RequestScriptDesktop_overlay__1w8CZ\",\"spinner\":\"RequestScriptDesktop_spinner__2L8A1\",\"wrapper\":\"RequestScriptDesktop_wrapper__1fa7g\",\"hidden\":\"RequestScriptDesktop_hidden__21dR8\"};","const actionTypes = {\n addAppStyles: 'ADD_APP_STYLES',\n clearAppStyles: 'CLEAR_APP_STYLES',\n removeAppStyles: 'REMOVE_APP_STYLES',\n toggleShrinkApp: 'TOGGLE_SHRINK_APP',\n toggleMobileHeader: 'APP_FORCE_MOBILE_HEADER',\n};\n\nconst actions = {\n addAppStyles: classNames => ({\n type: actionTypes.addAppStyles,\n payload: { classNames },\n }),\n clearAppStyles: () => ({\n type: actionTypes.clearAppStyles,\n }),\n removeAppStyles: classNames => ({\n type: actionTypes.removeAppStyles,\n payload: { classNames },\n }),\n toggleShrinkApp: () => ({\n type: actionTypes.toggleShrinkApp,\n }),\n toggleMobileHeader: () => ({\n type: actionTypes.toggleMobileHeader,\n }),\n};\n\nexport { actions, actionTypes };\n","import React, { useState, RefObject, useEffect } from 'react';\nimport styled from 'styled-components';\n\nimport Alert from '../../../libs/Alert';\nimport { ReactComponent as Arrow } from '../../../svgs/blueLeftLineArrow.svg';\nimport empty from '../../../svgs/emptyCircle.svg'\nimport { useIdentityStore, useAccountStore, useSecurityStore } from '../../../store/mobx/mobx';\n\nconst Container = styled.div`\n display: flex;\n flex-direction: column;\n`\nconst Row = styled.div`\n display: flex;\n flex-direction: row;\n`\nconst ButtonContainer = styled.div`\n display: flex;\n flex-direction: column;\n align-items: center;\n margin: 1rem auto;\n margin-top: 1rem;\n`\nconst Button = styled.div`\n width: 48px;\n height: 48px;\n border: 2px solid #07A3C8;\n color: #07A3C8;\n background-color: white;\n border-radius: 50%;\n font-size: 20px;\n line-height: 42px;\n margin: 6px;\n cursor: pointer;\n text-align: center;\n &:hover {\n background-color: #07A3C8;\n color: white;\n }\n transition: all 0.3s;\n`\nconst CodeContainer = styled.form`\n display: flex;\n flex-direction: row;\n margin: auto;\n width: 100px;\n`\nconst Code = styled.input`\n background-image: url(${empty});\n background-repeat: no-repeat;\n background-position: center;\n border: none;\n outline: none;\n caret-color: transparent;\n font-size: 30pt;\n color: #07A3C8;\n width: 25px;\n text-align: center;\n font-family: \"text-security-disc\";\n --webkit-text-security: disc;\n background-position-y: 65%;\n padding: 0rem;\n`\n\ninterface Props {\n verify: boolean;\n goNext: () => void;\n goBack: () => void;\n ifGuessable: () => void;\n length: number;\n submitPin?: boolean;\n mobile?: boolean;\n useRecoverAccountAPI?: boolean;\n}\n\nconst guessable = [\n \"1111\", \"2222\", \"3333\", \"4444\", \"5555\", \n \"6666\", \"7777\", \"8888\", \"9999\", \"0123\",\n \"1234\", \"2345\", \"3456\", \"4567\", \"5678\",\n \"6789\", \"012345\", \"123456\", \"234567\",\n \"345678\", \"456789\", \"111111\", \"222222\", \n \"333333\", \"444444\", \"555555\", \"666666\", \n \"777777\", \"888888\",\"999999\", \"0000\", \"000000\"\n]\n\nconst PinControl: React.FC = ({verify, goNext, goBack, length, ifGuessable, submitPin, mobile, useRecoverAccountAPI}) => {\n const store = useIdentityStore();\n const secStore = useSecurityStore();\n const accStore = useAccountStore();\n const refArr: RefObject[] = [];\n for (let i: number = 0; i < length; i++) {\n refArr.push(React.createRef());\n }\n const [current, setCurrent] = useState(0);\n // const [disable, setDisable] = useState(false);\n\n const getFocus = () => {\n refArr[current].current!.focus();\n }\n\n useEffect(() => {\n if (refArr[current]) {\n if (refArr[current].current) {\n getFocus();\n }\n }\n })\n const onClick = (value: string) => {\n const isNum = /^\\d+$/.test(value)\n if (!isNum) { return; }\n\n refArr[current].current!.value = value;\n if (current !== length - 1) { \n refArr[current + 1].current!.focus(); \n setCurrent(current + 1);\n } else { \n if (!verify) { \n if (length === 4) { \n store.addPin(refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value) \n }\n if (length === 6) { \n store.addPin(refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + \n refArr[3].current!.value + refArr[4].current!.value + refArr[5].current!.value) \n }\n \n let pin: string = length === 4 ?\n refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value :\n refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + \n refArr[3].current!.value + refArr[4].current!.value + refArr[5].current!.value;\n \n if (guessable.includes(pin)) { \n ifGuessable();\n return;\n }\n }\n if (verify) {\n if (length === 4) {\n if (submitPin) {\n refArr[length - 1].current!.blur()\n refArr[0].current!.autofocus = false;\n let result = accStore.verifyPinCode(\n refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value,\n () => goNext(),\n () => goBack(),\n accStore.emailForRecoveringSuspendedAccount \n )\n if (!result) refArr[0].current!.focus();\n reset();\n return;\n }\n if (store.pin === refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value) {\n if (useRecoverAccountAPI) {\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let t = params.get('token');\n\n if (t === null) { return }\n accStore.postRecoverAccountChangePin(t, \n refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value,\n () => {},\n () => goBack()\n )\n } else {\n store.setPin(() => {\n setTimeout(() => {\n secStore.editSecuritySettings({\n SignIn2StepsVerification: true,\n NotifyUserAfter5FailedAttempts: false,\n SuspendAccountAfter10FailedAttempts: false,\n }, (verify && !submitPin))\n goNext();\n }, 2000);\n });\n }\n } else {\n store.setError(true);\n reset();\n Alert.error(\"The Pin code did not match. Try again.\");\n goBack();\n } \n return;\n } else {\n if (submitPin) {\n refArr[length - 1].current!.blur()\n accStore.verifyPinCode(\n refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value + refArr[4].current!.value + refArr[5].current!.value,\n () => goNext(),\n () => goBack(),\n accStore.emailForRecoveringSuspendedAccount\n )\n reset();\n return;\n }\n \n\n if (store.pin === refArr[0].current!.value + refArr[1].current!.value + \n refArr[2].current!.value + refArr[3].current!.value + refArr[4].current!.value + refArr[5].current!.value) {\n if (useRecoverAccountAPI) {\n let search = window.location.search;\n let params = new URLSearchParams(search);\n let t = params.get('token');\n \n if (t === null) { return }\n accStore.postRecoverAccountChangePin(t, \n refArr[0].current!.value + refArr[1].current!.value + refArr[2].current!.value + refArr[3].current!.value + refArr[4].current!.value + refArr[5].current!.value,\n () => {},\n () => goBack()\n )\n } else {\n store.setPin(() => {\n setTimeout(() => {\n secStore.editSecuritySettings({\n SignIn2StepsVerification: true,\n NotifyUserAfter5FailedAttempts: false,\n SuspendAccountAfter10FailedAttempts: false,\n }, false)\n goNext();\n }, 2000);\n });\n return;\n }\n } else {\n store.setError(true);\n reset();\n Alert.error(\"The PIN code did not match. Try again.\");\n goBack();\n return;\n } \n }\n }\n reset();\n goNext();\n }\n }\n const backClick = () => {\n if (refArr[current].current!.value !== \"\") {\n refArr[current].current!.value = \"\";\n return\n }\n\n if (current !== 0) {\n refArr[current - 1].current!.value = \"\"; \n refArr[current - 1].current!.focus(); \n setCurrent(current - 1); \n }\n }\n /*\n const onChange = (e: any) => {\n const value = e.target.value;\n let isNum = /^\\d+$/.test(value)\n\n if (!isNum) { return; }\n refArr[current].current!.value = value;\n if (current !== length - 1) { refArr[current + 1].current!.focus(); }\n }*/\n const onKeyDown = (e: any) => {\n if (e.key === \"Backspace\") {\n backClick();\n }\n }\n\n const reset = () => {\n if (length === 4) {\n refArr[0].current!.value = \"\";\n refArr[1].current!.value = \"\";\n refArr[2].current!.value = \"\";\n refArr[3].current!.value = \"\";\n setCurrent(0); \n } else {\n refArr[0].current!.value = \"\";\n refArr[1].current!.value = \"\";\n refArr[2].current!.value = \"\";\n refArr[3].current!.value = \"\";\n refArr[4].current!.value = \"\";\n refArr[5].current!.value = \"\";\n setCurrent(0);\n \n }\n }\n\n return (\n \n {length === 4 &&\n {getFocus()}}>\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[0]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[1]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[2]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[3]} maxLength={1} type=\"tel\">
\n \n }\n {length === 6 &&\n \n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[0]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[1]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[2]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[3]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[4]} maxLength={1} type=\"tel\">
\n onKeyDown(e)} onChange={(e) => onClick(e.target.value)} ref={refArr[5]} maxLength={1} type=\"tel\">
\n \n }\n {!mobile &&\n \n \n onClick(\"1\")}>1 \n onClick(\"2\")}>2 \n onClick(\"3\")}>3 \n
\n \n onClick(\"4\")}>4 \n onClick(\"5\")}>5 \n onClick(\"6\")}>6 \n
\n \n onClick(\"7\")}>7 \n onClick(\"8\")}>8 \n onClick(\"9\")}>9 \n
\n \n reset()}>C \n onClick(\"0\")}>0 \n backClick()}> \n
\n \n }\n \n )\n}\n\nexport default PinControl;","export const getLoginPageURL = () => {\n const { host } = window.location;\n let result = 'https://login.vensa.com/';\n\n if (host.includes(':')) {\n result = `//${host}/login`;\n } else if (host.endsWith('uat.vensa.com')) {\n result = 'https://loginuat.vensa.com/';\n } else if (host.endsWith('demo.vensa.com') || host.startsWith('stormdemowebconsumer')) {\n result = 'https://logindemo.vensa.com/';\n } else if (host.endsWith('devtest.vensa.com')) {\n result = 'https://logindevtest.vensa.com/';\n }\n\n return result;\n};\n\nexport const getSupportPage = () => 'https://helpme.vensa.com/help-for-patients';","import React from 'react';\n\nimport styles from './callPractice.module.css';\nimport { ReactComponent as Phone } from '../../svgs/phone.svg';\nimport { PracticeInfoPropType } from '../../PracticeProfilePage/BookingPageMobile/propTypes';\n\nconst CallPractice = ({ practice }) => (\n \n
{practice.Name} \n
{practice.Phone ? practice.Phone : ''} \n
\n \n \n
\n);\n\nCallPractice.propTypes = {\n practice: PracticeInfoPropType.isRequired,\n};\n\nexport default CallPractice;\n","import React, { ComponentType, PropsWithChildren } from 'react';\nimport {\n // @ts-ignore\n border,\n borderBottom,\n borderColor,\n borderLeft,\n borderRadius,\n borderRight,\n borderTop,\n bottom,\n boxShadow,\n color,\n display,\n flexWrap,\n fontSize,\n fontWeight,\n height,\n left,\n maxHeight,\n maxWidth,\n minHeight,\n minWidth,\n opacity,\n overflow,\n position,\n right,\n space,\n style,\n textAlign,\n top,\n width,\n zIndex,\n} from 'styled-system';\nimport { css as cssFunc, styled } from '../../styles/styled';\nimport { getTransitionValue } from '../../styles/utils';\nimport { is } from '../../utils/utils';\nimport { CSSType, IBaseBox } from './BaseBox.type';\n\nconst lineHeight = style({ prop: 'lineHeight' });\nconst cursor = style({ prop: 'cursor' });\nconst transition = style({ prop: 'transition' });\nconst transform = style({ prop: 'transform' });\nconst flexGrow = style({ prop: 'flexGrow' });\nconst flex = style({ prop: 'flex' });\nconst overflowX = style({ prop: 'overflowX' });\nconst overflowY = style({ prop: 'overflowY' });\n\nconst flexDirection = style({\n prop: 'direction',\n cssProperty: 'flexDirection',\n});\n\nconst justifyContent = style({\n prop: 'justifyContent',\n transformValue: (value: string | number) => {\n switch (value) {\n case 'start':\n case 'end':\n return `flex-${value}`;\n\n case 'between':\n case 'around':\n return `space-${value}`;\n\n default:\n return value;\n }\n },\n});\n\nconst transformAlignCSS = (value: string | number) => {\n switch (value) {\n case 'start':\n case 'end':\n return `flex-${value}`;\n\n default:\n return value;\n }\n};\n\nconst alignItems = style({\n prop: 'alignItems',\n transformValue: transformAlignCSS,\n});\n\nconst alignSelf = style({\n prop: 'alignSelf',\n transformValue: transformAlignCSS,\n});\n\nfunction applyCSS() {\n return ({ css }: { css?: CSSType }) =>\n is.notExist(css)\n ? ''\n : cssFunc`${\n // @ts-ignore\n css\n }`;\n}\n\nexport const BaseBox = styled.div`\n box-sizing: border-box;\n\n ${space}\n ${width}\n ${height}\n ${maxHeight}\n ${minHeight}\n ${maxWidth}\n ${minWidth}\n ${zIndex}\n\n ${display}\n ${flex};\n ${justifyContent}\n ${alignItems}\n ${alignSelf}\n ${flexDirection}\n ${flexWrap}\n ${flexGrow}\n\n ${textAlign}\n ${fontSize}\n ${lineHeight}\n ${fontWeight}\n\n ${border}\n ${borderBottom}\n ${borderLeft}\n ${borderRight}\n ${borderTop}\n ${borderRadius}\n ${borderColor}\n\n ${color}\n ${boxShadow}\n ${opacity}\n\n ${position}\n ${top}\n ${bottom}\n ${left}\n ${right}\n\n ${overflow}\n ${overflowX}\n ${overflowY}\n\n ${cursor}\n ${transform}\n transition: ${`${getTransitionValue('all')}`};\n ${transition};\n\n ${applyCSS};\n` as ComponentType>;\n\n// Setting the type to the following will mess up type of 'color' prop\n//StyledComponent<'div', ThemeType, IBaseBox>;","const getToken = state => state.loginReducer.token;\nconst getLoginObject = state => ({\n consumerUrl: state.loginReducer.consumerUrl,\n token: state.loginReducer.token,\n expiryTime: state.loginReducer.expiryTime,\n email: state.loginReducer.email,\n refreshToken: state.loginReducer.refreshToken,\n})\nconst getLoginSuccess = state => state.loginReducer.success;\n\nexport { getToken, getLoginObject, getLoginSuccess };\n","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgPrivacy = function SvgPrivacy(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 53.166,\n height: 64.18,\n viewBox: \"0 0 53.166 64.18\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_hands_430101\",\n transform: \"translate(-16.811 -5.693)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16716\",\n \"data-name\": \"Group 16716\",\n transform: \"translate(16.81 41.199)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16700\",\n \"data-name\": \"Group 16700\",\n transform: \"translate(4.693 1.104)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10059\",\n \"data-name\": \"Path 10059\",\n d: \"M36.948,71.758l-.145-.144c-.1-.1-9.734-9.718-14.137-12.046a.331.331,0,0,1,.31-.584c4.248,2.246,12.893,10.77,14.154,12.022a21.7,21.7,0,0,1,3.733-.708.33.33,0,0,1,.071.657,20.261,20.261,0,0,0-3.791.739Z\",\n transform: \"translate(-22.49 -58.946)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16701\",\n \"data-name\": \"Group 16701\",\n transform: \"translate(22.064 12.448)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10060\",\n \"data-name\": \"Path 10060\",\n d: \"M44.7,73.342a.33.33,0,0,1-.039-.658l.04.329-.03-.329.045-.007a.331.331,0,0,1,.067.658l-.041,0A.366.366,0,0,1,44.7,73.342Z\",\n transform: \"translate(-44.369 -72.676)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16702\",\n \"data-name\": \"Group 16702\",\n transform: \"translate(0 0.523)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10061\",\n \"data-name\": \"Path 10061\",\n d: \"M40.294,79.214c-3.588,0-6.566-.195-7.68-.762-1.791-.91-15.33-15.009-15.671-15.793a4.133,4.133,0,0,1,.678-3.466,2.9,2.9,0,0,1,3.092-.839,5.194,5.194,0,0,1,1.272.508.33.33,0,1,1-.308.584A4.651,4.651,0,0,0,20.573,59a2.294,2.294,0,0,0-2.441.613,3.638,3.638,0,0,0-.591,2.766c.6.865,13.55,14.559,15.372,15.485,3.368,1.714,26.245-.271,26.474-.291a.327.327,0,0,1,.359.3.331.331,0,0,1-.3.359C58.8,78.288,48.1,79.214,40.294,79.214Z\",\n transform: \"translate(-16.81 -58.243)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16703\",\n \"data-name\": \"Group 16703\",\n transform: \"translate(14.923 5.587)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10062\",\n \"data-name\": \"Path 10062\",\n d: \"M41.957,70.586a.331.331,0,0,1-.226-.09c-1.243-1.177-4.467-4.128-6.092-5.545a.33.33,0,1,1,.434-.5c1.631,1.422,4.866,4.383,6.112,5.562a.331.331,0,0,1-.227.571Z\",\n transform: \"translate(-35.525 -64.371)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16704\",\n \"data-name\": \"Group 16704\",\n transform: \"translate(9.538 1.199)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10063\",\n \"data-name\": \"Path 10063\",\n d: \"M34.68,64.108a.335.335,0,0,1-.217-.081,52.464,52.464,0,0,0-5.545-4.358.33.33,0,1,1,.359-.555A53.36,53.36,0,0,1,34.9,63.529a.33.33,0,0,1-.217.579Z\",\n transform: \"translate(-28.767 -59.061)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16705\",\n \"data-name\": \"Group 16705\",\n transform: \"translate(4.692)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10064\",\n \"data-name\": \"Path 10064\",\n d: \"M28.006,59.47a.333.333,0,0,1-.179-.053,7.414,7.414,0,0,0-2.118-1.049,2.228,2.228,0,0,0-2.61.852.33.33,0,0,1-.56-.35,2.824,2.824,0,0,1,3.311-1.148,7.807,7.807,0,0,1,2.334,1.139.33.33,0,0,1,.1.457A.325.325,0,0,1,28.006,59.47Z\",\n transform: \"translate(-22.489 -57.61)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16706\",\n \"data-name\": \"Group 16706\",\n transform: \"translate(21.362 8.18)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10065\",\n \"data-name\": \"Path 10065\",\n d: \"M43.489,68.013l.428-.5-.139.168.154-.154-.226.24Z\",\n transform: \"translate(-43.489 -67.51)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16707\",\n \"data-name\": \"Group 16707\",\n transform: \"translate(16.096 3.55)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10066\",\n \"data-name\": \"Path 10066\",\n d: \"M42.567,67.115a.334.334,0,0,1-.221-.086c-.948-.853-4.289-3.758-5.241-4.538a.331.331,0,0,1,.418-.512c.981.8,4.286,3.677,5.265,4.559a.33.33,0,0,1,.025.466A.324.324,0,0,1,42.567,67.115Z\",\n transform: \"translate(-36.983 -61.906)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16708\",\n \"data-name\": \"Group 16708\",\n transform: \"translate(9.528 0.522)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10067\",\n \"data-name\": \"Path 10067\",\n d: \"M35.885,61.931a.329.329,0,0,1-.209-.076C33.042,59.7,31.821,59.1,31.26,58.978a1.791,1.791,0,0,0-1.907.479.331.331,0,0,1-.514-.416,2.386,2.386,0,0,1,2.561-.708c.929.2,2.465,1.189,4.693,3.012a.33.33,0,0,1-.208.587Z\",\n transform: \"translate(-28.766 -58.242)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16709\",\n \"data-name\": \"Group 16709\",\n transform: \"translate(22.231 7.184)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10068\",\n \"data-name\": \"Path 10068\",\n d: \"M44.908,66.968a.323.323,0,0,1-.231-.1l0,0a.326.326,0,1,1,.234.1Z\",\n transform: \"translate(-44.578 -66.305)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16710\",\n \"data-name\": \"Group 16710\",\n transform: \"translate(16.084 3.347)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10069\",\n \"data-name\": \"Path 10069\",\n d: \"M43.589,66.158a.332.332,0,0,1-.238-.1c-.031-.032-3.1-3.2-4.537-3.645a1.825,1.825,0,0,0-1.361.083.33.33,0,1,1-.277-.6,2.5,2.5,0,0,1,1.833-.113c1.6.492,4.687,3.681,4.817,3.816a.33.33,0,0,1-.008.468A.338.338,0,0,1,43.589,66.158Z\",\n transform: \"translate(-36.984 -61.66)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16711\",\n \"data-name\": \"Group 16711\",\n transform: \"translate(21.855 12.454)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10070\",\n \"data-name\": \"Path 10070\",\n d: \"M52.707,74.068a51.778,51.778,0,0,1-7.462-.571,1.758,1.758,0,0,1-.691-.188.33.33,0,1,1,.29-.592,1.1,1.1,0,0,0,.443.12l.036,0a40.073,40.073,0,0,0,11.693.292.33.33,0,1,1,.115.65A27.8,27.8,0,0,1,52.707,74.068Z\",\n transform: \"translate(-44.369 -72.683)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16712\",\n \"data-name\": \"Group 16712\",\n transform: \"translate(20.67 8.096)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10071\",\n \"data-name\": \"Path 10071\",\n d: \"M44.4,72.427a.315.315,0,0,1-.145-.034,3.086,3.086,0,0,1-1.494-2,3.392,3.392,0,0,1,.514-2.832l.026-.031a.33.33,0,1,1,.5.429l-.251-.215.251.215a2.731,2.731,0,0,0-.4,2.269A2.453,2.453,0,0,0,44.545,71.8a.33.33,0,0,1-.145.627Z\",\n transform: \"translate(-42.649 -67.409)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16713\",\n \"data-name\": \"Group 16713\",\n transform: \"translate(21.229 7.187)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10072\",\n \"data-name\": \"Path 10072\",\n d: \"M43.672,67.88a.318.318,0,0,1-.2-.066.33.33,0,0,1-.07-.462,4.082,4.082,0,0,1,1.1-.992.331.331,0,0,1,.357.557,3.416,3.416,0,0,0-.922.83A.333.333,0,0,1,43.672,67.88Z\",\n transform: \"translate(-43.342 -66.308)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16714\",\n \"data-name\": \"Group 16714\",\n transform: \"translate(22.225 7.198)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10073\",\n \"data-name\": \"Path 10073\",\n d: \"M44.9,66.969a.333.333,0,0,1-.321-.24.329.329,0,0,1,.226-.406l.1.315.074.323-.074-.323.08.321A.309.309,0,0,1,44.9,66.969Z\",\n transform: \"translate(-44.566 -66.322)\",\n fill: \"#07a3c8\"\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_16715\",\n \"data-name\": \"Group 16715\",\n transform: \"translate(21.263 5.358)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10074\",\n \"data-name\": \"Path 10074\",\n d: \"M59.556,87.411l.073-.392a14.608,14.608,0,0,0-.406-7.609.33.33,0,0,1,.608-.256,14.747,14.747,0,0,1,.515,7.594l15.417-.036c-1.1-13.424-2.753-16.932-2.769-16.966l-.022-.058c-.056-.2-1.49-4.932-8.164-4.932-12.953,0-19.539,1.738-19.813,1.812a.33.33,0,1,1-.172-.637c.278-.076,6.945-1.837,19.985-1.837,6.9,0,8.648,4.935,8.792,5.382.169.363,1.778,4.091,2.853,17.54l.027.357Z\",\n transform: \"translate(-44.577 -64.095)\",\n fill: \"#07a3c8\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10075\",\n \"data-name\": \"Path 10075\",\n d: \"M59.874,33.705c-1.183-.364-3.469-2.578-4.26-3.368a4.02,4.02,0,0,0,.542-.486c1.034.919,3.339,2.921,4.534,3.929A1.888,1.888,0,0,1,59.874,33.705Z\",\n transform: \"translate(-7.825 -5.408)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10076\",\n \"data-name\": \"Path 10076\",\n d: \"M56.75,28.776a3.36,3.36,0,0,0,.455-2.032c1.507,1.4,3.989,3.666,5.354,4.855a57.154,57.154,0,0,0,5.275,4.184A1.954,1.954,0,0,1,66.2,36c-.559-.121-1.769-.714-4.38-2.841a.093.093,0,0,0-.036-.03c0-.007-.007-.01-.01-.007a.067.067,0,0,0-.027-.023C60.822,32.336,57.9,29.8,56.75,28.776Z\",\n transform: \"translate(-8.207 -4.804)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10077\",\n \"data-name\": \"Path 10077\",\n d: \"M72.966,35.379a2.316,2.316,0,0,1-2.4.572A7.367,7.367,0,0,1,68.445,34.9,52.768,52.768,0,0,1,62.9,30.545c-1.63-1.418-4.852-4.369-6.095-5.546a.337.337,0,0,0-.036-.03,3.269,3.269,0,0,0-.56-.82,20.39,20.39,0,0,0,2.932-.6C60.371,24.764,68.614,32.89,72.966,35.379Z\",\n transform: \"translate(-8.526 -4.127)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10078\",\n \"data-name\": \"Path 10078\",\n d: \"M69.365,28.844a3.7,3.7,0,0,1-.572,2.753,2.176,2.176,0,0,1-2.366.612,4.423,4.423,0,0,1-1.041-.431s0,0-.006,0a.071.071,0,0,0-.022-.01h0c-4.264-2.325-13.6-11.907-13.688-12l-.141-.145-.189.066a19,19,0,0,1-3.588.724,1.625,1.625,0,0,0-.577-.142,38.387,38.387,0,0,0-11.514-.286.33.33,0,0,0-.259.382.319.319,0,0,0,.371.267,37.8,37.8,0,0,1,11.325.293l.036,0a.9.9,0,0,1,.3.063.313.313,0,0,0,.2.092,2.484,2.484,0,0,1,1.044,1.531,2.8,2.8,0,0,1-.382,2.252s0,.007-.006.01-.01.013-.016.02l-.02.03a3.453,3.453,0,0,1-.831.768.011.011,0,0,0-.006,0c-.644.175-7.02,1.795-19.149,1.795-6.463,0-7.853-4.715-7.907-4.916l-.022-.056c-.016-.033-1.619-3.53-2.683-16.9l14.933-.036a16.031,16.031,0,0,0,.351,7.136c-2.311.171-3.918.316-4.154.336a.328.328,0,0,0-.291.359.319.319,0,0,0,.346.3c.064-.007,1.883-.168,4.533-.359a.086.086,0,0,0,.029,0,.191.191,0,0,0,.045,0c6.732-.481,18.71-1.143,21.041.076C56.237,14.335,68.779,27.981,69.365,28.844Z\",\n transform: \"translate(-0.145 0.117)\",\n fill: \"#07a3c8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_10079\",\n \"data-name\": \"Path 10079\",\n d: \"M48.837,42.1l-.7.7-.7-.7a4.737,4.737,0,0,0-6.7,6.7l.7.7,6.7,6.7,6.7-6.7.7-.7a4.737,4.737,0,1,0-6.7-6.7Z\",\n transform: \"translate(-4.756 -11.502)\",\n fill: \"#07a3c8\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPrivacy, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/privacy.7ea559d5.svg\";\nexport { ForwardRef as ReactComponent };","// extracted by mini-css-extract-plugin\nmodule.exports = {\"headerContainer\":\"header_headerContainer__1koGW\",\"headerContainerNoAfter\":\"header_headerContainerNoAfter__21qB9\",\"headerContainerWhite\":\"header_headerContainerWhite__2C2Ad\",\"header\":\"header_header__9Qa65\",\"secondLine\":\"header_secondLine__szPG0\",\"pic\":\"header_pic__3OKZC\",\"dp\":\"header_dp__1lsXn\",\"titleContainer\":\"header_titleContainer__28rmL\",\"backArrow\":\"header_backArrow__3CVY0\",\"placeholder\":\"header_placeholder__33tJv\",\"button\":\"header_button__2ieEc\",\"container\":\"header_container__KdaUN\",\"subheading\":\"header_subheading__1Z3Fa\"};","const actionTypes = {\n getPracticeProfile: 'GET_PRACTICE_PROFILE',\n getPracticeProfileSuccess: 'GET_PRACTICE_PROFILE_SUCCESS',\n getPracticeProfileFailure: 'GET_PRACTICE_PROFILE_FAILURE',\n setActivePatient: 'SET_ACTIVE_PATIENT',\n setGuardian: 'SET_GUARDIAN',\n};\n\nconst actions = {\n getPracticeProfile: id => ({\n type: actionTypes.getPracticeProfile,\n payload: {\n id,\n },\n }),\n getPracticeProfileSuccess: profile => ({\n type: actionTypes.getPracticeProfileSuccess,\n payload: {\n profile,\n },\n }),\n getPracticeProfileFailure: error => ({\n type: actionTypes.getPracticeProfileFailure,\n payload: { error },\n error: true,\n }),\n setActivePatient: patient => ({\n type: actionTypes.setActivePatient,\n payload: { patient },\n }),\n setGuardian: guardian => ({\n type: actionTypes.setGuardian,\n payload: { guardian },\n }),\n};\n\nexport { actions, actionTypes };\n","import React from 'react';\nimport styles from './index.module.scss';\nimport { ReactComponent as Arrow } from 'svgs/rightarrow2.svg';\nimport cn from 'classnames';\n\ninterface TitleStyle {\n center: string;\n right: string;\n}\n\nconst TitlePosition: TitleStyle = {\n center: styles.center,\n right: styles.right\n}\n\nexport interface HeaderProps {\n handleClick?: () => void;\n text: string;\n align?: 'center' | 'right';\n icon?: React.FunctionComponent>;\n}\n\nconst Header: React.FC = ({\n handleClick, \n text, \n align = 'right',\n icon: Icon = Arrow\n}) => {\n return (\n \n {handleClick && }\n {text}\n
\n );\n};\n\nexport default Header;\n","import React, { Children, CSSProperties, PropsWithChildren } from 'react';\n\nimport Header, { HeaderProps } from './Header';\nimport styles from './index.module.scss';\n\ntype HeaderCardUIProps = HeaderProps & \n{\n style?: React.CSSProperties\n cardStyle?: CSSProperties,\n outsideChildren?: React.ReactNode\n};\n\nconst HeaderCardUI: React.FC> = (\n {\n text, \n align, \n handleClick,\n icon,\n style,\n cardStyle,\n children,\n outsideChildren\n }) => {\n return (\n \n
\n \n {children}\n
\n \n \n {outsideChildren}\n
\n \n \n )\n};\n\nexport default HeaderCardUI;","const actionTypes = {\n checkPassword: 'DEACTIVATION_CHECK_PASSWORD',\n checkPasswordSuccess: 'DEACTIVATION_CHECK_PASSWORD_SUCCESS',\n checkPasswordFailure: 'DEACTIVATION_CHECK_PASSWORD_FAILURE',\n clearCheckPassword: 'DEACTIVATION_CHECK_PASSWORD_CLEAR',\n deactivateAccount: 'DEACTIVATE_ACCOUNT',\n deactivateAccountSuccess: 'DEACTIVATE_ACCOUNT_SUCCESS',\n deactivateAccountFailure: 'DEACTIVATE_ACCOUNT_FAILURE',\n clearDeactivateAccount: 'DEACTIVATE_ACCOUNT_CLEAR',\n};\n\nconst actions = {\n checkPassword: (password, token) => ({\n type: actionTypes.checkPassword,\n payload: {\n password,\n token,\n },\n }),\n checkPasswordSuccess: accessToken => ({\n type: actionTypes.checkPasswordSuccess,\n payload: {\n accessToken,\n },\n }),\n checkPasswordFailure: error => ({\n type: actionTypes.checkPasswordFailure,\n payload: {\n error,\n },\n }),\n clearCheckPassword: () => ({\n type: actionTypes.clearCheckPassword,\n }),\n deactivateAccount: (token, accessToken, reason) => ({\n type: actionTypes.deactivateAccount,\n payload: {\n token,\n accessToken,\n reason,\n },\n }),\n deactivateAccountSuccess: () => ({\n type: actionTypes.deactivateAccountSuccess,\n }),\n deactivateAccountFailure: error => ({\n type: actionTypes.deactivateAccountFailure,\n payload: {\n error,\n },\n }),\n clearDeactivateAccount: () => ({\n type: actionTypes.clearDeactivateAccount,\n }),\n};\n\nexport { actions, actionTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"form\":\"signInForm_form__jc5N2\",\"innerContainer\":\"signInForm_innerContainer__va9C-\",\"inputContainer\":\"signInForm_inputContainer__30Qw_\",\"envelope\":\"signInForm_envelope__1cEzR\",\"lock\":\"signInForm_lock__2LY5K\",\"input\":\"signInForm_input__1ogkp input_input__2YbVH\",\"label\":\"signInForm_label__B6_RS\",\"forgotPassword\":\"signInForm_forgotPassword__1KGHk\",\"footer\":\"signInForm_footer__3e3ln\",\"buttonLogIn\":\"signInForm_buttonLogIn__1zFDR button_button__2n_ir\",\"guestLink\":\"signInForm_guestLink__2zQUl\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"alerts_container__2JclB\",\"boxContainer\":\"alerts_boxContainer__6nKMz\",\"message\":\"alerts_message__31Pbq\",\"icon\":\"alerts_icon__2wtYg\",\"error\":\"alerts_error__1WWdi\",\"info\":\"alerts_info__24yo_\",\"success\":\"alerts_success__2__ZE\",\"enter\":\"alerts_enter__3oA3G\",\"enterActive\":\"alerts_enterActive__3DOpf\",\"leave\":\"alerts_leave__1EFdE\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"bookAppointment_container__1KQjT\",\"heading\":\"bookAppointment_heading__34un4\",\"arrow\":\"bookAppointment_arrow__2h48a\",\"cross\":\"bookAppointment_cross__2hgz3 bookAppointment_arrow__2h48a\",\"listContainer\":\"bookAppointment_listContainer__oPo8V\",\"appear\":\"bookAppointment_appear__L9V27\",\"practiceButtonContainer\":\"bookAppointment_practiceButtonContainer__3etqH\",\"otherButton\":\"bookAppointment_otherButton__3q1-9 button_button__2n_ir\",\"autoCompleteContainer\":\"bookAppointment_autoCompleteContainer__2yrFY\",\"loadingContainer\":\"bookAppointment_loadingContainer__3HW_s\",\"spinner\":\"bookAppointment_spinner__Ml6pu\",\"enter\":\"bookAppointment_enter__3g0Zz\",\"enterActive\":\"bookAppointment_enterActive__1QkDn\",\"leave\":\"bookAppointment_leave__3I3Lo\",\"leaveActive\":\"bookAppointment_leaveActive__1OFu_\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"doctorAppointment_container__38bQ9\",\"inner\":\"doctorAppointment_inner__3ou2e\",\"svg\":\"doctorAppointment_svg__1hQQD\",\"item\":\"doctorAppointment_item__1G2kR button_button__2n_ir\",\"arrowContainer\":\"doctorAppointment_arrowContainer__39txd\",\"arrowContainerRight\":\"doctorAppointment_arrowContainerRight__5SEHO doctorAppointment_arrowContainer__39txd\",\"arrowContainerLeft\":\"doctorAppointment_arrowContainerLeft__1xvCm doctorAppointment_arrowContainer__39txd\",\"left\":\"doctorAppointment_left__3hFN2 doctorAppointment_svg__1hQQD\",\"right\":\"doctorAppointment_right__F6RCx doctorAppointment_svg__1hQQD\",\"selected\":\"doctorAppointment_selected__3BcVs\",\"noAppointments\":\"doctorAppointment_noAppointments__1_5UQ\",\"link\":\"doctorAppointment_link__WZnb9\",\"notAvailable\":\"doctorAppointment_notAvailable__2xovQ\"};","import { bindActionCreators } from 'redux';\nimport { find } from 'lodash/fp';\n// eslint-disable-next-line max-len\nimport { actions as sessionActions } from '../vAppointment/MobileVerification/actions/sessionActions';\nimport { actions as confirmCodeActions } from '../vAppointment/MobileVerification/actions/codeConfirmationActions';\nimport { actions as feelingActions } from '../vAppointment/Reason/actions/actions';\nimport { actions as bookingActions } from '../PracticeProfilePage/BookingPageMobile/actions/actions';\nimport { actions as bookingPageActions } from '../PracticeProfilePage/BookingPageMobile/actions/pageActions';\n// eslint-disable-next-line max-len\nimport { actions as patientDetailsActions } from '../vAppointment/PatientDetails/actions/actions';\nimport { actions as guardianActions } from '../vAppointment/PatientDetails/actions/guardianActions';\nimport { actions as checkoutActions } from '../vAppointment/Processing/actions/actions';\n\nconst clearAppointmentData = dispatch => () => {\n bindActionCreators(sessionActions.clearSession, dispatch)();\n bindActionCreators(feelingActions.clearFeelings, dispatch)();\n bindActionCreators(confirmCodeActions.clearConfirmCode, dispatch)();\n bindActionCreators(bookingActions.clearSelection, dispatch)();\n bindActionCreators(bookingPageActions.clearState, dispatch)();\n bindActionCreators(patientDetailsActions.clearDetails, dispatch)();\n bindActionCreators(guardianActions.clearState, dispatch)();\n bindActionCreators(checkoutActions.clearConfirmationState, dispatch)();\n};\n\nconst findDoctor = (id, doctors) =>\n find(({ PmsUserId }) => PmsUserId === id, doctors);\n\nconst getUrl = state => state.practiceProfileReducer.profile.UrlName;\n\nexport { clearAppointmentData, findDoctor, getUrl };\n","// [Key]\t [Type]\t [Description]\n// breakpoints\t Array\t Array of viewport widths to use for min-width media queries\n// fontSizes\t Array\t Array of numbers to use as a typographic scale\n// colors\t Object\t Color names that can be used in color, bg, and borderColor props\n// space\t Array\t Array of numbers for use as margin and pixel values\n// fonts\t Array or Object\t Values for the fontFamily prop\n// fontWeights\t Array or Object\t Values for fontWeight prop\n// lineHeights\t Array or Object\t Values for lineHeight prop\n// letterSpacings\tArray or Object\t Values for letterSpacing prop\n// shadows\t Array or Object\t Values for boxShadow prop\n// borders\t Array or Object\t Values for border props\n// radii\t Array or Object\t Values for borderRadius props\n// opacity\t Array or Object\t Values for opacity props\n\nimport { colors } from './constants/colors';\nimport { fontSizes, fontSpecs, IFontSpecType } from './constants/fontSpecs';\nimport { spaces as space } from './constants/spaces';\n\nexport interface ITheme {\n breakpoints: number[];\n\n fontSpecs: IFontSpecType[];\n fontSizes: IFontSpecType['size'][];\n\n space: number[];\n colors: {\n [colorName: string]: string;\n primary: string;\n };\n\n fontWeights: {\n [fontWeightName: string]: number;\n };\n\n borders: (number | string)[];\n\n radii: string[];\n\n shadows: string[];\n\n gradients: object;\n}\n\nexport const defaultTheme: ITheme = {\n breakpoints: [768, 1024],\n\n fontSpecs,\n fontSizes,\n\n space,\n colors,\n\n fontWeights: {\n thin: 200,\n light: 300,\n medium: 400,\n bold: 500,\n },\n\n borders: [0, '1px solid'],\n\n radii: ['4px'],\n\n shadows: [\n '0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2)',\n '0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3)',\n '0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2)',\n '0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -7px rgba(0,0,0,0.2)',\n '0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2)',\n\n '0px 1px 2px rgba(0,0,0,0.20)',\n '0px 2px 4px rgba(0,0,0,0.20)',\n '0px 4px 8px rgba(0,0,0,0.20)',\n '0px 8px 16px rgba(0,0,0,0.20)',\n '0px 12px 24px rgba(0,0,0,0.20)',\n ],\n\n gradients: {\n backgroundGradient: 'lineargradient(to bottom right, #3cb9c0, #07a3c8)',\n buttonGradient: 'linear-gradient(to right, #FFB58D, #F58F8F)',\n adGradient: 'linear-gradient(to bottom, #FFC138, #FF9729)',\n },\n};\n","const actionTypes = {\n fetchMultiDayAppointments: 'FETCH_MULTI_DAY_APPOINTMENTS',\n fetchMultiDayAppointmentsForPatient: 'FETCH_MULTI_DAY_APPOINTMENTS_FOR_PATIENT',\n fetchMultiDayAppointmentsSuccess: 'FETCH_MULTI_DAY_APPOINTMENTS_SUCCESS',\n fetchMultiDayAppointmentsFailure: 'FETCH_MULTI_DAY_APPOINTMENTS_FAILURE',\n clearFetchMultiDayAppointmentsStatus: 'CLEAR_FETCH_MULTI_DAY_APPOINTMENTS_STATUS',\n};\n\nconst actions = {\n fetchMultiDayAppointments: (practiceId, startDay, days, doctorName) => ({\n type: actionTypes.fetchMultiDayAppointments,\n payload: {\n practiceId,\n startDay,\n days,\n doctorName,\n },\n }),\n fetchMultiDayAppointmentsForPatient: (practiceId, details, startDay, days, token, doctorName) => ({\n type: actionTypes.fetchMultiDayAppointmentsForPatient,\n payload: {\n practiceId,\n details,\n startDay,\n days,\n token,\n doctorName,\n },\n }),\n fetchMultiDayAppointmentsSuccess: (doctors, doctorName) => ({\n type: actionTypes.fetchMultiDayAppointmentsSuccess,\n payload: {\n doctors,\n doctorName,\n },\n }),\n fetchMultiDayAppointmentsFailure: error => ({\n type: actionTypes.fetchMultiDayAppointmentsFailure,\n error: true,\n payload: {\n error,\n },\n }),\n clearFetchMultiDayAppointmentsStatus: () => ({\n type: actionTypes.clearFetchMultiDayAppointmentsStatus,\n }),\n};\n\nexport { actions, actionTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"app\":\"healthFeedDesktop_app__2OSMG\",\"outerContainer\":\"healthFeedDesktop_outerContainer__34AQZ\",\"appear\":\"healthFeedDesktop_appear__3W0RS\",\"container\":\"healthFeedDesktop_container__20MO6\",\"heading\":\"healthFeedDesktop_heading__wkGY1\",\"kiaora\":\"healthFeedDesktop_kiaora__xrKHt\",\"feedContainer\":\"healthFeedDesktop_feedContainer__lavdz\",\"calIcon\":\"healthFeedDesktop_calIcon__W8c8v\",\"scriptsIcon\":\"healthFeedDesktop_scriptsIcon__1NODf healthFeedDesktop_calIcon__W8c8v\",\"envelope\":\"healthFeedDesktop_envelope__3m6Xs healthFeedDesktop_calIcon__W8c8v\",\"spinner\":\"healthFeedDesktop_spinner__1tnAb\",\"enter\":\"healthFeedDesktop_enter__3WS-T\",\"enterActive\":\"healthFeedDesktop_enterActive__1RgA3\",\"leave\":\"healthFeedDesktop_leave__1kMNy\",\"leaveActive\":\"healthFeedDesktop_leaveActive__1mlA7\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"label\":\"basicInputField_label__3Eb_p\",\"item\":\"basicInputField_item__eu3S0\",\"input\":\"basicInputField_input__--Gln input_input__2YbVH\",\"focused\":\"basicInputField_focused__1nL4d\",\"email\":\"basicInputField_email__1vbWA\",\"error\":\"basicInputField_error__30Nzz\",\"unverified\":\"basicInputField_unverified__KqNU8\",\"container\":\"basicInputField_container__33khz\",\"verified\":\"basicInputField_verified__3yIMV\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"listing\":\"practiceListing_listing__2KDsx\",\"innerContainer\":\"practiceListing_innerContainer__1OPlZ\",\"status\":\"practiceListing_status__2qM5w\",\"notOnline\":\"practiceListing_notOnline__qHQon\",\"online\":\"practiceListing_online__tRwZH\",\"menuContainer\":\"practiceListing_menuContainer__sJ4cJ\",\"ellipsis\":\"practiceListing_ellipsis__1s4Kl\",\"profile\":\"practiceListing_profile__Btotf\",\"name\":\"practiceListing_name__33Zm7\",\"address\":\"practiceListing_address__3QILT\",\"img\":\"practiceListing_img__34VSa\",\"button\":\"practiceListing_button__3jDyg button_button__2n_ir\",\"notClickable\":\"practiceListing_notClickable__3lbJ_\",\"notAvailable\":\"practiceListing_notAvailable__36CJs practiceListing_img__34VSa\",\"notAvailableIcon\":\"practiceListing_notAvailableIcon__1XFMi\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"spinner\":\"PaymentCardSelection_spinner__18Jdp\",\"container\":\"PaymentCardSelection_container__F6VLY\",\"selected\":\"PaymentCardSelection_selected__2xqyG\",\"expiredBorder\":\"PaymentCardSelection_expiredBorder__tMubC\",\"expiredText\":\"PaymentCardSelection_expiredText__3y87P\",\"iconContainer\":\"PaymentCardSelection_iconContainer__1SMnJ\",\"card\":\"PaymentCardSelection_card__2esz7\",\"selectedIcon\":\"PaymentCardSelection_selectedIcon__11e_N\",\"details\":\"PaymentCardSelection_details__3BHnP\",\"title\":\"PaymentCardSelection_title__3D4gL\",\"expiryDate\":\"PaymentCardSelection_expiryDate__3-qsm\",\"expiredExpiryDate\":\"PaymentCardSelection_expiredExpiryDate__2CVug\",\"cardNumber\":\"PaymentCardSelection_cardNumber__3bQKS\",\"radio\":\"PaymentCardSelection_radio__2W1KU\"};","import PropTypes from 'prop-types';\n\nconst dependantPropType = PropTypes.shape({\n Id: PropTypes.string,\n CaregiverId: PropTypes.string,\n FirstName: PropTypes.string.isRequired,\n LastName: PropTypes.string.isRequired,\n Mobile: PropTypes.string,\n DateOfBirth: PropTypes.string.isRequired,\n Email: PropTypes.string,\n Relationship: PropTypes.number,\n AvatarUrl: PropTypes.string,\n});\n\nconst doctorPropType = PropTypes.shape({\n Id: PropTypes.string.isRequired,\n Name: PropTypes.string,\n Title: PropTypes.string,\n});\n\nexport { dependantPropType, doctorPropType };\n","import PropTypes from 'prop-types';\nimport { userPropType } from '../../components/UIContainer/MobileUI/Menu/propTypes';\nimport { practicePropType } from '../../PracticesPage/propTypes';\nimport { doctorPropType } from '../RequestScriptMobile/propTypes';\n\nconst optionPropType = PropTypes.shape({\n Option: PropTypes.number,\n Price: PropTypes.number,\n Note: PropTypes.string,\n PMSServiceCode: PropTypes.string,\n PaymentMethods: PropTypes.number,\n});\n\nconst pricingPropType = PropTypes.shape({\n Name: PropTypes.string.isRequired,\n Address: PropTypes.string,\n PharmacyId: PropTypes.string.isRequired,\n Phone: PropTypes.string,\n Fax: PropTypes.string,\n Options: PropTypes.arrayOf(optionPropType),\n IsDefault: PropTypes.bool,\n});\n\nconst medicationPropType = PropTypes.shape({\n Id: PropTypes.string,\n Name: PropTypes.string.isRequired,\n TradeName: PropTypes.string,\n MedicinalName: PropTypes.string,\n RecentlyRequested: PropTypes.bool,\n});\n\nconst scriptDetailsPropType = PropTypes.shape({\n patient: userPropType,\n practice: practicePropType,\n doctor: doctorPropType,\n reason: PropTypes.string,\n medications: PropTypes.arrayOf(medicationPropType),\n pricing: pricingPropType,\n repeatPastRequest: PropTypes.bool.isRequired,\n});\n\nconst cardDetailsPropType = PropTypes.shape({\n Token: PropTypes.string.isRequired,\n Brand: PropTypes.string.isRequired,\n ExpMonth: PropTypes.number.isRequired,\n ExpYear: PropTypes.number.isRequired,\n Last4: PropTypes.string.isRequired,\n});\n\nexport {\n pricingPropType,\n scriptDetailsPropType,\n cardDetailsPropType,\n medicationPropType,\n optionPropType,\n};\n","import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport clickOutside from 'react-click-outside';\n\nimport styles from './inner.module.css';\n\nclass Inner extends Component {\n handleClickOutside = () => {\n //this.props.toggle();\n };\n render() {\n return (\n \n {this.props.children}\n
\n );\n }\n}\nInner.propTypes = {\n children: PropTypes.oneOfType([\n PropTypes.element,\n PropTypes.node,\n PropTypes.arrayOf(PropTypes.element),\n ]).isRequired,\n toggle: PropTypes.func,\n};\n\nexport default clickOutside(Inner);\nexport { Inner };\n","import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\n\nimport { ReactComponent as Cross } from '../../../../svgs/close.svg';\nimport styles from './error.module.css';\n\nclass Error extends Component {\n static propTypes = {\n toggleError: PropTypes.func.isRequired,\n children: PropTypes.string.isRequired,\n };\n componentDidMount() {\n setTimeout(this.handleClose, 5000);\n }\n handleClose = () => {\n this.props.toggleError('');\n };\n render() {\n return (\n \n
{this.props.children}
\n
\n
\n );\n }\n}\n\nexport default Error;\n","import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport { connect } from \"react-redux\";\nimport { CSSTransitionGroup } from \"react-transition-group\";\nimport { bindActionCreators } from \"redux\";\n\nimport { actions } from \"./actions/actions\";\nimport Inner from \"./components/Inner\";\nimport Error from \"./components/Error\";\nimport styles from \"./desktopPopUp.module.css\";\n\nconst DesktopPopUp = ({ children, toggle, shouldError, errorText, toggleError, large = false }) => (\n \n \n {children}\n \n {shouldError && {errorText} }\n \n \n
\n);\n\nDesktopPopUp.propTypes = {\n\n};\n\nconst mapStateToProps = state => ({\n shouldError: state.desktopPopUpReducer.shouldError,\n errorText: state.desktopPopUpReducer.errorText,\n hideBack: true\n});\n\nconst mapDispatchToProps = dispatch => ({\n toggleError: bindActionCreators(actions.setError, dispatch),\n});\n\nexport default connect(\n mapStateToProps,\n mapDispatchToProps,\n)(DesktopPopUp);\n","const actionTypes = {\n setError: 'DESKTOP_POP_UP_SET_ERROR',\n};\n\nconst actions = {\n setError: errorText => ({\n type: actionTypes.setError,\n payload: {\n errorText,\n },\n }),\n};\n\nexport { actionTypes, actions };\n","import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n\nimport styles from './ctaMenuButton.module.css';\n\nclass CtaMenuButton extends Component {\n static propTypes = {\n onClick: PropTypes.func.isRequired,\n iconStyles: PropTypes.string,\n textIconStyles: PropTypes.string,\n buttonStyles: PropTypes.string,\n text: PropTypes.string,\n isOpen: PropTypes.bool,\n isUnActive: PropTypes.bool,\n hideComingSoon: PropTypes.bool,\n notToggleOnClick: PropTypes.bool\n };\n constructor(props) {\n super(props);\n this.toggleOpen = this.toggleOpen.bind(this);\n this.handleClick = this.handleClick.bind(this);\n }\n state = {\n isOpen: this.props.isOpen,\n };\n toggleOpen() {\n this.setState({ isOpen: !this.state.isOpen });\n }\n handleClick(e) {\n if (!this.props.notToggleOnClick) {\n this.toggleOpen();\n }\n this.props.onClick(e);\n }\n render() {\n return (\n \n
{}}\n style={{ backgroundColor: !this.props.isUnActive ? \"#07a3c8\" : \"#DADADA\", flexDirection: this.props.isUnActive ? \"column\" : \"row\"}}\n >\n {this.props.icon && }\n {!this.state.isOpen && this.props.text ? (\n {this.props.text}
\n ) : null}\n {this.props.isUnActive && !this.props.hideComingSoon && Coming Soon
}\n {this.props.iconRight && }\n \n
\n );\n }\n}\n\nexport default CtaMenuButton;\n","import { animated } from '@react-spring/web';\nimport { AnimateSharedLayout } from 'framer-motion';\nimport withModal from 'hocs/withModal';\nimport React, { memo, useMemo } from 'react';\nimport ReactDOM from 'react-dom';\nimport { ReactComponent as Spinner } from 'svgs/spinner.svg';\n\nconst styles = {\n container: {\n position: 'fixed' as 'fixed',\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n backgroundColor: '#000',\n },\n spinner: {\n height: '4.2rem',\n width: '4.2rem',\n fill: 'white'\n }\n}\n\ninterface LoadingSpinnerProps {\n animateStyle?: {}\n}\n\nconst LoadingSpinner = ({animateStyle}: LoadingSpinnerProps) => {\n return ReactDOM.createPortal(\n \n \n \n , document.getElementById('portal') as Element);}\n\nexport default LoadingSpinner;","var _g, _g2, _g3, _g4, _g5, _g6, _g7, _g8, _g9, _g10, _g11, _g12, _g13, _g14, _g15, _g16;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgRightarrow = function SvgRightarrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"Capa_1\",\n x: \"0px\",\n y: \"0px\",\n viewBox: \"0 0 477.175 477.175\",\n style: {\n enableBackground: \"new 0 0 477.175 477.175\"\n },\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5 c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z \"\n }))), _g2 || (_g2 = /*#__PURE__*/React.createElement(\"g\", null)), _g3 || (_g3 = /*#__PURE__*/React.createElement(\"g\", null)), _g4 || (_g4 = /*#__PURE__*/React.createElement(\"g\", null)), _g5 || (_g5 = /*#__PURE__*/React.createElement(\"g\", null)), _g6 || (_g6 = /*#__PURE__*/React.createElement(\"g\", null)), _g7 || (_g7 = /*#__PURE__*/React.createElement(\"g\", null)), _g8 || (_g8 = /*#__PURE__*/React.createElement(\"g\", null)), _g9 || (_g9 = /*#__PURE__*/React.createElement(\"g\", null)), _g10 || (_g10 = /*#__PURE__*/React.createElement(\"g\", null)), _g11 || (_g11 = /*#__PURE__*/React.createElement(\"g\", null)), _g12 || (_g12 = /*#__PURE__*/React.createElement(\"g\", null)), _g13 || (_g13 = /*#__PURE__*/React.createElement(\"g\", null)), _g14 || (_g14 = /*#__PURE__*/React.createElement(\"g\", null)), _g15 || (_g15 = /*#__PURE__*/React.createElement(\"g\", null)), _g16 || (_g16 = /*#__PURE__*/React.createElement(\"g\", null)));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgRightarrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/rightarrow.ff2b9671.svg\";\nexport { ForwardRef as ReactComponent };","const actionTypes = {\n getVerificationStatus: 'GET_VERIFICATION',\n getVerificationStatusSuccess: 'GET_VERIFICATION_SUCCESS',\n getVerificationStatusFailure: 'GET_VERIFICATION_FAILURE',\n };\n \n const actions = { \n getVerificationStatus: id => ({\n type: actionTypes.getVerificationStatus,\n payload: {\n id,\n },\n }),\n getVerificationStatusSuccess: data => ({\n type: actionTypes.getVerificationStatusSuccess,\n payload: {\n data,\n },\n }),\n getVerificationStatusFailure: error => ({\n type: actionTypes.getVerificationStatusFailure,\n payload: {\n error,\n },\n }),\n onfido: data => ({\n type: actionTypes.onfido,\n payload: {\n data,\n }\n })\n };\n \n export { actions, actionTypes };\n ","const actionTypes = {\n checkUsername: 'CHECK_USERNAME',\n checkUsernameSuccess: 'CHECK_USERNAME_SUCCESS',\n checkUsernameFailure: 'CHECK_USERNAME_FAILURE',\n clearCheckUserState: 'CHECK_USERNAME_CLEAR_STATE',\n setUsedEmail: 'CHECK_USERNAME_SET_USED_EMAIL',\n};\n\nconst checkUsername = email => ({\n type: actionTypes.checkUsername,\n payload: {\n email,\n },\n});\n\nconst checkUsernameSuccess = () => ({\n type: actionTypes.checkUsernameSuccess,\n});\n\nconst checkUsernameFailure = error => ({\n type: actionTypes.checkUsernameFailure,\n error: true,\n payload: {\n error,\n },\n});\nconst setUsedEmail = email => ({\n type: actionTypes.setUsedEmail,\n payload: {\n email,\n },\n});\nconst clearCheckUserState = () => ({\n type: actionTypes.clearCheckUserState,\n});\n\nconst actions = {\n checkUsername,\n checkUsernameSuccess,\n checkUsernameFailure,\n clearCheckUserState,\n setUsedEmail,\n};\n\nexport { actionTypes, actions };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"heading\":\"forgotPassword_heading__IBmxO\",\"container\":\"forgotPassword_container__3ba4y\",\"innerContainer\":\"forgotPassword_innerContainer__3mpht\",\"form\":\"forgotPassword_form__2Mhos\",\"topText\":\"forgotPassword_topText__2_CNP\",\"secondText\":\"forgotPassword_secondText__3qK_y\",\"input\":\"forgotPassword_input__s2fDi\",\"button\":\"forgotPassword_button__2bkyB\",\"faded\":\"forgotPassword_faded__1iKHs\",\"spinner\":\"forgotPassword_spinner__3cXLR\",\"dart\":\"forgotPassword_dart__C-8tl\",\"spinnerContainer\":\"forgotPassword_spinnerContainer__3ArDz\",\"cta\":\"forgotPassword_cta__HvioK\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"iconContainer\":\"PopupData_iconContainer__2Y7e7\",\"content\":\"PopupData_content__3d35W\",\"highlight\":\"PopupData_highlight__2XB2w\",\"note\":\"PopupData_note__1yAEx\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"list_container__ej-3I\",\"backArrow\":\"list_backArrow__NjeyV\",\"heading\":\"list_heading__1qYbV\",\"optionsContainer\":\"list_optionsContainer__3Kv0a\",\"button\":\"list_button__5SQDG\",\"spinnerContainer\":\"list_spinnerContainer__1cvMu\",\"spinner\":\"list_spinner__2RrbE\",\"centeredList\":\"list_centeredList__2lNVl\",\"smallerHeading\":\"list_smallerHeading__3EsNT\",\"appear\":\"list_appear__2F09t\",\"styledButton\":\"list_styledButton__BYY7L button_button__2n_ir\",\"lastButton\":\"list_lastButton__J_Vb5\",\"styledLastButton\":\"list_styledLastButton__3Li_P button_button__2n_ir\"};","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgRoundArrow = function SvgRoundArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 32.578,\n height: 31.771,\n viewBox: \"0 0 32.578 31.771\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Symbol_1014\",\n \"data-name\": \"Symbol 1014\",\n transform: \"translate(-258 -352)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Symbol_798\",\n \"data-name\": \"Symbol 798\",\n transform: \"translate(258 352)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_1492\",\n \"data-name\": \"Group 1492\",\n transform: \"translate(0)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"group-66\"\n }, /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"ellipse-17\",\n cx: 16.289,\n cy: 15.886,\n rx: 16.289,\n ry: 15.886,\n fill: \"#07a3c8\"\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_685132_cc\",\n transform: \"translate(282.045 360.582) rotate(90)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_1493\",\n \"data-name\": \"Group 1493\",\n transform: \"translate(0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_1582\",\n \"data-name\": \"Path 1582\",\n d: \"M6.742.092.121,5.98A.363.363,0,0,0,.1,6.5a.427.427,0,0,0,.554.017l5.964-5.3V16.361a.39.39,0,0,0,.779,0V1.219l5.964,5.3a.425.425,0,0,0,.554-.017A.359.359,0,0,0,13.9,5.98L7.278.092a.437.437,0,0,0-.536,0Z\",\n transform: \"translate(0)\",\n fill: \"#fff\"\n }))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgRoundArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/roundArrow.aaf46012.svg\";\nexport { ForwardRef as ReactComponent };","module.exports = __webpack_public_path__ + \"static/media/patientSilhouette.03dacdca.svg\";","export const formatDate = (date: string) => {\n if(date){\n const options = { year: 'numeric', month: 'long', day: 'numeric' } as Intl.DateTimeFormatOptions;\n return new Date(date).toLocaleDateString('en-US', options);\n }\n};\n\nexport const format2EnDate = (date?: string) => date && new Date(normalizeDate(date)).toLocaleDateString('en-GB');\n\nexport const normalizeDate = (date?: string) => {\n return date ? date.split('T')[0] : '';\n}","import React from 'react';\n\ntype Props = {\n size: string;\n orientation: 'horizontal' | 'vertical'\n}\n\nconst Divider = ({size, orientation}: Props) => {\n const sizeStyle = orientation === 'horizontal' ? {height: size} : {width: size};\n return (\n \n )\n}\n\nexport default Divider;","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgRightWhiteArrow = function SvgRightWhiteArrow(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 13.62,\n height: 11.016,\n viewBox: \"0 0 13.62 11.016\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_685132_cc\",\n transform: \"translate(13.094 0.5) rotate(90)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_10143\",\n \"data-name\": \"Group 10143\",\n transform: \"translate(0 0)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_6690\",\n \"data-name\": \"Path 6690\",\n d: \"M4.8.069.086,4.5A.284.284,0,0,0,.073,4.9a.291.291,0,0,0,.394.013L4.71.918v11.4a.277.277,0,0,0,.554,0V.918L9.506,4.909A.29.29,0,0,0,9.9,4.9.281.281,0,0,0,9.887,4.5L5.177.069a.3.3,0,0,0-.381,0Z\",\n fill: \"#fff\",\n stroke: \"#fff\",\n strokeWidth: 1\n })))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgRightWhiteArrow, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/rightWhiteArrow.1aa643c9.svg\";\nexport { ForwardRef as ReactComponent };","const actionTypes = {\n setOnTimeSelectedFn: 'PRACTICE_BOOKING_SET_ON_TIME_SELECTED_FN',\n clearState: 'PRACTICE_BOOKING_PAGE_CLEAR_STATE',\n setDateTimePickerIsShowing: 'SET_DATETIME_PICKER_IS_SHOWING',\n};\n\nconst actions = {\n setOnTimeSelectedFn: onTimeSelectedFn => ({\n type: actionTypes.setOnTimeSelectedFn,\n payload: {\n onTimeSelectedFn,\n },\n }),\n clearState: () => ({\n type: actionTypes.clearState,\n }),\n setDateTimePickerIsShowing: dateTimePickerIsShowing => ({\n type: actionTypes.setDateTimePickerIsShowing,\n payload: { dateTimePickerIsShowing },\n }),\n};\n\nexport { actions, actionTypes };\n","var _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgRightlinearrow2 = function SvgRightlinearrow2(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 11.016,\n height: 13.62,\n viewBox: \"0 0 11.016 13.62\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_10143\",\n \"data-name\": \"Group 10143\",\n transform: \"translate(0.5 0.527)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"Path_6690\",\n \"data-name\": \"Path 6690\",\n d: \"M4.8.069.086,4.5A.284.284,0,0,0,.073,4.9a.291.291,0,0,0,.394.013L4.71.918v11.4a.277.277,0,0,0,.554,0V.918L9.506,4.909A.29.29,0,0,0,9.9,4.9.281.281,0,0,0,9.887,4.5L5.177.069a.3.3,0,0,0-.381,0Z\",\n fill: \"#fff\",\n stroke: \"#fff\",\n strokeWidth: 1\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgRightlinearrow2, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/rightlinearrow2.fb67849a.svg\";\nexport { ForwardRef as ReactComponent };","// extracted by mini-css-extract-plugin\nmodule.exports = {\"outerContainer\":\"medications_outerContainer__2l4u_\",\"container\":\"medications_container__3zDZi\",\"spinner\":\"medications_spinner__93zAT\",\"textarea\":\"medications_textarea__1zYmw\",\"medHeader\":\"medications_medHeader__1bi9H\",\"noHeader\":\"medications_noHeader__3t4b7\",\"patientDetails\":\"medications_patientDetails__3VOpc\",\"buttons\":\"medications_buttons__fHp5r\",\"addNote\":\"medications_addNote__3x4R0 button_button__2n_ir\",\"note\":\"medications_note__18P_L\",\"cta\":\"medications_cta__3f34P\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"outer\":\"pageContainer_outer__15Dto\",\"spinner\":\"pageContainer_spinner__2FBLW\",\"blue\":\"pageContainer_blue__32qCn\",\"overlay\":\"pageContainer_overlay__3I7ZG\",\"inner\":\"pageContainer_inner__8SLRN\",\"innerWhenWhiteBoxOpen\":\"pageContainer_innerWhenWhiteBoxOpen__3QnS-\",\"noPadding\":\"pageContainer_noPadding__5HVdz\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"appointments_container__QpjZU\",\"absolute\":\"appointments_absolute__2P1Vb\",\"inner\":\"appointments_inner__1dx3a\",\"buttonIcon\":\"appointments_buttonIcon__3mbxl\",\"textButtonIcon\":\"appointments_textButtonIcon__1SDpY\",\"ctaIconCard\":\"appointments_ctaIconCard__2Sp0H appointments_buttonIcon__3mbxl\",\"ctaButton\":\"appointments_ctaButton__zZosY\",\"ctaButtonCard\":\"appointments_ctaButtonCard__2n-sy\",\"enter\":\"appointments_enter__3WlWY\",\"enterActive\":\"appointments_enterActive__24gV3\",\"leave\":\"appointments_leave__17xaT\",\"leaveActive\":\"appointments_leaveActive__1WNQt\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"label\":\"dateInput_label__Nevxp\",\"inputContainer\":\"dateInput_inputContainer__2c8cs\",\"input\":\"dateInput_input__3wqm2 input_input__2YbVH\",\"inputDay\":\"dateInput_inputDay__1kZs3\",\"inputMonth\":\"dateInput_inputMonth__2Hc21 dateInput_inputDay__1kZs3 dateInput_inputDay__1kZs3\",\"inputYear\":\"dateInput_inputYear__2CC6D\",\"focused\":\"dateInput_focused__hZe9E\",\"faded\":\"dateInput_faded__Kf1DO\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"monthPicker_container__c_d2T\",\"months\":\"monthPicker_months__13FsI\",\"month\":\"monthPicker_month__3YspP\",\"appear\":\"monthPicker_appear__1QzQd\",\"selected\":\"monthPicker_selected__19qUx\",\"bright\":\"monthPicker_bright__gEk3Q\",\"icon\":\"monthPicker_icon__1am5I\",\"filterIcon\":\"monthPicker_filterIcon__R_ut3\",\"enter\":\"monthPicker_enter__1oSMI\",\"enterActive\":\"monthPicker_enterActive__47-8o\",\"leave\":\"monthPicker_leave__1eR1V\",\"leaveActive\":\"monthPicker_leaveActive__lx3M_\",\"cross\":\"monthPicker_cross__1sH-j\",\"selectedDocBackground\":\"monthPicker_selectedDocBackground__2D07t\",\"selectedDoc\":\"monthPicker_selectedDoc__1Z_eP\",\"servicePlaceholder\":\"monthPicker_servicePlaceholder__1d8lS\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"feelingForm_container__2Xvj5\",\"feelingForm\":\"feelingForm_feelingForm__3jQ4t\",\"inputContainer\":\"feelingForm_inputContainer__BinGr\",\"drop\":\"feelingForm_drop__9quy6\",\"textarea\":\"feelingForm_textarea__1hAAi\",\"question\":\"feelingForm_question__2wpAl\",\"questionContainer\":\"feelingForm_questionContainer__3ppD7\",\"displayNone\":\"feelingForm_displayNone__Y7pWD\",\"optionVisible\":\"feelingForm_optionVisible__3MV_l\",\"countBar\":\"feelingForm_countBar__2Zwc3\",\"lengthCounter\":\"feelingForm_lengthCounter__28l7i\",\"redBorder\":\"feelingForm_redBorder__gogdS\",\"normal\":\"feelingForm_normal__2JzL4\",\"length\":\"feelingForm_length__RGQAp\",\"redColor\":\"feelingForm_redColor__3ZW5m\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"header\":\"servicedetail_header__1gNIl\",\"pageContainer\":\"servicedetail_pageContainer__QEtC1\",\"serviceHeader\":\"servicedetail_serviceHeader__2sUiJ\",\"infoContainer\":\"servicedetail_infoContainer__18rZ-\",\"notUser\":\"servicedetail_notUser__1orx6\",\"cta\":\"servicedetail_cta__WTCZB\",\"logoutText\":\"servicedetail_logoutText__1OG5i\",\"notUserText\":\"servicedetail_notUserText__3jd1o\",\"paragraphHeader\":\"servicedetail_paragraphHeader__g7bV6\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"header\":\"dropIn_header__1YCzJ\",\"container\":\"dropIn_container__3KTiU\",\"feelingIcon\":\"dropIn_feelingIcon__2Cxyr\",\"labelSmall\":\"dropIn_labelSmall__3J4bZ\",\"nextContainer\":\"dropIn_nextContainer__386GC\",\"feelingPage\":\"dropIn_feelingPage__1KjrP\",\"navLinkLarge\":\"dropIn_navLinkLarge__FQI8r\",\"backwardArrow\":\"dropIn_backwardArrow__VIyML\",\"footer\":\"dropIn_footer__1-OD_\",\"back\":\"dropIn_back__3Bkm-\"};","import PropTypes from 'prop-types';\nimport { doctorPropType } from '../../PracticeProfilePage/propTypes';\n\nconst clinicPropType = PropTypes.shape({\n Id: PropTypes.string.isRequired,\n Name: PropTypes.string.isRequired,\n Address: PropTypes.string.isRequired,\n Phone: PropTypes.string,\n IsOnline: PropTypes.bool,\n PictureUrl: PropTypes.string,\n PracticeId: PropTypes.string,\n IsUsingVensa: PropTypes.bool.isRequired,\n});\n\nconst practicePropType = PropTypes.shape({\n Id: PropTypes.string.isRequired,\n Name: PropTypes.string.isRequired,\n PracticeId: PropTypes.string,\n Address: PropTypes.string.isRequired,\n Phone: PropTypes.string,\n IsUsingVensa: PropTypes.bool,\n IsOnline: PropTypes.bool,\n ScriptEnabled: PropTypes.bool,\n UrlName: PropTypes.string,\n Doctors: PropTypes.arrayOf(doctorPropType),\n});\n\nexport { clinicPropType, practicePropType };\n","module.exports = __webpack_public_path__ + \"static/media/LoadingGif.0439f633.gif\";","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n\nimport styles from './desktopCta.module.css';\n\nconst DesktopCta = ({\n text,\n onClick,\n background = false,\n absolute = false,\n className,\n}) => (\n \n {text}\n \n);\n\nDesktopCta.propTypes = {\n text: PropTypes.string.isRequired,\n onClick: PropTypes.func.isRequired,\n className: PropTypes.string,\n background: PropTypes.bool,\n absolute: PropTypes.bool,\n};\n\nexport default DesktopCta;\n","import React from 'react';\nimport { getSafeCss } from '../styles';\nimport { getRefProp, is } from '../utils/utils';\nimport { BaseBox } from './Box/BaseBox';\nimport { IBaseBoxWithTakeRef } from './Box/BaseBox.type';\n\nexport interface IImage extends IBaseBoxWithTakeRef {\n src: string;\n alt?: string;\n}\n\nexport const Image: React.FC = ({ height, css, takeRef, ...rest }) => {\n return (\n \n)};\n","import React from 'react';\nimport { WizardValues } from './types';\nimport WizardContext from './WizardContext';\n\nconst useWizard = () => {\n const context = React.useContext(WizardContext);\n if(!context && process.env.NODE_ENV === 'development'){\n throw Error('Set up your wizard with steps');\n } else {\n return context as WizardValues;\n }\n};\n\nexport default useWizard;\n","const actionTypes = {\n showMenu: 'SHOW_MENU',\n hideMenu: 'HIDE_MENU',\n toggleMenu: 'TOGGLE_MENU',\n};\n\nconst actions = {\n showMenu: () => ({\n type: actionTypes.showMenu,\n }),\n hideMenu: () => ({\n type: actionTypes.hideMenu,\n }),\n toggleMenu: () => ({\n type: actionTypes.toggleMenu,\n }),\n};\n\nexport { actionTypes, actions };\n","const actionTypes = {\n fetchCardDetails: 'SCRIPT_FETCH_PAYMENT_OPTIONS',\n fetchCardDetailsSuccess: 'SCRIPT_FETCH_PAYMENT_OPTIONS_SUCCESS',\n fetchCardDetailsFailure: 'SCRIPT_FETCH_PAYMENT_OPTIONS_FAILURE',\n};\n\nconst actions = {\n fetchCardDetails: token => ({\n type: actionTypes.fetchCardDetails,\n payload: {\n token,\n },\n }),\n fetchCardDetailsSuccess: cardDetails => ({\n type: actionTypes.fetchCardDetailsSuccess,\n payload: {\n cardDetails,\n },\n }),\n fetchCardDetailsFailure: error => ({\n type: actionTypes.fetchCardDetailsFailure,\n payload: { error },\n error: true,\n }),\n};\n\nexport { actions, actionTypes };\n","const actionTypes = {\n createSession: \"CREATE_SESSION\",\n createSessionSuccess: \"CREATE_SESSION_SUCCESS\",\n createSessionFailure: \"CREATE_SESSION_FAILURE\",\n createGuestBookingError: \"CREATE_GUEST_BOOKING_ERROR\",\n clearSession: \"CLEAR_SESSION\",\n};\n\nconst createSession = ({\n firstName,\n lastName,\n dateOfBirth,\n mobile,\n organisationId,\n pmsUserId,\n appointmentId,\n time,\n note,\n sessionId,\n initiatorFirstName,\n initiatorLastName,\n initiatorDateOfBirth,\n initiatorMobile,\n isBookingForSomeoneElse,\n dependantId,\n service,\n symptoms,\n}) => ({\n type: actionTypes.createSession,\n payload: {\n Service: service,\n Symptoms: symptoms,\n OrganisationId: organisationId,\n PmsUserId: pmsUserId,\n AppointmentId: appointmentId,\n Time: time,\n Note: note,\n SessionId: sessionId,\n Mobile: mobile,\n FirstName: firstName,\n LastName: lastName,\n DateOfBirth: dateOfBirth,\n InitiatorFirstName: initiatorFirstName,\n InitiatorLastName: initiatorLastName,\n InitiatorDateOfBirth: initiatorDateOfBirth,\n InitiatorMobile: initiatorMobile,\n IsBookingForSomeoneElse: isBookingForSomeoneElse,\n DependantId: dependantId,\n },\n});\nconst createSessionSuccess = sessionId => ({\n type: actionTypes.createSessionSuccess,\n payload: {\n sessionId,\n },\n});\nconst createSessionFailure = error => ({\n type: actionTypes.createSessionFailure,\n error: true,\n payload: {\n error,\n },\n});\nconst createGuestBookingError = error => ({\n type: actionTypes.createGuestBookingError,\n error: true,\n payload: {\n error,\n },\n});\nconst clearSession = () => ({\n type: actionTypes.clearSession,\n});\n\nconst actions = {\n createSession,\n createSessionSuccess,\n createSessionFailure,\n createGuestBookingError,\n clearSession,\n};\n\nexport { actionTypes, actions };\n","const actionTypes = {\n changeUserPassword: 'CHANGE_USER_PASSWORD',\n changeUserPasswordFailure: 'CHANGE_USER_PASSWORD_FAILURE',\n changeUserPasswordSuccess: 'CHANGE_USER_PASSWORD_SUCCESS',\n clearChangePassword: 'CHANGE_USER_PASSWORD_CLEAR',\n};\n\nconst actions = {\n changeUserPassword: (oldPassword, newPassword) => ({\n type: actionTypes.changeUserPassword,\n payload: {\n Password: oldPassword,\n NewPassword: newPassword,\n },\n }),\n changeUserPasswordFailure: error => ({\n type: actionTypes.changeUserPasswordFailure,\n error: true,\n payload: {\n error,\n },\n }),\n changeUserPasswordSuccess: () => ({\n type: actionTypes.changeUserPasswordSuccess,\n }),\n clearChangePassword: () => ({\n type: actionTypes.clearChangePassword,\n }),\n};\n\nexport { actionTypes, actions };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"loadingGif\":\"processing_loadingGif__brriT\",\"gifBusy\":\"processing_gifBusy__3PXaq\",\"container\":\"processing_container__OcI2E\",\"title\":\"processing_title__2XAgp\",\"text\":\"processing_text__NV8gK\"};","const actionTypes = {\n requestNewPassword: 'REQUEST_NEW_PASSWORD',\n requestNewPasswordFailure: 'REQUEST_NEW_PASSWORD_FAILURE',\n requestNewPasswordSuccess: 'REQUEST_NEW_PASSWORD_SUCCESS',\n clearState: 'REQUEST_NEW_PASSWORD_CLEAR_STATE',\n};\n\nconst actions = {\n requestNewPassword: email => ({\n type: actionTypes.requestNewPassword,\n payload: {\n email,\n },\n }),\n\n requestNewPasswordFailure: error => ({\n type: actionTypes.requestNewPasswordFailure,\n error: true,\n payload: {\n error,\n },\n }),\n\n requestNewPasswordSuccess: () => ({\n type: actionTypes.requestNewPasswordSuccess,\n }),\n\n clearState: () => ({\n type: actionTypes.clearState,\n }),\n};\n\nexport { actionTypes, actions };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"outer\":\"healthFeedMobile_outer__prSLo\",\"container\":\"healthFeedMobile_container__1ge-u\",\"background\":\"healthFeedMobile_background__1M6li\",\"buttonIcon\":\"healthFeedMobile_buttonIcon__3SI8G\",\"ctaIconCard\":\"healthFeedMobile_ctaIconCard__3bpIa healthFeedMobile_buttonIcon__3SI8G\",\"ctaButton\":\"healthFeedMobile_ctaButton__RHdoB\",\"ctaButtonCard\":\"healthFeedMobile_ctaButtonCard__3JMUn\",\"z\":\"healthFeedMobile_z__2SDC2\",\"enter\":\"healthFeedMobile_enter__1XXX7\",\"enterActive\":\"healthFeedMobile_enterActive__1-I-9\",\"leave\":\"healthFeedMobile_leave__XDrq7\",\"leaveActive\":\"healthFeedMobile_leaveActive__US9g6\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"addPharmacyForm_container__KiVbV\",\"form\":\"addPharmacyForm_form__HKVgD\",\"field\":\"addPharmacyForm_field__lMYDN\",\"numbersInput\":\"addPharmacyForm_numbersInput__3Y_TK\",\"optionsContainer\":\"addPharmacyForm_optionsContainer__16Yel\",\"option\":\"addPharmacyForm_option__rQWJy\",\"radio\":\"addPharmacyForm_radio__2JqRn\",\"priceTime\":\"addPharmacyForm_priceTime__2KiNw\",\"buttons\":\"addPharmacyForm_buttons__3ChjZ\",\"cta\":\"addPharmacyForm_cta__2pfAR\",\"spinnerContainer\":\"addPharmacyForm_spinnerContainer__CF-He\",\"spinner\":\"addPharmacyForm_spinner__1n7-5\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"heading\":\"pickUpLocation_heading__1teWG\",\"orgList\":\"pickUpLocation_orgList__3b8Yg\",\"container\":\"pickUpLocation_container__2KNWB\",\"pickupMessage\":\"pickUpLocation_pickupMessage__XdR2O\",\"buttons\":\"pickUpLocation_buttons__MEIYE\",\"addPharmacy\":\"pickUpLocation_addPharmacy__uPQpv button_button__2n_ir\",\"reasonForCost\":\"pickUpLocation_reasonForCost__3aZrd\",\"plus\":\"pickUpLocation_plus__3fSl4\",\"cta\":\"pickUpLocation_cta__1X3hy\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"addToCalendar_container__1HwM4\",\"title\":\"addToCalendar_title__16XLk\",\"buttonContainer\":\"addToCalendar_buttonContainer__ui0OL\",\"button\":\"addToCalendar_button__1i83a\",\"buttonIcon\":\"addToCalendar_buttonIcon__3UJdA\",\"enter\":\"addToCalendar_enter__3Xy-T\",\"enterActive\":\"addToCalendar_enterActive__2fI3l\",\"leave\":\"addToCalendar_leave__BF9mC\",\"leaveActive\":\"addToCalendar_leaveActive__g7HuO\",\"cross\":\"addToCalendar_cross__3BfxU\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"wrapper\":\"DependantPopup_wrapper__3h5bB\",\"title\":\"DependantPopup_title__1xqRz\",\"avatar\":\"DependantPopup_avatar__2INr4\",\"infoContainer\":\"DependantPopup_infoContainer__1nDHM\",\"container\":\"DependantPopup_container__2_1GJ\",\"text\":\"DependantPopup_text__16RvM\",\"card\":\"DependantPopup_card__3N87l\",\"buttonContainer\":\"DependantPopup_buttonContainer__1pLaA\",\"okButton\":\"DependantPopup_okButton__1npxy\",\"cancelButton\":\"DependantPopup_cancelButton__2k2P5\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"container\":\"DependantInfo_container__3XXoA\",\"banner\":\"DependantInfo_banner__3jAAh\",\"avatar\":\"DependantInfo_avatar__1ACoQ\",\"default\":\"DependantInfo_default__p2_IO\",\"profileContainer\":\"DependantInfo_profileContainer__3YDwd\",\"detailsContainer\":\"DependantInfo_detailsContainer__2b2Ju\",\"name\":\"DependantInfo_name__2myiE\",\"detailText\":\"DependantInfo_detailText__2xyhB\",\"menu\":\"DependantInfo_menu__TcZpY\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"privacyInfoPopUp_container__2Quvh\",\"in\":\"privacyInfoPopUp_in__oUroG\",\"inner\":\"privacyInfoPopUp_inner__zdjhr\",\"innerMoreInfo\":\"privacyInfoPopUp_innerMoreInfo__3PHLy\",\"title\":\"privacyInfoPopUp_title__1WKt1\",\"text\":\"privacyInfoPopUp_text__1S8Um\",\"link\":\"privacyInfoPopUp_link__2r7kJ\",\"linkLess\":\"privacyInfoPopUp_linkLess__2C5or\",\"extraText\":\"privacyInfoPopUp_extraText__3M0f5\",\"displayNone\":\"privacyInfoPopUp_displayNone__SlhB3\",\"logo\":\"privacyInfoPopUp_logo__3Vh7o\",\"placeholder\":\"privacyInfoPopUp_placeholder__3hJLt\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"icon\":\"CancelError_icon__MxjIp\",\"center\":\"CancelError_center__1dZfj\",\"smallIcon\":\"CancelError_smallIcon__2cmvy\",\"normalSpacing\":\"CancelError_normalSpacing__2PAno\",\"bigSpacing\":\"CancelError_bigSpacing__14B8d\",\"practice\":\"CancelError_practice__3NV6I\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"success_container__1X_Jm\",\"tickContainer\":\"success_tickContainer__1bF25\",\"tickIcon\":\"success_tickIcon__EmaLO\",\"content\":\"success_content__282f1\",\"enter\":\"success_enter__2uNds\",\"enterActive\":\"success_enterActive__35Qm7\",\"leave\":\"success_leave__172bz\",\"leaveActive\":\"success_leaveActive__3z76G\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"registerForm_container__idUfm\",\"heading\":\"registerForm_heading__2_cur\",\"secondaryHeading\":\"registerForm_secondaryHeading__dzFZ6\",\"inputContainer\":\"registerForm_inputContainer__C0xAt\",\"input\":\"registerForm_input__347sz input_input__2YbVH\",\"footer\":\"registerForm_footer__tkzji\",\"spinner\":\"registerForm_spinner__21TQj\",\"spinnerOverlay\":\"registerForm_spinnerOverlay__11rTK\",\"login\":\"registerForm_login__239Q8\",\"link\":\"registerForm_link__1htTz\",\"loginButton\":\"registerForm_loginButton__FMZUE button_button__2n_ir\",\"button\":\"registerForm_button__3_p5h\",\"secondaryCta\":\"registerForm_secondaryCta__3oI4t\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"initialBox\":\"searchMedsMobile_initialBox__O1lJS\",\"addBox\":\"searchMedsMobile_addBox__1fhEp searchMedsMobile_initialBox__O1lJS\",\"input\":\"searchMedsMobile_input__1Z-LK\",\"button\":\"searchMedsMobile_button__ecFD- searchMedsMobile_input__1Z-LK\",\"plusContainer\":\"searchMedsMobile_plusContainer__2K8f6\",\"plus\":\"searchMedsMobile_plus__2Y0xV\",\"add\":\"searchMedsMobile_add__8j1SZ\",\"enter\":\"searchMedsMobile_enter__2Hd5p\",\"enterActive\":\"searchMedsMobile_enterActive__3KcDv\",\"leave\":\"searchMedsMobile_leave__BSrcb\",\"leaveActive\":\"searchMedsMobile_leaveActive__1t6Oq\"};","import PropTypes from 'prop-types';\n\nconst appointmentPropType = PropTypes.shape({\n Id: PropTypes.string,\n SessionId: PropTypes.string,\n Time: PropTypes.string,\n ProviderName: PropTypes.string,\n ProviderTitle: PropTypes.string,\n PracticeName: PropTypes.string,\n Address: PropTypes.string,\n ProviderPictureUrl: PropTypes.string,\n CalendarUrl: PropTypes.string,\n GoogleCalendarUrl: PropTypes.string,\n PatientPhone: PropTypes.string,\n DateOfBirth: PropTypes.string,\n Phone: PropTypes.string,\n FirstName: PropTypes.string,\n LastName: PropTypes.string,\n Status: PropTypes.string,\n Note: PropTypes.string,\n DependantId: PropTypes.string,\n CreatedAt: PropTypes.string,\n});\n\nconst CanlendarPropType = PropTypes.shape({\n CalendarUrl: PropTypes.string,\n GoogleCalendarUrl: PropTypes.string,\n});\n\nexport { appointmentPropType, CanlendarPropType};\n","import React from 'react';\nimport * as styledComponents from 'styled-components';\n// tslint:disable-next-line:no-duplicate-imports\nimport { ThemedStyledComponentsModule } from 'styled-components';\nimport { ThemeType } from './index';\nimport { defaultTheme, ITheme } from './theme/theme';\n\nconst ThemeProvider: React.FC<{\n theme: ITheme;\n // tslint:disable-next-line:no-any\n children: React.ReactElement;\n}> = ({ theme, children }) => (\n \n {children}\n \n);\n\nconst {\n default: styled,\n css,\n createGlobalStyle,\n keyframes,\n} = styledComponents as ThemedStyledComponentsModule;\n\nexport { styled, css, createGlobalStyle, keyframes, ThemeProvider };\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\n\nimport styles from './circleCheckbox.module.css';\n\nconst CircleCheckbox = ({\n selected,\n className,\n selectedClassName,\n onClick,\n}) => (\n \n \n
\n);\n\nCircleCheckbox.propTypes = {\n selected: PropTypes.bool,\n className: PropTypes.string,\n selectedClassName: PropTypes.string,\n onClick: PropTypes.func,\n};\n\nexport default CircleCheckbox;\n","module.exports = \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHUAAACACAYAAAA1WyYWAAAABHNCSVQICAgIfAhkiAAAGg5JREFUeJztnXmUVdWd7z+/c6cab01QIgVRISgiIjhhcACkQEXFhLZtO/ZKTK/kdfKegL0yme50J9F0d2In3QpJm8G8aBJNOnE2onaBCCZh0AhBRhm0oAqZarq36o7nnN/741LzrVt3vlV59VmLRVWds/f+1f3Wnn57798W/gx4NajnOcJMBaYCU4CpCLUoXhVKBcpQShHKUYIIXShdCJ1AF9Cq8J4Ih4BDGBx2lHJ4oUhnIX+vdJFCG5AOr/n0Alu5QWEJygIRSnNRjiq7BF4FXj27go0XiURyUU62GRWiNqhW0Ek9FjcILEE4J982aKxmvw68qvDKkgo5kG8bkmXEivqWqqvDz422crsoyxAqC21THxTYrPAbdfLrJaVyrNAG9WVEibpW1ePxs2SECjkUI07gESPqOr/OUJuvAncIOAptT5rsV+HbVeX84nKRaKGMKLioDR16FfBPAksLbUvWUJpU+K7t5cc3iHTlu/iCibohoJOsKI8AtxTKhlyj8AHC5xZ75fl8lpt3UVXVWO/nC2rzz7maiow4lOfUw6rFxXIkH8XlVdSGLp0jUR5FuDSf5Y4EVOkSg69VlrM61/1tXkRVVVnfwX0qPDCKB0HZYpvLxe3zS+RorgrIuahvtGtVWHgCuCnXZY0WFFoNg48tKpdNucjfyEWm3Wzw68wQ7GBM0H4IVNs2rzW0632qmvWKlbOaut6v19sWL/x/MxhKnydavXzyDhErWxnmpKa+5tNlts3aMUGT4q4qH0/vVnVnK8Os19SGDv24wOOAM9t5/zmjyvqqCpZdLhLINK+s1tT17fpZgV8wAgTVcLDQJqSECIvafKxvUK3IOK9sGASwrkPvVHhCcjz4Ggr7+AHMQ9swj7wDkZigUlaNY8KHcc66CaO8uhBmpY7yWqSCpUtFwulmkRVRGzr0ZoHnKEAN1XCQyB+ewDryTsL3nDPm45p1E+IpzpNl6aPwQr2Xj4qIppM+Y1H/p10vN4Q3gKJM80oVu6WZ8OuPopEAjsmzcH7oYqS0BqOmDg0H0bYmzCPvYB3diXa2IdV1eObdhVFTl29T0+H79RVyTzoJMxJ1nV9nYLMJqMkkn3Sw/a1EXv8xzgsX4Pzw3OHfP36A6J9exmo9RtGSFaNDWOXb9ZVyX6rJ0hb1D6rFgQ72IJybbh6ZYPtbB/WTAngdsU49pBC046Q7I67r8r8YHcIKH6v3ynOpJUmTdR36GPDJdNNnE68DJrlhvKt/p24DXRa0mHAyCv4+ItvHD2BMmJZvU1NHaRcPsxcVS2OySdISdb1P71blp+mk7cb2t2LufBmrtRntbMWorsMoq0aqJuGYfHFSo1WPwIeLYIIruTIDdkzcE1HojFOLRzDbKr1ck+zqTsqiNvj1QizeEqEkddtimAe3EnnzWYgEYwJW12FU1yHuMyNTV8mwTaMBXFIK1Wms+RyJwKFQrCaPIh6ur5B7k3kxJVFV1VjfwTaEy9KzK1ZDQ799EKOsCve8v0m7X5tZDGclWUPj0WXDO4HY/6MFNVi4uFxeH+69lOaV63yslAwEBYi++QxGWRWeJSt75owCTHbHRCoywCmxvrDThnYz1lz29XaPd2YmKECpARcUw/au2HbA0YDY/EBVZ4hIwj/FpL0/r3RotSgPZGKU7W/FOnGgn6BeB3ykDKYVxb52n3FJlTvgbBdcWAzXeeGi4lgfClCXJdd3lQNmjHxfRF8uWOdj5XAvJS2qE/4DoSwTi6yjO/FcfVePoLVOuKwUioexwiA2GJpbBjUOqM6i32qCK9ZKjBZEuX9DQCclfCeZjF7z63zbZti2fDisIztxfGgWAOUGXFGWPedzS/MBDu/YyOmmg5iRIE53MRXj65gwZRaTL7wSVwL3oAVs9kN4lLTDCs8vrpCPDvU8qc+0oUO3CAzvtkmBuWVQliXX//6tL/Putlf6/az4zJQo6G8F4IK5N3H+lTcOmceJKOwaRQs7Ch9ZXCFb4j0btiFr8OsCsbMraLmRPUFbmg8MEnTClIu54uZP9zzftelZ9m99mQ8O7WTe8hVxa22tCzyh0VNbgfuAuLV1+I/W4uvZtqY2zsg1Gg5yeMdG3t32Cu9ue4Wje7cRTWJN9PD2jT1fh6M263e38YNnNnP69GkAauqmMW/5CgB8p5vZ+MsH8Z1qHpSPkL0BWD4QWPZau8adiSRsfs/U0g3ZNmh2CdT0aSOO7t3Krk3PYkYGizhhysVcdO1ySrzxPUwvrlnV8/XaHS20B2KTn5KSEubPn88VV1xBMNDF2y//hLMqYqoVl1cz/6+/NKjGdljwVt4PSWTEf9dXyJ0Df5hY1A59ReCGbFvykTIoOdNGHD+8kzdf+km/57FBzkQCvjaC/lac7mJmXvcxJl84uBfoFrW1M8orO9sSlrvoosoeYSdNv5I5i+/q99wGNvpGlafJtGHGwLOyQza/DV06R2BJrq3av/Xlnq+PtoR4/o8tlF64lHnLV1J/99eYfvVHMSNBdqx7kqN7tw5K73THlnGj1vCd4dvv9Z72b9q3jYCvtd9zg5hTYhThNOAfB/5w6F/B5DZytIXU7PP5+07HjnOe6Ijwxn4fXWGLtWvX0tgYW5SYdulCyibOAIgr7Li62EpLZcnwk9e2gMnhk71N/OEdg2dp7tElKsCNG1T7/fJDfxLKJ3K1K7jTjnmP+nLS17sA0djYyH333ceMGTExD+zfy7JLa/C4DHZtepYJUy/BdaaGTp5xJcffewePy6Cuyk1zW+KwDK2dJlNqY1+3NB8c9NzctR6rtBbHxOngyNAXmR/OsvzcQmw7ETBETW3w6wIRzsuVFb4425Y7Q4N/uGfPHvbs2UPUUrYe8gFgRoLs2vh0zzsTpsyipm4qAJedV45rmFWbvs207/TgUXDXoT8Sfu1RAk9+hcjvf4l2Je6nRwRKv8FSXFFlwEvZ5lS014k+4byLATirInGtaGqNEI7GhjDHD/ffZDbz2r8AoKzIwaKLqhIKW1WaSHUl6D8joh3FPLiFwDMPEN76FBryJ7SvoChLN6j2uHAHibpB1anK8lzaEFFoNWNfT5kzP/Z/bTGVJYmrWXsglsiMBPvNNb3j65hd/3EAqstcLLqoilrv4D+Suio30yf2HhrwjpvY73lL8yGi4f57qcW2sPa9QfDp+zH3/y7J3zDPCOW2n9u7vx3Up5qdXCMwPtd2HAhBdVnMOVBTN5WW5kNc9WEv63e3ER3iVEmpp1f0aKT/h9893dmx7kmqy1zUz6yitTPKSV+EqAW1XlfPdKabCVNm9fu++d23hzbYjBDZ8hvMIzvxXHMXUpzxnuusYisfBR6DeM2vzYJ8GNFlx3YgAFxx82dwuot6almpZ7BZ540voqyoV1SXu8/Gi0hsajL5wrnMW35PTw2sLnMxfWIpF08uHSSod9xELpjbexgv6G/j6N64rtR+2Mf2E3z2X7GaEu8zzjcC13SfoBs0vm1o19dFmJ8vY+aUxJbSAr5W3nzpxz1TnMMng7R2mnSFLSbXeJhS2+v9KS6vov7uXu+lvvswMv5aqOo9oH54x+sc3bu1J79unO4iJkyZxczrlvfzKL350qOD+urhcM5YiPvyZSAjYx7kEC5c6JV9/URdq+px+2gnjxuzDWJLcGVGzP+7o+EJjr+X+MOdt/weas7MTwmfRP/0ZUCh6lLknI+De1zPuwFfK0F/C9FwEJenGO+4Sf3dg2px4u3H2LN9O53B1Dc8GePPxbPw00hxecpps40In1rklcf6idrQoVcJbM63MSUa4Aq3D2fxBODM2uj2jYPErambypTZC3r7QrXQ3d+AQJ/4GIYHahciZ10PntrEBYdPou/9FHx7AWjvdNB4wsPR06nNT6W8hqIbVyIlBY/l9Xh9hdzdT9T17fpZFR7JpxW1nW8x7fgTeCwfct7fwrir+z1vaY65NYvLa/o79e0Quv8h8O8bOvPKS5CKWVAyCYongrMc7Ai0vY22bIb2d4jn6e0MGPzpvRLaOpOvuVLsxXPTvRjleT+s0Jf99RUyvZ+o6zr0IWDVEAmyisds46Km/6IyNCBuY+VspHY+VMwCifehKrRuQ5uegdCJnNq441AJTanU2qJSim5cgVFxdu6MSoCCVe/FPbD5fU7gtlwXXtO1kxnNP8RlJ1jncpSAdzpScg6UngNRH9r1PrTv6Bnt5oPtB0tobkleWCmpoOiWLyDF3hxaNTQON+cNrKn7gAtyVaChEaYdf5K6joy3O6WFZdkEwr0+ZpfDwONyIkZiJ/emd8rxBZIf4UrVRIpuuhdxedK2NV3UYGFP+6aqxuEw/5mrQ8Ol4WNc1vgvVAf25CL7hKittPtCdHSGiUStnn+hsElXKIICHtfQaxslHpvmlhS2RYT82KeP4JhyGSL5DSpn2GztEfD1LmpzFbiqKrCXyxofoDh6KhfZJ0RtpaUjQChixn+u0NkVocM/9NaZcRUmTkdqm5fsD/YTfeuFlNJkA4Vze2ulnZvYuhM7NjHnyLdx2oXZqtcVjBA1+49w3S6D0iIXbpdBd0UKhExC4fjnj0TAW5L6fghzz4b8e54MKnvaHFOpzGZDIShTT/ySD7X9TxZzTZ1wNFZDnQ6htMRDSdHgQU8oHCUSsXA4hu55LDu9bYbhTT+neNl9SFmeYk4olT2/hZC9murQELOO/kfBBQWoLC9mXFUJ46vL4goKUORx4S0vwuWM3/tEo5KWtymWOEx4w0+Gfy9LaOw4Ug9ZEdVjtnHZe9+kpmtkOLwdDmNIsZJl5/vFWHb67Zjd2kRk2zMZ2ZACRT3NryiVmUbJK400M/vIg3jMjkwNGxG0+hzsPlJMR1fm40dz70acH5qJMeH8LFiWkN4+FYNQJmf6yiJNzHn/3xI7FPJM1Cily1OHxtlspV1taGdLz/emJQTDBqGoQSAstPldBCPZnY6ENv2c4tu+gnjSPq89LKJ9aqoqoXQzKo00M6excIJ2FE2h0zOZYNFE/EXn4Pd8CNMY/oMLNTyCfSyB7zjbBH1ENv8az4K7c1aECqG+M+72dDIpiZ5gTuO3cFn5EzTsrKCtZDotZZfSWjqTqCO9uJaea+4i+Ow3IZp2cLGUsRq3Y38wD+PsnDXD7b01FdpTbWyKzBbmNH4Lt5X7TVm+onM55b2SU2WXEnBPyEqeUuzFdf48oruzfrIkIeGtT1F021dy4m2SfqI6CKUScdZt+Znd+G08Zu62ULYVX0CL91JOll9GyDlu+ARp4Lzg2ryLqh0nsA5sxnn+vOxnLn1EddnE2XkbH4dGuOTIdyiJnsy6TWFnBR9UXMsHldcRdA2zyJ0FpLwGo2YSdktTzsvqS+Tt3+I491LEneVNJtqnT3WV02z6sIbz/wo2M5vWUB5OOlZTUviKzqWpegknyueicddRc4dRNyPvohLuIrpnA+7Z2Y1Er8rxHlGvEfGva9em4W48nHb851lzLARctZzwXsUp7xV0eiZnJc90MLy5bxHiYe5+DdeM+Yg7e1McMdjXb71JhX3C0KJOal/PpPbM+5/WkotoHH8rbcXTM84rG0hJYRa0MSOYe17HNTt7N6I5GCCqwD6GOI9aFdzH+cd/nlGBp8ou5f3xy/B7ChKjcmjCaU/RMya6ewPOGQuyUlsV7AXl7O8vqrIvnqvQbXYws2lNWgVZ4uFY5bU0VS/Jy8AnHTRYwENQZgRz7xu4Lsn8bLfAARHpf67RdrAvXiytmU3fS8u50Fh1I43jlyXl3Skk1vHBRxrzSXTfGzhnLUYy3xS+BQacpYmWsdntI0SfzdxTTj01eMffMARcteyd+Hd0FE/N1Mico5EA1tHdhTUi5Mc+uqsnxlS6SOx67f77kZaKhFXpOapdETzAuS2/TSnj98YvZ8vUB0eFoADWvt+BFj7KQ3T/7zPOw3DFRB282yqm9nyHRphx7IdJZ9hWPJ39Z3+KgPusjI3LF+o7SWT7S4U2AwD72D7UfxopT9NzpjQuLJb3Id7OQSOm9nmnnqY4ejqJvIRDtXew/Zz7RpWgWFHCv/tFoa3oh3loW/qJpTfM4CBRo2VsLgsdjUxuHX4rStQo5e1z/oHG6tF187RaJqF1P8Q+lV2vWKaYh/+YdlrpI+qg5nepSLhz+5e7hMR3j3UUT2XXpBWEHQU/FJQy4dd/gn08tcFfPlD/aezTjRjjEjr14iZ1CT39yCBRddsn/kojx6sS5XCk6gYOnvXXqRZccOyOE4Q3/F+043ihTRkS89CbuFMUVZVN15VLz6bqQc2vqvx7ogwO1d4xKgW1Dm4l9OJ3RrSgAOb7O1JOYxixsADd9Pf9bv3kPyoM6Vk/cNZdHK1anHKhhcT2nybyh1+NyOY2LiE/6mtBvEkeiVQ6TS+/6fuj3kXyLXdNUuWrQwXE2n/2p2iuyFvUgMyxIkR2vEp0zwbEztp9s3nBOvEuTu9HkntZeOkGkX7uvh5RbXF8SYYIC7C77nOcKM9qyN+cYh5+i+hbL6DBjtxfup4DrOOHcE5LTlQ1+MHAnzkB9Hd/W65qfnrgJ6BIZOfkz7tbSmdmwdTcY7c1E9n8FPapw4U2JSPsJH3RClvjXWkSq6nu6P9BjYHhqm0bWdZSOnM1kPMdyJmgIT/RP/6W6MGtyKi5kGRoNNCGRsPDnm8V4Vvxfm4AqBqDQgKI8PeuuT99VZT/zIqlOSK6dyPBp76BeXDLn4Wg3Wj7scTP4cBQF/sZuuUTtwP99lyK8kW58vHVAEYFjykkLqEAqNqE//ArotueASupK9BGFXZb4qmXIfzrkM9U+Ku+P1Dhfrnq8e90f79QJGRkeMlQ1rEihF/7MdaBvEcHyht2+wdDPlN46/pyfjbUcwPkmj4vP+K48vGvDXzp+gp+BLyZqaHZQEOdBF96CLsp/2EGEpLeTdNDkigkrUP5bKKrwQxQF4CiaxxzH//f8V4SEdtW4j7LK5EAobUPoW2D4/QWEttWUInFu82StjogmmkfHr++UhJ6/g1VfirC3zjm/izhHWJLKuUt4PE0bcyY7pUV9ec/bkQiTMvqCTGAxP6pxv5lRDjO9iHFj/D54ZI6HVf97ItJFyR8HuVmIDdnIBIQ2fIU9qn3813skCiKGbVwOh2DzsT0/1aRNMbldhxRVfjnxV5pifN6P1La6VQfy3BFKmmygX1kJ9bBkTMoiglqYhhGEoecugWNtc1Je7jMAXcBKBvqvTycTNKUt6/VV8ivyGMzrKEuQr9/Ml/FDYsqmFELRBIG/hhMrG2OSZtEvXX0W2s5YTm4UyS50VhaexJLvHwOyMsWvMj2FyHOzVKFQTFNE8u2cTrSP+8jZ+qrokP2vXLmpg0FWw3uvKFckj6Nlpao80SCGNyhypBDtGxgtx/HenfkNLtR04oJGqcfTQdBkO6B1cDa23t9ygPJXFndl7R3D9eXyx7D4E4gfiixLBB9p/Ahe7qxLAvLsjEMyaiWxkOkt/b29LsOFwovtHlTd/xktCV8kVdeBHISwEADHVgZbMTKJrZtEzVja7JOx/A3VWXGmYFVuDMU9XLHHZLKUfAYGe/zr6+QJxS+kWk+AzEPDb7XrRCoKlEz1hgZDsEYJuJo1soN+ncuFUkrGEVWIoYurpCvA9/PRl7dWIdGRi2NmmZsMCP5qKW9GGJtTztttoxY5GWFQlbCZmpXG/YI2CBmmVbMBQg4DQdGHsO8WqbxX+mmzZqoIqKLK+Q2Vb4z/NuJsT7IY2yjIVBVTOtMsyuCM8NQeCmy8bZ7H96ZbuKsB2xeXClfRPhCJnnYJwu/c940rR7/T2pOhswR9LuZpM+JtfVe+a4InyHN6Y6V76AaA7BVsazYypYAhpFPUXXjrSvXvJhJDjmzdpFXHhWDRUDKneNwWzlyjWVaPXdrOZzOvIVMV6XdbTky3imf0z/BReWyCQezVdmYbBoNdUEB9+mq2lhnyhfAka8pjBIxHNbSG//+oaG3PCRJztuV+jI50VbBIoR/I4klZA0UNqysadp0V9N81lJD9PZb7/l+Vnyieeks7hCx6r3yD8BShmuOI50JH+cSVe2tpQLOPA2QBP3LTPvRvuR1WFdfIa+YcBHKjzTefVyAHclfRM+BxAZH+RvxquJXW+bfunLNU9nMN+93RN5YIa31lfJ34mBO3L62QNs9VWNO+24cRo69R0qzA+bddu/Dm7KddcEu/qwvk52LK2UByhL63gSphRkk2Wr1dPgOh0Euu1JFn9FQ0YW3rFq9Kxf558+ZOQT1ldIANKz36a1q8w3EMacQdthWb2/gzNm8VNtQWXXbqjWZhY4bhpFxRS+xZbxFFVxmtx39av5L1557Z0RAciCqKo+bhj1t2arVORUU4lxfXWhUkRe+d888h/fslRrqvFnDXenFUk8By7aInrnd3ul0ZHcRXNmrhv2Z21Z8L/NASUky4kQdyNqf3T/fKqr8Mv7W+drVmpN4eNFotKemetyurMxNVQmK6DfLW2seXPj1r+dsd0g8RryofVm79hczsCL/S/3ti23fyWkaCaR2z3Q8FEKR2HZMwxDcrsyzRGlwOKzP3HzP9wuyMjGqRB3I86tXzHGfM3OZbdsXayQyVSPBswl1VmrQl/TFpWor4WhsGuV0u22nZDDOUN40DPufblnxvVfTziMLjGpRE/Hqv3+h1JxzeZ3hNGoMlRo1qbYxKgxDOm1D2tQwWt1Yp0qctFx99fKTAC88vHIbwhUpF6bsAr66bNXq57P9e6TDn62o6fDC6pWpnY5QDqPypWX3Pvx0jkxKi4LPU0cKa1evmJr8aEb/BDyybNWa5CNy5pExUc8QsY1xhjFcRdX3gPuXrVzz2DAvFpQxUbtxRY9hDfFxKOuBHy1btebXebUpTcb61D68uHrFSoXlZ75tU1jvgueWrlxT2P01Y4wxxhhjjDHGGGOMMcYYY4wxivl/nTS6Aah6fiwAAAAASUVORK5CYII=\"","var _path;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgWhiteCrossSmall = function SvgWhiteCrossSmall(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 14.142,\n height: 14.142,\n viewBox: \"0 0 14.142 14.142\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n id: \"Union_851\",\n \"data-name\": \"Union 851\",\n d: \"M3.923,9.133l.153-3.648L.428,5.638A.611.611,0,0,1-.219,4.99a.747.747,0,0,1,.7-.7l3.648-.153L4.286.485a.748.748,0,0,1,.7-.7.611.611,0,0,1,.647.647L5.484,4.077l3.648-.153a.611.611,0,0,1,.647.647.749.749,0,0,1-.7.7l-3.648.153L5.275,9.076a.75.75,0,0,1-.7.7H4.542A.611.611,0,0,1,3.923,9.133Z\",\n transform: \"translate(13.832 7.071) rotate(135)\",\n fill: \"#fff\"\n })));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgWhiteCrossSmall, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/whiteCrossSmall.78824d04.svg\";\nexport { ForwardRef as ReactComponent };","const actionTypes = {\n expressInterest: 'EXPRESS_INTEREST',\n sendExpressionOfInterest: 'EXPRESSION_OF_INTEREST',\n expressionOfInterestSuccess: 'EXPRESSION_OF_INTEREST_SUCCESS',\n expressionOfInterestFailure: 'EXPRESSION_OF_INTEREST_FAILURE',\n };\n \n const expressInterest = (patientId) => ({\n type: actionTypes.expressInterest,\n payload: {\n patientId\n }\n });\n const sendExpressionOfInterest = (expression) => ({\n type: actionTypes.sendExpressionOfInterest,\n payload: expression,\n });\n const expressionOfInterestSuccess = () => ({\n type: actionTypes.expressionOfInterestSuccess,\n });\n const expressionOfInterestFailure = error => ({\n type: actionTypes.expressionOfInterestFailure,\n error: true,\n payload: {\n error,\n },\n });\n \n const actions = {\n expressInterest,\n sendExpressionOfInterest,\n expressionOfInterestSuccess,\n expressionOfInterestFailure,\n };\n \n export { actionTypes, actions };\n ","const actionTypes = {\n showExpiredSession: 'EXPIRED_SESSION_POPUP',\n refreshSession: 'EXPIRED_SESSION_REFRESH',\n expiredSessionSuccess: 'EXPIRED_SESSION_SUCCESS',\n expiredSessionFailure: 'EXPIRED_SESSION_FAILURE',\n};\n\nconst actions = {\n showExpiredSession: () => ({\n type: actionTypes.showExpiredSession,\n }),\n refreshSession: (email, password) => ({\n type: actionTypes.refreshSession,\n payload: { email, password },\n }),\n expiredSessionSuccess: () => ({\n type: actionTypes.expiredSessionSuccess,\n }),\n expiredSessionFailure: () => ({\n type: actionTypes.expiredSessionFailure,\n error: true,\n }),\n};\n\nexport { actions, actionTypes };\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"outerApp\":\"app_outerApp__KMaR_\",\"app\":\"app_app__2BJyT\",\"shrink\":\"app_shrink__13zD4\",\"content\":\"app_content__-l05y\",\"contentInner\":\"app_contentInner__320SP\",\"enter\":\"app_enter__CVFIU\",\"enterActive\":\"app_enterActive__3uUKr\",\"leave\":\"app_leave__3pQuH\",\"leaveActive\":\"app_leaveActive__1qyrH\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"buttonIcon\":\"prescriptions_buttonIcon__2l4bV\",\"textButtonIcon\":\"prescriptions_textButtonIcon__25TJK\",\"container\":\"prescriptions_container__1bH4b\",\"inner\":\"prescriptions_inner__19nR6\",\"enter\":\"prescriptions_enter__1PISk\",\"enterActive\":\"prescriptions_enterActive__2Jjs5\",\"leave\":\"prescriptions_leave__1js64\",\"leaveActive\":\"prescriptions_leaveActive__2PibR\",\"ctaButton\":\"prescriptions_ctaButton__2DrHQ\",\"ctaButtonCard\":\"prescriptions_ctaButtonCard__18g3g\",\"mainShellApp\":\"prescriptions_mainShellApp__1aebw\",\"mainShellHeader\":\"prescriptions_mainShellHeader__23aHO\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"pickUpLocationDesktop_container__2uJIc\",\"spinner\":\"pickUpLocationDesktop_spinner__12pBo\",\"pickupMessage\":\"pickUpLocationDesktop_pickupMessage__2U76H\",\"reasonForCost\":\"pickUpLocationDesktop_reasonForCost__2wjtR\",\"heading\":\"pickUpLocationDesktop_heading__34lwm\",\"optionsOuter\":\"pickUpLocationDesktop_optionsOuter__2tJUB\",\"addPharmacy\":\"pickUpLocationDesktop_addPharmacy__2kCME button_button__2n_ir\",\"plus\":\"pickUpLocationDesktop_plus__3OHEK\",\"buttons\":\"pickUpLocationDesktop_buttons__1HR0n\",\"cta\":\"pickUpLocationDesktop_cta__1cBZM\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"heading\":\"payment_heading__fSCKH\",\"backArrow\":\"payment_backArrow__112pc\",\"container\":\"payment_container__iix34\",\"spinner\":\"payment_spinner__2TVW0\",\"option\":\"payment_option__2aJof\",\"selectedOption\":\"payment_selectedOption__2ad68\",\"iconContainer\":\"payment_iconContainer__W6j3j\",\"cardNumber\":\"payment_cardNumber__3i_Bu\",\"card\":\"payment_card__3wDTW\",\"cash\":\"payment_cash__EPL29\",\"selectedIcon\":\"payment_selectedIcon__2YxxO\",\"details\":\"payment_details___77gO\",\"title\":\"payment_title__199HO\",\"radio\":\"payment_radio__3nzab\",\"noCardOption\":\"payment_noCardOption__wnCAZ payment_option__2aJof\",\"noCardIcon\":\"payment_noCardIcon__2LERN payment_card__3wDTW\",\"noCardTitle\":\"payment_noCardTitle__3xckT\",\"addCardOption\":\"payment_addCardOption__3BEvk payment_option__2aJof\",\"addCardIconContainer\":\"payment_addCardIconContainer__3I4T5\",\"cross\":\"payment_cross__3R2Em\",\"payAtPractice\":\"payment_payAtPractice__3_JLs payment_title__199HO\",\"expiryDate\":\"payment_expiryDate__sYtx5\",\"buttons\":\"payment_buttons__agDEP\",\"addPaymentButton\":\"payment_addPaymentButton__1aQuR button_button__2n_ir\",\"plus\":\"payment_plus__3VD5q\",\"optionsOuter\":\"payment_optionsOuter__2Xf9O\",\"cta\":\"payment_cta__24W7k\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"header\":\"reason_header__3yhMk\",\"labelRed\":\"reason_labelRed__379N8\",\"textContainer\":\"reason_textContainer__36zAw\",\"feelingPage\":\"reason_feelingPage__1xcXq\",\"container\":\"reason_container__1OltD\",\"label\":\"reason_label__3Z_27\",\"labelSmall\":\"reason_labelSmall__33uIx\",\"formInnerContainer\":\"reason_formInnerContainer__Xk2lP\",\"footer\":\"reason_footer__3Hbhz\",\"navLinkLarge\":\"reason_navLinkLarge__s44ZU\",\"backwardArrow\":\"reason_backwardArrow__2-Db0\",\"forwardArrow\":\"reason_forwardArrow__h0CIU\",\"cta\":\"reason_cta__28C5Y\",\"hidden\":\"reason_hidden__3E7Q4\",\"shown\":\"reason_shown__J9l63\",\"formContainer\":\"reason_formContainer__17f6O\",\"headerTitle\":\"reason_headerTitle__3n2Yf\",\"feelingIcon\":\"reason_feelingIcon__1w6_i\",\"desktopLabel\":\"reason_desktopLabel__EjbQe\",\"bottomNote\":\"reason_bottomNote__3aRQM\",\"nextContainer\":\"reason_nextContainer__16vsR\",\"enter\":\"reason_enter__1Vci4\",\"enterActive\":\"reason_enterActive__2N7pq\",\"leave\":\"reason_leave__1QOrg\",\"leaveActive\":\"reason_leaveActive__2EP2r\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"recoverPin_container__1OXBd\",\"round\":\"recoverPin_round__3gU1H\",\"ctaButton\":\"recoverPin_ctaButton__1iXxm\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"page\":\"expiredSession_page__3kauI\",\"innerContainer\":\"expiredSession_innerContainer__3Qll4\",\"title\":\"expiredSession_title__3Jd-6\",\"text\":\"expiredSession_text__2EWxX\",\"kiwi\":\"expiredSession_kiwi__1N-ls\",\"loginButton\":\"expiredSession_loginButton__16RHu button_button__2n_ir\",\"enter\":\"expiredSession_enter__2INl8\",\"enterActive\":\"expiredSession_enterActive__3Plv7\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"confirmed_container__-4PXP\",\"tickContainer\":\"confirmed_tickContainer__364F1\",\"tickIcon\":\"confirmed_tickIcon__2Ux3N\",\"content\":\"confirmed_content__2LWkr\",\"enter\":\"confirmed_enter__30L2z\",\"enterActive\":\"confirmed_enterActive__2yBsb\",\"leave\":\"confirmed_leave__21_PY\",\"leaveActive\":\"confirmed_leaveActive__2Z_Gv\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"errorConfirming_container__26Pne\",\"iconContainer\":\"errorConfirming_iconContainer__VoJXn\",\"icon\":\"errorConfirming_icon__1jR8k\",\"content\":\"errorConfirming_content__3lyIH\",\"enter\":\"errorConfirming_enter__bm22u\",\"enterActive\":\"errorConfirming_enterActive__3LSOH\",\"leave\":\"errorConfirming_leave__1pdOw\",\"leaveActive\":\"errorConfirming_leaveActive__DZYB4\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"practice\":\"PolicyStep_practice__1gJOz\",\"warning\":\"PolicyStep_warning__2E6_i\",\"icon\":\"PolicyStep_icon__2Vn6N\",\"wrapper\":\"PolicyStep_wrapper__FU2hQ\",\"name\":\"PolicyStep_name__1mznT\",\"address\":\"PolicyStep_address__2T2lT\",\"policyTip\":\"PolicyStep_policyTip__3hTi0\",\"policyNote\":\"PolicyStep_policyNote__8xzOA\",\"buttonContainer\":\"PolicyStep_buttonContainer__2iDSX\",\"ok\":\"PolicyStep_ok__2euqp\",\"cancel\":\"PolicyStep_cancel__2RGWA\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"ServiceFilter_container__1hsdm\",\"title\":\"ServiceFilter_title__2XT5W\",\"details\":\"ServiceFilter_details__1wUNK\",\"name\":\"ServiceFilter_name__Xzsn3\",\"checkbox\":\"ServiceFilter_checkbox__1icrI\",\"selectedCheckbox\":\"ServiceFilter_selectedCheckbox__1kKhR\",\"pop\":\"ServiceFilter_pop__HC356\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"container\":\"DependantItem_container__3GykH\",\"nameRow\":\"DependantItem_nameRow___jkIp\",\"touch\":\"DependantItem_touch__Zau8x\",\"row\":\"DependantItem_row__1ymSN\",\"menu\":\"DependantItem_menu__2REl9\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"gradientColorRight\":\"linear-gradient(to right, #3CB9C0, #07a3c8)\",\"whiteColor\":\"#FFFFFF\",\"container\":\"DropdownField_container__1UMxY\",\"focus\":\"DropdownField_focus__142kM\",\"header\":\"DropdownField_header__1nPmx\",\"arrow\":\"DropdownField_arrow__GOwf7\",\"open\":\"DropdownField_open__2AHMp\",\"body\":\"DropdownField_body__3n_yd\",\"touch\":\"DropdownField_touch__28j97\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"mobileInput_container__3PyhJ\",\"text\":\"mobileInput_text__pR-Gh\",\"phone\":\"mobileInput_phone__2yDl9\",\"phoneContainer\":\"mobileInput_phoneContainer__Sjwdg\",\"inputContainer\":\"mobileInput_inputContainer__CRrhV\",\"label\":\"mobileInput_label__1BILO\",\"icon\":\"mobileInput_icon__9g0i2\",\"input\":\"mobileInput_input__qdk0p input_input__2YbVH input_input__2YbVH\",\"buttonContainer\":\"mobileInput_buttonContainer__2YNqP\",\"button\":\"mobileInput_button__31kD7\",\"cancel\":\"mobileInput_cancel__2CeH_ button_button__2n_ir\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"codeInput_container__1Tioa\",\"arrow\":\"codeInput_arrow__Hbq1q\",\"phoneContainer\":\"codeInput_phoneContainer__3W72T\",\"text\":\"codeInput_text__2ah4-\",\"input\":\"codeInput_input__2cOfm\",\"error\":\"codeInput_error__19D_h\",\"errorText\":\"codeInput_errorText__1QCyF\",\"spinnerContainer\":\"codeInput_spinnerContainer__1fg7s\",\"spinner\":\"codeInput_spinner__1cbUw\",\"phone\":\"codeInput_phone__28Hh7\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"cardHeading_container__3-FTR\",\"scriptIcon\":\"cardHeading_scriptIcon__1cx6J\",\"openMainDetails\":\"cardHeading_openMainDetails__3JRfW\",\"date\":\"cardHeading_date__2c2PC\",\"patient\":\"cardHeading_patient__1WrNY\",\"openPatient\":\"cardHeading_openPatient__2hg3A\",\"practice\":\"cardHeading_practice__1ccKf\",\"openPractice\":\"cardHeading_openPractice__2tXxR\",\"doctor\":\"cardHeading_doctor__ULQp0\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"success_container__2azYQ\",\"tickContainer\":\"success_tickContainer__ficc_\",\"tickIcon\":\"success_tickIcon__2wXGp\",\"content\":\"success_content__1JMaX\",\"enter\":\"success_enter__2Cuv4\",\"enterActive\":\"success_enterActive__25vH8\",\"leave\":\"success_leave__2ysSU\",\"leaveActive\":\"success_leaveActive__3pUjg\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"genericError_container__1Eq6W\",\"iconContainer\":\"genericError_iconContainer__PjMF-\",\"icon\":\"genericError_icon__ZyU22\",\"content\":\"genericError_content__1swOP\",\"enter\":\"genericError_enter__fFKon\",\"enterActive\":\"genericError_enterActive__2xECl\",\"leave\":\"genericError_leave__1LCiP\",\"leaveActive\":\"genericError_leaveActive__1XjEX\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"confirmed_container__sxQvd\",\"tickContainer\":\"confirmed_tickContainer__1-LsP\",\"tickIcon\":\"confirmed_tickIcon__2C0Yp\",\"content\":\"confirmed_content__36_xt\",\"enter\":\"confirmed_enter__1VzNj\",\"enterActive\":\"confirmed_enterActive__3aB6K\",\"leave\":\"confirmed_leave__n6wcq\",\"leaveActive\":\"confirmed_leaveActive__gB3vp\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"container\":\"connectionIssue_container__2KtWF\",\"secondText\":\"connectionIssue_secondText__-HfdV\",\"contactContainer\":\"connectionIssue_contactContainer__zlQYW\",\"buttonContainer\":\"connectionIssue_buttonContainer__35_QZ\",\"button\":\"connectionIssue_button__1T2i- button_button__2n_ir\",\"cancel\":\"connectionIssue_cancel__3pKCH connectionIssue_button__1T2i- button_button__2n_ir\",\"retry\":\"connectionIssue_retry__3tTVX connectionIssue_button__1T2i- button_button__2n_ir\",\"name\":\"connectionIssue_name__2imDr\",\"phone\":\"connectionIssue_phone__11whN\",\"icon\":\"connectionIssue_icon__eiJXL\",\"phoneLink\":\"connectionIssue_phoneLink__2NQpf\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"header\":\"questionnaire_header__3VFS-\",\"pageContainer\":\"questionnaire_pageContainer__119nt\",\"questionContainer\":\"questionnaire_questionContainer__3ldRs\",\"notUser\":\"questionnaire_notUser__3tJBc\",\"spinner\":\"questionnaire_spinner__3GxI5\",\"questionHeader\":\"questionnaire_questionHeader__3Ze5p\",\"cta\":\"questionnaire_cta__1b7__\",\"logoutText\":\"questionnaire_logoutText__1m3OR\",\"notUserText\":\"questionnaire_notUserText__2iFAp\",\"paragraphHeader\":\"questionnaire_paragraphHeader__10oor\"};","var _style, _path, _path2, _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgLogo = function SvgLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"Layer_1\",\n x: \"0px\",\n y: \"0px\",\n viewBox: \"0 0 129 48.4\",\n style: {\n enableBackground: \"new 0 0 129 48.4\"\n },\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _style || (_style = /*#__PURE__*/React.createElement(\"style\", {\n type: \"text/css\"\n }, \"\\n\\t.st0{fill:#FFFFFF;}\\n\")), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n className: \"st0\",\n d: \"M168.2,157.4\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M167.9,159.6\"\n })), _g || (_g = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30.4,0.2c0.8,0.2,1.6,0.3,2.1,0.9C33,1.7,33.1,2.4,32.9,3c-0.3,1-0.7,1.9-1,2.8c-0.4,1-0.7,2-1.1,2.9 c-0.8,2-1.5,3.9-2.3,5.9c-0.7,2-1.4,3.9-2.1,5.9c-1.3,3.9-2.2,7.9-3.2,11.9c-0.5,2-1,4-1.6,6c-0.5,1.9-1,3.9-1.7,5.8 c-0.6,1.5-1.6,3.2-3.2,3.8c-0.7,0.3-1.6,0.3-2.3,0.1c-0.9-0.2-1.4-0.7-1.8-1.5c-2-3.6-3.7-7.2-5.3-11C5.6,32.1,4,28.3,2.5,24.5 c-0.4-1-0.8-1.9-1.1-2.9C1,20.6-0.1,17,0.1,15.8s1-2.3,2.5-2.8s3.3,0.2,3.7,0.7s0.6,0.8,0.8,1.1c0.2,0.4,0.5,0.8,0.7,1.2 c0.5,0.8,0.9,1.7,1.2,2.6c0.8,1.8,1.5,3.7,2.2,5.5c0.8,2,1.6,3.9,2.4,5.8c0.4,0.9,1.1,2.6,1.2,2.6s0.7-2.3,1-3.5 c0.3-1.3,0.6-2.5,1-3.8c0.7-2.5,1.4-5,2.2-7.4c0.8-2.5,1.6-5,2.4-7.4c0.8-2.3,1.6-4.5,3-6.5c0.7-1,1.5-1.9,2.5-2.7 c0.5-0.4,1-0.7,1.5-0.9c0.3-0.1,0.6-0.2,0.9-0.2C29.7,0.2,30.1,0.2,30.4,0.2C30.7,0.3,30,0.2,30.4,0.2z\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M112.7,38c-0.9,1.3-1.9,2.7-3.1,3.8c-1.1,1-2.5,1.8-4,2.2c-1.4,0.4-3.1,0.6-4.5,0c-0.8-0.3-1.4-0.8-1.9-1.4 c-0.3-0.3-0.5-0.6-0.7-1c-0.2-0.4-0.3-0.7-0.6-1.1c-0.3,0.3-0.5,0.7-0.8,1.1c-0.3,0.4-0.6,0.7-0.9,1c-0.6,0.5-1.3,1-2.1,1.3 c-1.9,0.8-3.9,1.3-5.9,1.6c-2.1,0.3-4.2,0.2-6.4,0c-1.1-0.1-2.1-0.3-3.2-0.5c-0.8-0.2-1.6-0.3-2.2-0.9c-1.1-1-1.5-2.8-1.1-4.2 c0.2-0.8,0.6-1.5,1.2-2.1c0.3-0.3,0.6-0.6,1.1-0.6c0.5,0,0.9,0.3,1.4,0.5c1.9,0.8,3.9,1.6,6,1.7c1,0.1,4.5-0.5,4.1-1.1 c-0.4-0.6-5.4-1.9-7.5-2.4c-1.9-0.5-3.8-1-5.6-2c-0.8-0.4-1.5-0.9-2.1-1.5c-0.6-0.7-0.8-1.5-0.9-2.3c-0.1-1.9,0.8-3.7,2-5 c1.2-1.3,2.8-2.1,4.3-2.8c1.8-0.8,3.8-1.3,5.8-1.3c1,0,2.1,0.1,2.9,0.6c0.8,0.5,1.1,1.3,1.3,2.1c0.2,0.7,0.8,1.7,0.2,2.4 c-0.3,0.3-0.7,0.4-1,0.5c-0.5,0.1-1.1,0.2-1.6,0.4c-1.1,0.2-2.1,0.4-3.2,0.6c-0.5,0.1-1,0.2-1.5,0.3c-0.5,0.1-1.8,0.3-1.8,0.7 c0,0.4,1.8,1.1,2.2,1.3c0.9,0.4,1.9,0.7,2.9,0.9c2,0.5,4.1,1.1,6.1,1.7c1.7,0.5,3.4,1.1,4.7,2.4c0.3,0.3,0.5,0.6,0.8,0.9 c0.2,0.3,0.4,0.7,0.6,1c0.3-1.2,0.7-2.4,1.2-3.6c0.5-1.2,1.2-2.3,2-3.4c1.4-2.1,3.1-4,5.1-5.5c2.1-1.6,4.6-2.8,6.9-3.9 c0.6-0.3,1.2-0.6,1.8-0.9c0.5-0.3,1.1-0.6,1.7-0.7c1-0.2,2.1-0.2,2.9,0.6c0.7,0.8,0.9,2.1,1.1,3.1c0.2,1.4,0.5,2.7,0.7,4.1 c0.5,2.7,1,5.4,2,7.9c0.5,1.2,1,2.4,1.6,3.6c0.7,1.1,1.4,2.1,2.1,3.2c0.6,1,1.1,2.2,0.9,3.4c-0.1,0.5-0.4,0.9-0.7,1.2 c-0.5,0.4-1.1,0.6-1.7,0.7c-1.3,0.3-2.4-0.5-3.4-1.2c-0.9-0.7-3.4-4.7-3.9-5.9c-0.6-1.3-2-5.5-2.6-5.5 C115.2,33.8,113.7,36.6,112.7,38z M109.6,33c1.6-2.1,3.9-5.9,3.4-6.5s-3.4,1.8-5.6,4.7s-3,6.1-2.6,6.4 C105.3,37.9,108.1,35.1,109.6,33z\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M36.3,37.7c0.5,0.3,1,0.4,1.5,0.5c1.1,0.2,2.2,0.2,3.3,0c1.1-0.3,2.1-0.9,3-1.5c1-0.7,2-1.4,2.9-2.3 c0.9-0.9,3.6-3.4,3.8-3.6c0.3-0.4,0.2-0.9,0.2-1.3c0-1.3,0-2.6,0.1-3.9c0-0.8,0.2-1.6,0.8-2.1c0.7-0.7,1.8-0.6,2.7-0.4 c0.3,0.1,0.7,0.2,1,0.2c0.3,0.1,1.6,0.9,1.8,1.3c0.8-0.8,1.3-1.8,2-2.7c0.7-0.9,1.4-1.9,2.1-2.8c0.6-0.8,1.3-1.5,2.2-1.9 c0.8-0.4,1.8-0.5,2.6-0.3c0.8,0.1,1.5,0.5,1.9,1.2c0.2,0.5,4.4,19.5,4.6,20.7c0.2,1.2,0.5,2.3,0.7,3.4c0.2,1,0.5,2.1-0.2,2.9 c-0.6,0.7-1.9,0.7-2.7,0.6c-0.9-0.1-2-0.6-2.6-1.3c-0.6-0.8-0.9-1.9-1.2-2.9c-0.6-2.3-1-4.6-1.3-6.9c-0.3-2.4-0.9-8.4-1.5-8.5 c-0.5-0.1-2.5,4.2-3,5.1c-0.9,1.8-1.8,3.6-2.6,5.5c-0.8,1.8-1.4,3.7-2.3,5.4c-0.2,0.4-0.4,0.8-0.7,1.3c-0.2,0.4-0.4,0.7-0.9,0.9 c-0.4,0.1-0.9,0.1-1.3,0.1c-0.5,0-1.1,0-1.6,0c-0.8,0-1.4-0.4-1.6-1.2c-0.3-1-0.1-1.9,0.2-2.9c0-0.2,0.1-0.5,0.1-0.7 c0-0.1,0.2-0.5-0.1-0.5c-0.1,0-0.5,0.4-0.6,0.5c-0.2,0.2-0.4,0.3-0.6,0.5c-0.8,0.6-1.5,1.2-2.3,1.8c-1.6,1.1-3.2,1.9-5,2.6 c-1.8,0.7-3.7,0.9-5.7,0.7c-3.4-0.3-6.3-2.4-7.9-5.4c-0.4-0.8-0.7-1.7-1.4-2.4c-0.6-0.6-0.9-1.4-1.1-2.2c-0.1-0.4,0.1-0.8,0.2-1.2 c0.1-0.2,0.2-0.4,0.2-0.6c0-0.2,0-0.5,0-0.7c0-0.9,0.1-1.9,0.3-2.8c0.4-1.7,1.1-3.2,2-4.7c0.8-1.3,1.8-2.5,3-3.4 c2.6-2.2,6.5-3.4,9.7-1.9c1.5,0.7,2.6,2.2,3.2,3.7c0.7,1.7,0.9,3.4,0.4,5.1c0,0-0.6,1.8-1,2.6c-0.5,0.7-1,1.4-1.6,1.9 c-1.3,1.2-2.9,2-4.5,2.7c-0.8,0.3-1.6,0.5-2.4,0.9C35.4,36.9,35.8,37.4,36.3,37.7z M36.1,30.4c0.5-0.2,0.9-0.4,1.3-0.8 c0.7-0.7,1-1.7,1-2.6c0-1.1-0.7-2-1.8-2c-1.1,0-2,0.9-2.4,1.9c-0.5,1.3-0.4,2.8,0,4.2C35,30.9,35.5,30.7,36.1,30.4z\"\n }))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/logo.59ca9ca0.svg\";\nexport { ForwardRef as ReactComponent };","import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { CSSTransitionGroup } from 'react-transition-group';\nimport classnames from 'classnames';\n\nimport styles from './switcheroo.module.css';\n\nclass Switcheroo extends Component {\n static propTypes = {\n firstItem: PropTypes.node.isRequired,\n secondItem: PropTypes.node.isRequired,\n thirdItem: PropTypes.node,\n fourthItem: PropTypes.node,\n fifthItem: PropTypes.node,\n className: PropTypes.string,\n };\n constructor(props) {\n super(props);\n this.setItemToShow = this.setItemToShow.bind(this);\n }\n state = {\n lastShownItem: 0,\n itemToShow: 1,\n };\n setItemToShow(itemToShow, lastShownItem) {\n this.setState({ itemToShow });\n this.setState({ lastShownItem });\n }\n render() {\n const { itemToShow, lastShownItem } = this.state;\n return (\n lastShownItem,\n },\n {\n [styles.leaveRight]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow < lastShownItem,\n },\n { [styles.lastLeave]: itemToShow === 5 },\n ),\n leaveActive: classnames(\n { [styles.leaveActive]: itemToShow === 1 },\n {\n [styles.leaveLeftActive]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow > lastShownItem,\n },\n {\n [styles.leaveRightActive]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow < lastShownItem,\n },\n { [styles.lastLeaveActive]: itemToShow === 5 },\n ),\n enter: classnames(\n { [styles.enter]: itemToShow === 1 },\n {\n [styles.enterLeft]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow > lastShownItem,\n },\n {\n [styles.enterRight]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow < lastShownItem,\n },\n { [styles.lastEnter]: itemToShow === 5 },\n ),\n enterActive: classnames(\n { [styles.enterActive]: itemToShow === 1 },\n {\n [styles.enterLeftActive]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow > lastShownItem,\n },\n {\n [styles.enterRightActive]:\n itemToShow !== 1 &&\n itemToShow !== 5 &&\n itemToShow < lastShownItem,\n },\n { [styles.lastEnterActive]: itemToShow === 5 },\n /* eslint-enable max-len */\n ),\n }}\n transitionLeaveTimeout={300}\n transitionEnterTimeout={300}\n >\n {itemToShow === 1 ? this.props.firstItem : null}\n {itemToShow === 2 ? this.props.secondItem : null}\n {itemToShow === 3 ? this.props.thirdItem : null}\n {itemToShow === 4 ? this.props.fourthItem : null}\n {itemToShow === 5 ? this.props.fifthItem : null}\n \n );\n }\n}\n\nexport default Switcheroo;\nexport { styles };\n","module.exports = \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJEAAAB4CAYAAADykxBpAAAAAXNSR0IArs4c6QAADupJREFUeAHtXVtsHcUZnrWP7djHwXbJBedS7BSpDU3Uw0WoEEQDqRAU2hBVfehLSStAlVqVVJUol0r4hcBToaUvBamUlj7ShJbLC4FwlyjgFMolCiW0cRKXBGJiO7bjy/T/jjNnZ/ac3bN7dvacM7sz0mrn8s8/M/98/ueff2aPHZaRUNj12ma2wLcyxynQkAfOPPTi+xhzxih/N8Wf2Lft0o8p04YIEnAi0BpJWnj8te3MYXdT5wdCDmAv0f/QgimktIgstSAizTPAON9FQ4TmiR44f2Dfdy/7efSK2auRShAVdr1eYHzueQJQb6wp5Xw3a+kkrXTBWCw+Ka/ckrbxaQMQBOM4NzA+RWC0IUgCqQJRYddwL+PzWMLiaSBFYk6B7KpHlCybUCSQquWs8NfX9tLovqGM0JNY1dXBt567vDTuybl5/qcDR0tpD7mbdPi2fdsu2+1m2JiQQE5ETH8Xt/A8GEAY46p8B7vlK2tKw/1k+jQjEJXSvhHu3E9lFkQVBJSe5YyzoQrj05k1UHQX6OSYEl6pAFFxO19lGdMyXw6/VQuflDFJBYjIE31DfeaFjGwY7zYoEkgHiBy2WRlVoompOraV6EC0MU+JYV15S//Lrw3wdUs7lZ1XT3ubIrw+Sv/+8vVKHhJ/+XCUvzh6QqlbJFooesCtgS1JLCUgqrwr+2pfN9tIjycowGhrcZxLlvd4SBjbc/izsjybUVkCdQPR6OhofnZ29r7K3YiX++1/jMRjEKH2lcu6rv37oUNnR6gSinTNmjU7HMeZD0XcZER1A9HCwkInjf2nSYw/39rCJucXkmBdxvOcjtwllIlHd/gFMbQg0i3VsPwGu9rYv8ZnysixJO0fm1TyV3S28yvO6SstaVPzC/yp/x4rpQXxgZOnRNS+q0igbpqoSj9iFedbyzBQ5PfogSNlBRcvP4sRiErtjc/OsXv2HSylpUhZXZSty6uGuUSf2Wgqtvhf78VKWZ+wobujPg0Z1EoqQLTxrPpM7IalHaw7lwqRaYVoKiSysiPHMMFJhy1ndyXdhJH8UwEiSP7mLyZ7GgHj/ZvL80ZOctKdToVhDSGto0n+zspu9rf/TQTK7KOTU+xXb3xYojkV0jWQNEhLHTIwkhoQQfbfX3UWe4e2+gdPzfpOxWczs85Th47L5RV3YTLBTWt72MY6LJdymybFU7OcQegweu8672wG56OusGVZnm09Z6kudqnkU/WvUNeoOee5kZGRTV5+3d3dPyF3//e8+XHSE3MLbMfwf9iH49Nx2LBr+nvZ7ev7Y/GoVHl6evpmOgI6IJfRsceLJAcu55kSrxuI/AQyMTHxayrT/n3X+Ow8++3+o+yZIyf8mvbN7861sp99uZ99a7XrlPQlrqGAwHJhPp8frqFqU1ZJlU0kS3hpWyu7a8OaIhD+8O9P2PBnwQY36gI8167qZT/60kqG+jaEk0BqQSSGf0Ffnj148SA7OnWagDTJhk9MstFp1fAGzXlkOF+xovxKiOBj3/4SSD2IxND7O9tZ/+r2xJYo0U4W3/q2MVmUnh1zUQIWRBYIsSVgQRRbhJaBBZHFQGwJWBDFFqFlYMTuLJfL8dZWn+uLEeaQvMSc7npXdLC2tbXxlpaWimURmmCnT58m5zyPzSdKm42mNQJEBCBGQIotq/n5eUYgqsgHbeCJGwio9ANtRp5e1Dx0u5zVLDpbUUjAgkhIwr5rloAFUc2isxWFBFIDItghSdsi4A+7ygZVAqkA0dzcXHFUdMWi+E4CTOBJOy/F+E6iHXV6zEgZDyJoBtqa0w+9LgIIuy/dkwt+2HV1dLhflNDFslKbZkx1cr00GkQAEMADECGI7btI6xLbzMwMa29vL7GbmppSAFUqyGgkd+jQoWsaOXaa+HNrmXQAxquBMI5aeAWNHxpoyZIlJRIACmmh+UoFESIEwktJ7isjVNFNenjt2rXv6GIKD94zupjVwgdeZHmZCMtDBgsAhUeHQ9LbPnmyS1lYwtDXOAACM7KtfkevRnq1/0zt/wB90RGMXs4ggCQBJAsYRjWWtLgAknmmJW40iGDw4pE1EEClO2AJQxtC+6HNJNrR3e968TMWRJhIGNbyeRfsFzHRugQoNJDgizbgUhBpXe2YzCf+qWaDRo9lxauBZPtFV7fkXRm0D8AjA1dXOybzMRZEXqHXQzPUow3vuExIG7ucmSDcrPTRgigrM53gOC2IEhRuVlgH2kRdXV28p6cntlNscnKSnzx5MjafLEwKrukuW7YstqxoV8k//fTT2HzCyDwQRNgB6diJxHXQYUuNLX3cEOTbQRtB5WHbjttPXTKv5yYgEERhBZc0HfmDHPiENATfv0wCkW9ZxHZ18YnYbOPIrU3UONmnpmULotRMZeMGYkHUONmnpmULotRMZeMGYkHUONmnpmUjdmd0CMrJfxJ710NXOrjfLoxuK2r5VJtuLfp+qp0a1HgGYoQmiutn8ozZJjVLwAgQaR6zZadZAhZEmgWaRXYWRFmcdc1jTg2IcG016YCzNU3HL0l3ta78UwEifEwoX43VdWArzwR4yne6xR1vmSarceNBhG/BOjvdf9+JNG4e6NzRCVAKoEIj4QK/jhsOaQCe0SASX6OKiUBax8eFgh/e0D7QOjKAsHTW8sGlzDdNcSOcjZUEjomVJxKaAROtUwOhDfnrDqGB5M+qK/Uta3nGgkgGi1hadF/EktsAoNCOBVD5n4jRyxmGg6UFtkmS9okFUDlw5JxATQQj9fhx5V9dynVDx2GYJhGEBhIAwnKDR/6oUUe7XtsLwBU2kg7+Mg/w1iFzyKFeIRBEZFQmfi211oHC4JW/j0caj/zFaq285Xr4A5CXMABKdxtye6T1HPzxagixD6zD9iEQRGGZNIJOaB+07TWAdfZH1mr465aNeZ3tmMzLWBDJQpcNYDlfd1y34a67f43iZ7xh3SjB2XZdCVgQubKwsRolELickfrmZBPENtDI4OX0xOZT4xiNqkZLs5ZbnGS/+d7i1C2QQBDhTKqvL/6/9R4fH2eff/657r6nkh9cBytWrIg9Nuwijx07pvDJ79/Plnz0EcuNjV3Nb7/9edqR7KaDx0edoaExhTBiIhBEEXklRg5/kA5fU5DvBG3oMNCD2khMQFUYt9DYlu/ezdpcn99KGiyezWxmZojfeeeVzs6d+6qw8S02wiaC70T4geK8wcdPEjT5Wtog/r5t+LWdZH4FAHmb6yWN9DwBqeAtCJs2AkRhB2PpyiXQt2ePrIHKCRZzesnVv4sPDfX6EQTlWxAFScfwss6DBxkeJVx3HWM7dzJ2002MPKdukeMMsOnpITcjfMyCKLysjKPseekltc8A0KZNi3nr1jF2yy1quePcSgb3gJpZPWVBVF1GRlK0DA87uYkJt++Dgy6ARG5/P2NXXSVSi2/HGVIzqqeM2J3RgSSne9RNZbD6iZbcIpwObBvbVzrAzb3wgtrFLVvUtEhdfjljr7zCaJcmcm4kI/uBKLs1q4mE6NL0fvll5sh+OWghLF+VAv75jVjiRPnCwv0iGuZtQRRGSibR4BrJq6+qPfbTQoIK2kg1sjeTbbRZFFd7G7Gc4ehFvtODQZFnl5NzsOZlA8cCcAzGOdapdJwTh1+1yQpVTlqIdlku6fr1/lpIUEEbXX89Y48/LnLwvpuevYhUC6aAqOy2Io5k4lzNIA84h5eafiG3ZiDiaEGHJ73aJIUur6SFAI4w4aKLGCOfEhs7cwJC3mxoI+e++/ZWq57p5SyGIqsm18aUP/usqoUuvJDR4afbF4AMfiPxnDjhliHmXfYcJ5RtlFkQnTkCqVkLqdJvghQAUc0WOnKEsYcfdp8331Q7Dm3UqzitC6SNtqtE5anMgohEAZsq/o9jl8u0MTlYiuTg1UJyWVC8fPmDbRQYsgwiJ+hANlBqzVYILfTWW26vsNMqB4NbHhQ7/3zG4BIQwXEGqmmjLIMIWigdmsirheD3kf75scAD3R0qRQMjXttocafmWyXLIII9ZL5NRJfMyrQQ/D6VAo455LBqlZxy43BMlmujIZdAjWUZRKokTE2F1UKVxldJWwk6rzbC4azPVZHMguiMUW32cgYtJF/1gC3kp4UEOMK+oY3gqHRDLzkxd7hJNxbobKR/MeXQ41LXHmu6ZaNZjWpygDojIyOhJL386aeZdCNo0ZgO0i6huEpEMM7ff9/NWNRGD3jvZGdWExGIjN7idxw+zDrg9xEB/h34eXQGOCrhKnBDRW2UWRDRcmb0Fh/XXpXgtWGUQikhG8yyN1siUaJevo5zN235B2SazIIImogEYaRNlP/gA6ZcOKtVC4UBUbk2oj2tenEtsyCCJiIQNZ2tJv+F+8WXvv66WhTFsQha3K/GEzagTkeH/Ad3o6yNMguisPJrNroyLYTlCV7msAGGNw5iwzoewRd1Nm1S/+AkbZRlEBlnWOMbsjIt5LVZgsCE45EHH2TssccW3++9F0StlnkvrjGGa7QFEGUZRMYZ1p34BNp7+d7v2qsKgcUUTu3lC2u4Wx02LGojlXphYQgZmQURNmc0fnmdhzyaOnS//bbavyhaSK1ZW8qrjRxnK7zYmQUR3EQkSXWdr020damF7+ilb+kXz7aiaCH0EiAQ94Xg3Y4KwkraaGZme64uEmjORoQWMgJIOfplFSWoTkClyDcBENx2G2M4LsHhK9JRA4D43HNuLc4HsgwicncYgZ/ihLV5fiZGufbqTmm4WFQNJnP1As9xClkGEQxrWTxmxWUDuZ49r9BuZm0ikrtRW/yZ1atVqODYo8KEqkQJpJ58UmXK+V6cGP9Yza1vin7Sd5B+Tnht1FbpOzTcqMpHrUefGZ2i5zBpoVZ6ctT2PP0A+WBUPqCneqP07ZnHWKnOieq9Qc+p6pQqRf9DD93TMjv7hVIulhY4GsMcX5Qq1RgBYN991/2kSLDhfNAco0B0OsNvfscdN9DwdzWNCDj/DX2XtsOCqGlmJFxHipfmHeeRcNSJUj3q3HvvdrSQZZsoUQknxZz+8v9I28oL6CfynkiqjUC+nP+TyrcJAIHWaqJAiTV3YfHO8/R0gUCF310snmMl1OOPiW/xIRDjrYT/A89H3mtMow23AAAAAElFTkSuQmCC\"","var _defs, _g;\n\nvar _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar SvgBigTick = function SvgBigTick(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"1486 2368.025 73.106 57.885\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null)), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Symbol_10\",\n transform: \"translate(1334.535 2116)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group_4\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"noun_610548_cc\",\n transform: \"translate(122.345 217.175)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"group\",\n transform: \"translate(29.12 34.85)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"path\",\n d: \"M98.847,34.869A3.044,3.044,0,0,0,96.8,35.963L54.757,85.285l-20.5-19.12a3.045,3.045,0,1,0-4.186,4.423L52.9,91.9a3.044,3.044,0,0,0,4.423-.238L101.463,39.91a3.044,3.044,0,0,0-2.616-5.042Z\",\n transform: \"translate(-29.12 -34.85)\"\n })))))));\n};\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBigTick, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/bigTick.58d32f2d.svg\";\nexport { ForwardRef as ReactComponent };","import React, { PropsWithChildren } from 'react';\nimport styles from './index.module.scss';\nimport cn from 'classnames';\nimport CircleAvatar, { CircleAvatarProps } from '../CircleAvatar';\n\ntype AvatarProfileProps = {\n enableBottomLine?: boolean;\n className?: string;\n placeHolder: React.FunctionComponent>;\n} & CircleAvatarProps\n\nconst AvatarProfile = ({\n imgUrl, \n imgAlt,\n diameter,\n enableBottomLine, \n className,\n placeHolder,\n children}: PropsWithChildren) => {\n // const enableBottomLine = props.enableBottomLine === undefined ? false : props.enableBottomLine;\n return (\n