\r\n\r\n {section.linkLists?.length && section.linkLists.length > 0 \r\n ? section.linkLists.filter(link => link.links && link.links?.length > 0).map(link =>
\r\n {link.heading &&
{link.heading}
}\r\n
\r\n {link.links?.map((linkItem, index) =>\r\n \r\n )}\r\n
\r\n
\r\n )\r\n : null\r\n }\r\n\r\n {section.azureFilesList?.length && section.azureFilesList.length > 0\r\n ?
\r\n
{t('section.documents')}
\r\n
\r\n {section.azureFilesList.map((file, index) => <>\r\n \r\n >\r\n )}\r\n
\r\n
\r\n : null\r\n }\r\n\r\n {anyCompanyHasAgreements && section.showCollectiveAgreements && organization &&
}>);\r\n}\r\n\r\nfunction Section({section, myRef}: SectionProps) {\r\n return (\r\n
\r\n \r\n {section.sections && section.sections.map((section, index) => {\r\n return ();\r\n })}\r\n
\r\n );\r\n}\r\n\r\nexport default Section;","import React, {useContext} from \"react\";\r\nimport {chapterContext} from \"../../pages/Chapter/ChapterPage\";\r\nimport {useChapterData} from \"../../api/useChapterData\";\r\nimport SideMenu from \"./SideMenu/SideMenu\";\r\nimport Section from \"./Section/Section\";\r\nimport Updates from \"./Updates/Updates\";\r\nimport styles from './Chapter.module.css'\r\n\r\ntype ChapterProps = {\r\n chapterId: string;\r\n}\r\n\r\nfunction Chapter({chapterId}: ChapterProps) {\r\n const refs = useContext(chapterContext);\r\n const {sections} = useChapterData(chapterId);\r\n\r\n return (\r\n
\r\n \r\n \r\n
\r\n \r\n {sections.map((section, index) => refs.current[index] = el}\r\n />)}\r\n
\r\n \r\n );\r\n}\r\n\r\nexport default Chapter;","import {useContext, useEffect} from \"react\";\r\nimport {useLocation} from \"react-router-dom\";\r\nimport {chapterContext} from \"../../pages/Chapter/ChapterPage\";\r\n\r\nexport default function ScrollTo() {\r\n const {pathname, hash} = useLocation();\r\n const refs = useContext(chapterContext);\r\n\r\n useEffect(() => {\r\n if (!hash) {\r\n window.scrollTo(0, 0);\r\n return;\r\n }\r\n\r\n const target = refs.current.find((el: HTMLElement) => `#${el.id}` === hash);\r\n if (!target) return;\r\n\r\n const pos = target.style.position;\r\n const top = target.style.top;\r\n target.style.position = 'relative';\r\n target.style.top = '-100px';\r\n target.scrollIntoView({behavior: 'smooth', block: 'start'});\r\n target.style.top = top;\r\n target.style.position = pos;\r\n\r\n }, [pathname, hash, refs?.current]);\r\n\r\n return null;\r\n}","import React from \"react\";\r\nimport {useTranslation} from \"react-i18next\";\r\nimport styles from './BackToTop.module.css';\r\n\r\nfunction BackToTop() {\r\n const {t} = useTranslation('common');\r\n\r\n const onClick = () => {\r\n window.scrollTo({top: 0, behavior: 'smooth'});\r\n }\r\n\r\n return (\r\n
\r\n );\r\n}\r\n\r\nexport default BackToTop;","import {useParams} from \"react-router\";\r\nimport {Link} from \"react-router-dom\";\r\nimport {useChapterData} from \"../../../api/useChapterData\";\r\nimport styles from './BottomNav.module.css';\r\n\r\nfunction BottomNav() {\r\n const {handbookId} = useParams<{ handbookId: string }>();\r\n const {chapterId} = useParams<{ chapterId: string }>();\r\n const {next, previous} = useChapterData(chapterId);\r\n\r\n return (\r\n
\r\n
\r\n
\r\n {previous && previous.link && \r\n {previous.title}\r\n }\r\n
\r\n
\r\n {next && next.link && \r\n {next.title}\r\n }\r\n
\r\n
\r\n
\r\n );\r\n}\r\n\r\nexport default BottomNav;","import React, {createContext, useEffect, useRef} from \"react\";\r\nimport {useParams} from \"react-router\";\r\nimport {useHandbookData} from \"../../api/useHandbookData\";\r\nimport {useChapterData} from \"../../api/useChapterData\";\r\nimport Banner from \"../../components/Chapters/Banner/Banner\";\r\nimport Chapter from \"../../components/Chapters/Chapter\";\r\nimport Footer from \"../../components/Layout/Footer/Footer\";\r\nimport Header, {HeaderType} from \"../../components/Layout/Header/Header\";\r\nimport ScrollTo from \"../../components/ScrollTo/ScrollTo\";\r\nimport BackToTop from \"../../components/Chapters/BackToTop/BackToTop\";\r\nimport BottomNav from \"../../components/Layout/BottomNav/BottomNav\";\r\nimport styles from \"./ChapterPage.module.css\";\r\n\r\nexport const chapterContext = createContext(undefined as any);\r\n\r\nfunction ChapterPage() {\r\n const {chapterId} = useParams
();\r\n const {handbook} = useHandbookData();\r\n const {chapter, chapter: {sections = []}} = useChapterData(chapterId);\r\n const sectionRefs = useRef([]);\r\n\r\n useEffect(() => {\r\n sectionRefs.current = sectionRefs.current.slice(0, sections?.length);\r\n }, [sections]);\r\n\r\n return (\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n );\r\n}\r\n\r\nexport default ChapterPage;","import React, {useContext} from \"react\";\r\nimport {useTranslation} from \"react-i18next\";\r\nimport {handbookIdContext} from \"../../api/ProvideHandbookInfo\";\r\nimport styles from \"./ErrorPage.module.css\";\r\n\r\ntype ErrorPageProps = {\r\n errorCode?: number;\r\n}\r\n\r\nfunction ErrorPage({errorCode = 404}: ErrorPageProps) {\r\n\r\n const {t} = useTranslation('common');\r\n const {theme} = useContext(handbookIdContext);\r\n\r\n return (\r\n
\r\n
\r\n
\r\n
{t('error.message')}
\r\n
{t('error.info')}
\r\n
\r\n
\r\n
\r\n )\r\n}\r\n\r\nexport default ErrorPage;","import React from \"react\";\r\nimport {Route} from \"react-router-dom\";\r\nimport {ProvideHandbookInfo} from \"../api/ProvideHandbookInfo\";\r\n\r\nfunction PublicRoute({children, ...rest}: { children: JSX.Element, path: string, exact?: boolean }) {\r\n return (\r\n {\r\n return (\r\n \r\n {children}\r\n \r\n )\r\n }}/>\r\n );\r\n}\r\n\r\nexport default PublicRoute;","import React, {ReactNode} from \"react\";\r\nimport {History} from \"history\";\r\nimport {AppInsightsContext, ReactPlugin} from \"@microsoft/applicationinsights-react-js\";\r\nimport {ApplicationInsights} from \"@microsoft/applicationinsights-web\";\r\n\r\ntype AppInsightsProviderProps = {\r\n children?: ReactNode;\r\n history: History;\r\n}\r\n\r\nconst initAppInsights = (history: History) => {\r\n const reactPlugin = new ReactPlugin();\r\n const ai = new ApplicationInsights({\r\n config: {\r\n instrumentationKey: process.env.REACT_APP_AI_INSTRUMENTATION_KEY,\r\n extensions: [ reactPlugin ],\r\n extensionConfig: {\r\n [reactPlugin.identifier]: { history: history }\r\n },\r\n enableAutoRouteTracking: true,\r\n disableFetchTracking: false,\r\n enableCorsCorrelation: true,\r\n enableRequestHeaderTracking: true,\r\n enableResponseHeaderTracking: true,\r\n enableUnhandledPromiseRejectionTracking: true\r\n }\r\n });\r\n ai.loadAppInsights();\r\n ai.trackPageView({\r\n name: history.location.pathname,\r\n uri: history.location.pathname\r\n });\r\n ai.trackEvent({\r\n name: 'AppStarted',\r\n properties: { 'AppName': 'DigitalHandbookEditor' }\r\n });\r\n\r\n return {appInsights: ai.appInsights, reactPlugin};\r\n}\r\n\r\nfunction AppInsightsProvider({children, history}: AppInsightsProviderProps) {\r\n\r\n const {reactPlugin} = initAppInsights(history)\r\n\r\n return (\r\n \r\n {children}\r\n \r\n );\r\n}\r\n\r\nexport default AppInsightsProvider;","import React from \"react\";\r\nimport {\r\n Router,\r\n Switch,\r\n Redirect,\r\n} from \"react-router-dom\";\r\nimport {ProvideAuth} from \"./auth/ProvideAuth\";\r\nimport PrivateRoute from \"./auth/PrivateRoute\";\r\nimport LoginPage from \"./pages/Login/LoginPage\";\r\nimport HandbookPage from './pages/Handbook/HandbookPage';\r\nimport ChapterPage from \"./pages/Chapter/ChapterPage\";\r\nimport ErrorPage from \"./pages/ErrorPage/ErrorPage\";\r\nimport PublicRoute from \"./auth/PublicRoute\";\r\nimport {createBrowserHistory} from \"history\";\r\nimport AppInsightsProvider from \"./components/AppInsights/AppInsightsProvider\";\r\n\r\nfunction App() {\r\n\r\n const browserHistory = createBrowserHistory({ basename: process.env.PUBLIC_URL });\r\n \r\n return (\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n );\r\n}\r\n\r\nexport default App;","import { ReportHandler } from 'web-vitals';\r\n\r\nconst reportWebVitals = (onPerfEntry?: ReportHandler) => {\r\n if (onPerfEntry && onPerfEntry instanceof Function) {\r\n import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {\r\n getCLS(onPerfEntry);\r\n getFID(onPerfEntry);\r\n getFCP(onPerfEntry);\r\n getLCP(onPerfEntry);\r\n getTTFB(onPerfEntry);\r\n });\r\n }\r\n};\r\n\r\nexport default reportWebVitals;\r\n","import React from 'react';\r\nimport ReactDOM from 'react-dom';\r\nimport App from './App';\r\nimport reportWebVitals from './reportWebVitals';\r\nimport {I18nextProvider} from \"react-i18next\";\r\nimport i18next from \"i18next\";\r\nimport {languages} from \"./translations/languages\";\r\nimport common_en from \"./translations/en/common.json\";\r\nimport common_no from \"./translations/no/common.json\";\r\nimport './static/styles/index.css';\r\n\r\ni18next\r\n .init({\r\n detection: {\r\n htmlTag: document.documentElement,\r\n },\r\n interpolation: {escapeValue: false},\r\n lng: languages.default,\r\n resources: {\r\n en: {\r\n common: common_en\r\n },\r\n no: {\r\n common: common_no\r\n },\r\n },\r\n });\r\n\r\nReactDOM.render(\r\n \r\n \r\n \r\n \r\n ,\r\n document.getElementById('root')\r\n);\r\n\r\n// If you want to start measuring performance in your app, pass a function\r\n// to log results (for example: reportWebVitals(console.log))\r\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\r\nreportWebVitals();\r\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"LoginPage_content__1o834\",\"container\":\"LoginPage_container__37qqP\",\"text\":\"LoginPage_text__2bgsg\",\"heading\":\"LoginPage_heading__1Lw0k\",\"background\":\"LoginPage_background__2DT_w\",\"light\":\"LoginPage_light__dEYlR\",\"dark\":\"LoginPage_dark__3Vha2\",\"separator\":\"LoginPage_separator__2Edxf\",\"subheading\":\"LoginPage_subheading__23VRP\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Hero_content__3Q5ru\",\"text\":\"Hero_text__2wRfu\",\"container\":\"Hero_container__2_Hpk\",\"heading\":\"Hero_heading__3uiQf\",\"subheading\":\"Hero_subheading__2D89m\",\"background\":\"Hero_background__368UU\",\"media\":\"Hero_media__1usIa\",\"demo\":\"Hero_demo__33z7J\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Search_content__2e-Jn\",\"isSticky\":\"Search_isSticky__Yk6-M\",\"open\":\"Search_open__22Rgw\",\"inputWrapper\":\"Search_inputWrapper__1ngNa\",\"inputWrapperInner\":\"Search_inputWrapperInner__3sI9M\",\"wrapper\":\"Search_wrapper__1JlVr\",\"up\":\"Search_up__2DfGf\",\"expanded\":\"Search_expanded__h9r8W\",\"heading\":\"Search_heading__1jDyg\",\"background\":\"Search_background__2gEPa\",\"fadeIn\":\"Search_fadeIn__25_LF\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Banner_content__36Kld\",\"grid\":\"Banner_grid__l8p69\",\"text\":\"Banner_text__19D8-\",\"heading\":\"Banner_heading__Pwdl7\",\"img\":\"Banner_img__1XP6Y\",\"media\":\"Banner_media__1BU6S\",\"trapezoid\":\"Banner_trapezoid__3K9Y7\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"ErrorPage_content__3NZTD\",\"container\":\"ErrorPage_container__3yiQB\",\"text\":\"ErrorPage_text__nDM7r\",\"heading\":\"ErrorPage_heading__1ovAV\",\"background\":\"ErrorPage_background__uU8Cl\",\"light\":\"ErrorPage_light__3bT5d\",\"dark\":\"ErrorPage_dark__IPCGu\",\"errorCode\":\"ErrorPage_errorCode__PEujf\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"AccordionItem_content__1Ae4Q\",\"submenu\":\"AccordionItem_submenu__Yp34e\",\"button\":\"AccordionItem_button__YnX_v\",\"up\":\"AccordionItem_up__hRK4z\",\"description\":\"AccordionItem_description__1hw_N\",\"current\":\"AccordionItem_current__32Qij\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Section_content__2M0rV\",\"agreementLink\":\"Section_agreementLink__1t3jT\",\"document\":\"Section_document__W0vLV\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"SearchResults_content__2n0cI\",\"fadeIn\":\"SearchResults_fadeIn__3gQbT\",\"list\":\"SearchResults_list__3s-P9\",\"listItem\":\"SearchResults_listItem__3LTYi\",\"info\":\"SearchResults_info__32YW1\",\"resultsTitle\":\"SearchResults_resultsTitle__1qVIM\",\"highlighted\":\"SearchResults_highlighted__28R-z\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"BottomNav_content__4D3yz\",\"wrapper\":\"BottomNav_wrapper__1UB2H\",\"column\":\"BottomNav_column__2hdi3\",\"next\":\"BottomNav_next__19DBL\",\"prev\":\"BottomNav_prev__1Pw0p\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"ChapterListItem_content__sYqWN\",\"inner\":\"ChapterListItem_inner__2cV6t\",\"image\":\"ChapterListItem_image__1smow\",\"text\":\"ChapterListItem_text__P-Lga\",\"button\":\"ChapterListItem_button__1GbaC\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Hamburger_content__2Uudn\",\"svg\":\"Hamburger_svg__2GXHd\",\"open\":\"Hamburger_open__1xmpL\",\"path1\":\"Hamburger_path1__1_dQO\",\"path3\":\"Hamburger_path3__1HN1d\",\"close\":\"Hamburger_close__2UmcL\",\"path1close\":\"Hamburger_path1close__3TCjW\",\"path3close\":\"Hamburger_path3close__1uZn-\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Nav_content__1DTNy\",\"open\":\"Nav_open__LmD74\",\"heading\":\"Nav_heading__2iB5V\",\"accountInfo\":\"Nav_accountInfo__2kBJJ\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"AccordionSubItem_content__23Tjj\",\"button\":\"AccordionSubItem_button__3Qr0D\",\"current\":\"AccordionSubItem_current__24dAp\",\"circle\":\"AccordionSubItem_circle__31VBb\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Button_content__1-ejB\",\"back\":\"Button_back__3eWNu\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"title\":\"LoginForm_title__2aC3e\",\"form\":\"LoginForm_form__1-Z-9\",\"status\":\"LoginForm_status__sBQfd\",\"button\":\"LoginForm_button__FtM6M\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Settings_content__1vnef\",\"open\":\"Settings_open__21cOn\",\"button\":\"Settings_button__25IOb\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"HeaderButton_content__1CXiy\",\"text\":\"HeaderButton_text__3mRKP\",\"search\":\"HeaderButton_search__370tY\",\"close\":\"HeaderButton_close__sO1H9\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"ChaptersList_content__1hpxf\",\"wrapper\":\"ChaptersList_wrapper__18bzR\",\"updated\":\"ChaptersList_updated__Iqj4_\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Chapter_content__3EI-E\",\"menu\":\"Chapter_menu__2IvuG\",\"text\":\"Chapter_text__2P0ig\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Spinner_content__1T6ju\",\"spinner\":\"Spinner_spinner__2WfaE\",\"lds-ring\":\"Spinner_lds-ring__3EWXi\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"SearchInput_content__2SX7G\",\"button\":\"SearchInput_button__1dSwp\",\"input\":\"SearchInput_input__1jl2v\",\"reset\":\"SearchInput_reset__UaCAD\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"content\":\"Account_content__39Snq\",\"button\":\"Account_button__1xLP3\"};"],"sourceRoot":""}