├── .dockerignore ├── .editorconfig ├── .env.template ├── .eslintrc.json ├── .gcloudignore ├── .github └── workflows │ ├── google-react-pr.yml │ └── google-react.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── .storybook ├── decorators │ └── provider.js ├── main.js ├── preview-head.html └── preview.js ├── .vscode ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── Safe-Places-Server.md ├── a11y-errors.html ├── a11y-tests └── index.js ├── base └── deployment-react.yml ├── changelog.md ├── cucumber.conf.js ├── deployment-configs └── gcp │ └── cloudbuild.yaml ├── features ├── login.feature └── step-definitions │ └── steps.js ├── healthcare-authorities.yaml ├── jsconfig.json ├── kustomization.yaml ├── nightwatch.conf.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── Router.js ├── assets │ ├── images │ │ ├── ellipse.png │ │ ├── home-page-graphic.png │ │ ├── logo.png │ │ └── pathcheck.png │ └── polygion-tut.webm ├── axiosInterceptors.js ├── components │ ├── _global │ │ ├── Header │ │ │ ├── Header.test.js │ │ │ ├── header.module.scss │ │ │ ├── header.stories.js │ │ │ └── index.js │ │ ├── Logo │ │ │ ├── Logo.test.js │ │ │ ├── index.js │ │ │ └── logo.module.scss │ │ ├── Modal │ │ │ ├── ModalSwitch │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── NProgress │ │ │ ├── Bar.jsx │ │ │ ├── Container.jsx │ │ │ ├── Spinner.jsx │ │ │ ├── index.jsx │ │ │ └── nprogress.css │ │ ├── Navigation │ │ │ ├── index.js │ │ │ └── navigation.module.scss │ │ ├── Notifications │ │ │ ├── Notification.module.scss │ │ │ └── index.js │ │ └── errorBoundary.jsx │ └── _shared │ │ ├── Button │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── Checkbox │ │ ├── Checkbox.js │ │ └── styles.module.scss │ │ ├── ControlledCheckbox │ │ ├── Checkbox.js │ │ └── styles.module.scss │ │ ├── DateInput │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── Dialog │ │ ├── Dialog.module.scss │ │ └── index.js │ │ ├── Forms │ │ └── FormWrapper │ │ │ ├── FormWrapper.jsx │ │ │ ├── FormWrapper.module.scss │ │ │ └── index.js │ │ ├── InputWrapper │ │ └── index.js │ │ ├── Loader │ │ ├── Loader.module.scss │ │ ├── Loader.stories.js │ │ └── index.js │ │ ├── LocationSearch │ │ ├── LocationSearch.module.scss │ │ ├── LocationSuggestions.js │ │ └── index.js │ │ ├── Logo │ │ ├── index.js │ │ └── logo.module.scss │ │ ├── Map │ │ ├── DrawEditor │ │ │ ├── DrawEditor.module.scss │ │ │ ├── _parts │ │ │ │ ├── ActionsMenu.jsx │ │ │ │ ├── EditorNav.jsx │ │ │ │ └── HelpBlock.jsx │ │ │ └── index.js │ │ ├── LocationSelect │ │ │ ├── index.js │ │ │ └── locationSelect.module.scss │ │ ├── MapControls.jsx │ │ ├── MapInner.jsx │ │ ├── MapSource.jsx │ │ ├── Marker │ │ │ ├── Marker.module.scss │ │ │ └── index.js │ │ ├── SatelliteToggle.jsx │ │ ├── SelectionLocationHelp │ │ │ ├── SelectionLocationHelp.module.scss │ │ │ └── index.js │ │ ├── _data │ │ │ └── test.json │ │ ├── _helpers.js │ │ ├── getBounds.js │ │ ├── index.js │ │ ├── styles.module.scss │ │ ├── styles │ │ │ ├── map.json │ │ │ └── satellite.json │ │ └── trackPath.js │ │ ├── PasswordInput │ │ ├── PasswordInput.jsx │ │ ├── PasswordInput.module.scss │ │ └── index.js │ │ ├── PasswordStrengthIndicator │ │ ├── PasswordStrengthIndicator.jsx │ │ ├── PasswordStrengthIndicator.module.scss │ │ ├── _parts │ │ │ └── ListItem.jsx │ │ └── index.js │ │ ├── PointContextMenu │ │ ├── Body │ │ │ └── Body.jsx │ │ ├── Header │ │ │ └── Header.jsx │ │ ├── LabelAs │ │ │ ├── LabelAs.jsx │ │ │ ├── LabelAs.module.scss │ │ │ └── index.js │ │ ├── PointContextMenu.module.scss │ │ └── index.js │ │ ├── PointEditor │ │ ├── PointEditor.module.scss │ │ ├── PointEditor.stories.js │ │ ├── _helpers.js │ │ └── index.js │ │ ├── RecordsTable │ │ ├── RecordsTablePublishing │ │ │ ├── Record │ │ │ │ ├── index.js │ │ │ │ └── record.module.scss │ │ │ └── index.js │ │ ├── RecordsTableTrace │ │ │ ├── Record │ │ │ │ ├── index.js │ │ │ │ └── record.module.scss │ │ │ └── index.js │ │ ├── index.js │ │ ├── records.stories.js │ │ ├── recordsTable.module.scss │ │ └── useSortBy.js │ │ ├── RedactorTools │ │ ├── Filters │ │ │ ├── DateSelector │ │ │ │ ├── DateButton │ │ │ │ │ ├── dateButton.module.scss │ │ │ │ │ └── index.js │ │ │ │ ├── DateSelector.stories.js │ │ │ │ ├── SingleDateToggle │ │ │ │ │ ├── SingleDateToggle.module.scss │ │ │ │ │ └── index.js │ │ │ │ ├── dateSelector.module.scss │ │ │ │ └── index.js │ │ │ ├── DurationFilter │ │ │ │ ├── DurationFilter.module.scss │ │ │ │ ├── DurationFilter.stories.js │ │ │ │ └── index.js │ │ │ ├── FilterData │ │ │ │ ├── FilterData.module.scss │ │ │ │ ├── FilterData.stories.js │ │ │ │ └── index.js │ │ │ ├── Filters.jsx │ │ │ ├── RecordIdsFilter │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── EditRecordModal.js │ │ │ ├── header.module.scss │ │ │ └── index.js │ │ ├── PointsInfo │ │ │ ├── PointsInfo.jsx │ │ │ ├── PointsInfo.module.scss │ │ │ └── index.js │ │ ├── RedactorTools.module.scss │ │ └── index.js │ │ ├── Select │ │ ├── Select.jsx │ │ ├── Select.module.scss │ │ └── Select.stories.js │ │ ├── SelectedData │ │ ├── SelectedData.module.scss │ │ ├── SelectedData.stories.js │ │ ├── SelectedDataContextMenu │ │ │ └── index.js │ │ ├── SelectedDataList │ │ │ ├── SelectedDataGroup │ │ │ │ ├── SelectedDataGroup.jsx │ │ │ │ ├── index.js │ │ │ │ └── selectedDataGroup.module.scss │ │ │ ├── SelectedDataItem │ │ │ │ ├── SelectedDataItem.jsx │ │ │ │ ├── SelectedDataItem.module.scss │ │ │ │ ├── SelectedDataItem.stories.js │ │ │ │ ├── _parts │ │ │ │ │ ├── SelectedDataItemActions.jsx │ │ │ │ │ └── SelectedDataItemInfo.jsx │ │ │ │ └── index.js │ │ │ └── SelectedDataList.jsx │ │ └── index.js │ │ ├── Sidebar │ │ ├── SidebarHeader │ │ │ ├── index.js │ │ │ └── sidebarHeader.module.scss │ │ └── SidebarWrapper │ │ │ ├── index.js │ │ │ └── sidebarWrapper.module.scss │ │ ├── TimeInput │ │ ├── index.js │ │ └── styles.module.scss │ │ ├── ToggleControl │ │ ├── Toggle.module.scss │ │ └── index.js │ │ ├── Tooltip │ │ ├── index.js │ │ └── styles.module.scss │ │ └── VideoPlayer │ │ ├── VideoPlayer.jsx │ │ ├── VideoPlayer.module.scss │ │ └── index.js ├── ducks │ ├── application │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── selectors.js │ │ └── types.js │ ├── auth │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── types.js │ ├── cases │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── types.js │ ├── index.js │ ├── map │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ └── types.js │ ├── points │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── types.js │ ├── registration │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── types.js │ ├── tags │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── selectors.js │ │ └── types.js │ ├── tooltips │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── selectors.js │ │ └── types.js │ └── users │ │ ├── actions.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── types.js ├── helpers │ ├── dateTime.js │ ├── emailValidator.js │ ├── export.js │ ├── getListHeight.js │ ├── pocTransformerLib.js │ └── pointsUtils.js ├── hooks │ ├── useCloseOnEscape.js │ ├── useOnClickOutside.js │ └── useValidatePassword.js ├── index.js ├── sagas.js ├── scss │ ├── defaults.scss │ ├── global.scss │ ├── palette.scss │ └── ui.scss ├── serviceWorker.js ├── setupTests.js ├── store.js ├── types │ ├── applicationStates.js │ └── sortBy.js └── views │ ├── Authentication │ ├── ForgotPassword │ │ ├── ForgotPassword.jsx │ │ └── index.js │ ├── Login │ │ ├── Login.test.js │ │ ├── index.js │ │ └── login.module.scss │ ├── ResetPassword │ │ ├── ResetPassword.jsx │ │ └── index.js │ └── index.js │ ├── Onboarding │ ├── HAConfig │ │ ├── DaySlider │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── InfoInput │ │ │ ├── InfoInput.js │ │ │ └── styles.module.scss │ │ ├── Map │ │ │ ├── config.js │ │ │ ├── index.js │ │ │ ├── style.json │ │ │ └── styles.module.scss │ │ ├── MapModal │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── index.js │ │ ├── infoInputs.js │ │ └── styles.module.scss │ └── index.js │ ├── Publish │ ├── Actions │ │ ├── LoadActions │ │ │ └── index.js │ │ └── ToolActions │ │ │ └── index.js │ ├── Publish.module.scss │ ├── PublishData │ │ ├── PublishData.module.scss │ │ ├── PublishData.stories.js │ │ └── index.js │ ├── PublishView.jsx │ └── index.js │ ├── Registration │ ├── AccessCode │ │ └── index.js │ ├── PersonalInformation │ │ └── index.js │ ├── PhoneNumber │ │ └── index.js │ ├── Registration.module.scss │ ├── ResetPassword │ │ └── index.js │ └── index.js │ ├── Settings │ ├── Members │ │ ├── CopyLink │ │ │ ├── index.js │ │ │ └── styles.module.scss │ │ ├── Dropdown │ │ │ ├── Dropdown.module.scss │ │ │ └── index.js │ │ ├── Members.stories.js │ │ ├── index.js │ │ └── styles.module.scss │ ├── index.js │ └── styles.module.scss │ ├── Trace │ ├── Actions │ │ ├── LoadActions │ │ │ └── index.js │ │ └── ToolActions │ │ │ └── index.js │ ├── AddNewRecord │ │ ├── AddNewRecord.module.scss │ │ ├── AddNewRecord.stories.js │ │ └── index.js │ ├── DeletePoints │ │ ├── DeletePoints.module.scss │ │ └── index.js │ ├── NewRecordAdded │ │ ├── NewRecordAdded.jsx │ │ ├── NewRecordAdded.module.scss │ │ └── index.js │ ├── RecordAdded │ │ ├── RecordAdded.module.scss │ │ ├── RecordAdded.stories.js │ │ └── index.js │ ├── Settings │ │ └── index.js │ ├── StageForPublishing │ │ ├── StageForPublishing.module.scss │ │ ├── StageForPublishing.stories.js │ │ └── index.js │ ├── TraceView.jsx │ ├── Tracer.module.scss │ └── index.js │ ├── ViewWrapper.module.scss │ └── index.js ├── tests ├── README.md ├── __init__.py ├── conftest.py ├── data │ ├── expected_results │ │ └── privkit31A-synthetic-REDACTED-REDACTED.json │ ├── privkit31A-synthetic-REDACTED.json │ ├── privkit31B-synthetic-REDACTED.json │ ├── privkit48A-synthetic-REDACTED.json │ └── privkit48B-synthetic-REDACTED.json ├── docker │ └── testhost │ │ ├── Dockerfile │ │ └── prepare.sh ├── e2e │ └── Login.js ├── page_objects.py └── ui_test.py └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.env.template -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.github/workflows/google-react-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.github/workflows/google-react-pr.yml -------------------------------------------------------------------------------- /.github/workflows/google-react.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.github/workflows/google-react.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/decorators/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.storybook/decorators/provider.js -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/README.md -------------------------------------------------------------------------------- /Safe-Places-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/Safe-Places-Server.md -------------------------------------------------------------------------------- /a11y-errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/a11y-errors.html -------------------------------------------------------------------------------- /a11y-tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/a11y-tests/index.js -------------------------------------------------------------------------------- /base/deployment-react.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/base/deployment-react.yml -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/changelog.md -------------------------------------------------------------------------------- /cucumber.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/cucumber.conf.js -------------------------------------------------------------------------------- /deployment-configs/gcp/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/deployment-configs/gcp/cloudbuild.yaml -------------------------------------------------------------------------------- /features/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/features/login.feature -------------------------------------------------------------------------------- /features/step-definitions/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/features/step-definitions/steps.js -------------------------------------------------------------------------------- /healthcare-authorities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/healthcare-authorities.yaml -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/kustomization.yaml -------------------------------------------------------------------------------- /nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/nightwatch.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/Router.js -------------------------------------------------------------------------------- /src/assets/images/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/assets/images/ellipse.png -------------------------------------------------------------------------------- /src/assets/images/home-page-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/assets/images/home-page-graphic.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/pathcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/assets/images/pathcheck.png -------------------------------------------------------------------------------- /src/assets/polygion-tut.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/assets/polygion-tut.webm -------------------------------------------------------------------------------- /src/axiosInterceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/axiosInterceptors.js -------------------------------------------------------------------------------- /src/components/_global/Header/Header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Header/Header.test.js -------------------------------------------------------------------------------- /src/components/_global/Header/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Header/header.module.scss -------------------------------------------------------------------------------- /src/components/_global/Header/header.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Header/header.stories.js -------------------------------------------------------------------------------- /src/components/_global/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Header/index.js -------------------------------------------------------------------------------- /src/components/_global/Logo/Logo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Logo/Logo.test.js -------------------------------------------------------------------------------- /src/components/_global/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Logo/index.js -------------------------------------------------------------------------------- /src/components/_global/Logo/logo.module.scss: -------------------------------------------------------------------------------- 1 | .logo { 2 | display: inline-block; 3 | } -------------------------------------------------------------------------------- /src/components/_global/Modal/ModalSwitch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Modal/ModalSwitch/index.js -------------------------------------------------------------------------------- /src/components/_global/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Modal/index.js -------------------------------------------------------------------------------- /src/components/_global/Modal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Modal/styles.module.scss -------------------------------------------------------------------------------- /src/components/_global/NProgress/Bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/NProgress/Bar.jsx -------------------------------------------------------------------------------- /src/components/_global/NProgress/Container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/NProgress/Container.jsx -------------------------------------------------------------------------------- /src/components/_global/NProgress/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/NProgress/Spinner.jsx -------------------------------------------------------------------------------- /src/components/_global/NProgress/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/NProgress/index.jsx -------------------------------------------------------------------------------- /src/components/_global/NProgress/nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/NProgress/nprogress.css -------------------------------------------------------------------------------- /src/components/_global/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Navigation/index.js -------------------------------------------------------------------------------- /src/components/_global/Navigation/navigation.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Navigation/navigation.module.scss -------------------------------------------------------------------------------- /src/components/_global/Notifications/Notification.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Notifications/Notification.module.scss -------------------------------------------------------------------------------- /src/components/_global/Notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/Notifications/index.js -------------------------------------------------------------------------------- /src/components/_global/errorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_global/errorBoundary.jsx -------------------------------------------------------------------------------- /src/components/_shared/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Button/index.js -------------------------------------------------------------------------------- /src/components/_shared/Button/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Button/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Checkbox/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Checkbox/Checkbox.js -------------------------------------------------------------------------------- /src/components/_shared/Checkbox/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Checkbox/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/ControlledCheckbox/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/ControlledCheckbox/Checkbox.js -------------------------------------------------------------------------------- /src/components/_shared/ControlledCheckbox/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/ControlledCheckbox/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/DateInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/DateInput/index.js -------------------------------------------------------------------------------- /src/components/_shared/DateInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/DateInput/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Dialog/Dialog.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Dialog/Dialog.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Dialog/index.js -------------------------------------------------------------------------------- /src/components/_shared/Forms/FormWrapper/FormWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Forms/FormWrapper/FormWrapper.jsx -------------------------------------------------------------------------------- /src/components/_shared/Forms/FormWrapper/FormWrapper.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Forms/FormWrapper/FormWrapper.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Forms/FormWrapper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FormWrapper'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/InputWrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/InputWrapper/index.js -------------------------------------------------------------------------------- /src/components/_shared/Loader/Loader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Loader/Loader.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Loader/Loader.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Loader/Loader.stories.js -------------------------------------------------------------------------------- /src/components/_shared/Loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Loader/index.js -------------------------------------------------------------------------------- /src/components/_shared/LocationSearch/LocationSearch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/LocationSearch/LocationSearch.module.scss -------------------------------------------------------------------------------- /src/components/_shared/LocationSearch/LocationSuggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/LocationSearch/LocationSuggestions.js -------------------------------------------------------------------------------- /src/components/_shared/LocationSearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/LocationSearch/index.js -------------------------------------------------------------------------------- /src/components/_shared/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Logo/index.js -------------------------------------------------------------------------------- /src/components/_shared/Logo/logo.module.scss: -------------------------------------------------------------------------------- 1 | .logo { 2 | display: inline-block; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/components/_shared/Map/DrawEditor/DrawEditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/DrawEditor/DrawEditor.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Map/DrawEditor/_parts/ActionsMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/DrawEditor/_parts/ActionsMenu.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/DrawEditor/_parts/EditorNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/DrawEditor/_parts/EditorNav.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/DrawEditor/_parts/HelpBlock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/DrawEditor/_parts/HelpBlock.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/DrawEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/DrawEditor/index.js -------------------------------------------------------------------------------- /src/components/_shared/Map/LocationSelect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/LocationSelect/index.js -------------------------------------------------------------------------------- /src/components/_shared/Map/LocationSelect/locationSelect.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/LocationSelect/locationSelect.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Map/MapControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/MapControls.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/MapInner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/MapInner.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/MapSource.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/MapSource.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/Marker/Marker.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/Marker/Marker.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Map/Marker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/Marker/index.js -------------------------------------------------------------------------------- /src/components/_shared/Map/SatelliteToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/SatelliteToggle.jsx -------------------------------------------------------------------------------- /src/components/_shared/Map/SelectionLocationHelp/SelectionLocationHelp.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/SelectionLocationHelp/SelectionLocationHelp.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Map/SelectionLocationHelp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/SelectionLocationHelp/index.js -------------------------------------------------------------------------------- /src/components/_shared/Map/_data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/_data/test.json -------------------------------------------------------------------------------- /src/components/_shared/Map/_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/_helpers.js -------------------------------------------------------------------------------- /src/components/_shared/Map/getBounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/getBounds.js -------------------------------------------------------------------------------- /src/components/_shared/Map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/index.js -------------------------------------------------------------------------------- /src/components/_shared/Map/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Map/styles/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/styles/map.json -------------------------------------------------------------------------------- /src/components/_shared/Map/styles/satellite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/styles/satellite.json -------------------------------------------------------------------------------- /src/components/_shared/Map/trackPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Map/trackPath.js -------------------------------------------------------------------------------- /src/components/_shared/PasswordInput/PasswordInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PasswordInput/PasswordInput.jsx -------------------------------------------------------------------------------- /src/components/_shared/PasswordInput/PasswordInput.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PasswordInput/PasswordInput.module.scss -------------------------------------------------------------------------------- /src/components/_shared/PasswordInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordInput'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/PasswordStrengthIndicator/PasswordStrengthIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PasswordStrengthIndicator/PasswordStrengthIndicator.jsx -------------------------------------------------------------------------------- /src/components/_shared/PasswordStrengthIndicator/PasswordStrengthIndicator.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PasswordStrengthIndicator/PasswordStrengthIndicator.module.scss -------------------------------------------------------------------------------- /src/components/_shared/PasswordStrengthIndicator/_parts/ListItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PasswordStrengthIndicator/_parts/ListItem.jsx -------------------------------------------------------------------------------- /src/components/_shared/PasswordStrengthIndicator/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordStrengthIndicator'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/Body/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointContextMenu/Body/Body.jsx -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointContextMenu/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/LabelAs/LabelAs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointContextMenu/LabelAs/LabelAs.jsx -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/LabelAs/LabelAs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointContextMenu/LabelAs/LabelAs.module.scss -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/LabelAs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './LabelAs'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/PointContextMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointContextMenu/PointContextMenu.module.scss -------------------------------------------------------------------------------- /src/components/_shared/PointContextMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointContextMenu/index.js -------------------------------------------------------------------------------- /src/components/_shared/PointEditor/PointEditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointEditor/PointEditor.module.scss -------------------------------------------------------------------------------- /src/components/_shared/PointEditor/PointEditor.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointEditor/PointEditor.stories.js -------------------------------------------------------------------------------- /src/components/_shared/PointEditor/_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointEditor/_helpers.js -------------------------------------------------------------------------------- /src/components/_shared/PointEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/PointEditor/index.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/RecordsTablePublishing/Record/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/RecordsTablePublishing/Record/index.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/RecordsTablePublishing/Record/record.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/RecordsTablePublishing/Record/record.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/RecordsTablePublishing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/RecordsTablePublishing/index.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/RecordsTableTrace/Record/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/RecordsTableTrace/Record/index.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/RecordsTableTrace/Record/record.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/RecordsTableTrace/Record/record.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/RecordsTableTrace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/RecordsTableTrace/index.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/index.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/records.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/records.stories.js -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/recordsTable.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/recordsTable.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RecordsTable/useSortBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RecordsTable/useSortBy.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/DateButton/dateButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/DateButton/dateButton.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/DateButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/DateButton/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/DateSelector.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/DateSelector.stories.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/SingleDateToggle/SingleDateToggle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/SingleDateToggle/SingleDateToggle.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/SingleDateToggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/SingleDateToggle/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/dateSelector.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/dateSelector.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DateSelector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DateSelector/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DurationFilter/DurationFilter.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DurationFilter/DurationFilter.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DurationFilter/DurationFilter.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DurationFilter/DurationFilter.stories.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/DurationFilter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/DurationFilter/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/FilterData/FilterData.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/FilterData/FilterData.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/FilterData/FilterData.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/FilterData/FilterData.stories.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/FilterData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/FilterData/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/Filters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/Filters.jsx -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/RecordIdsFilter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Filters/RecordIdsFilter/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Filters/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Filters'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Header/EditRecordModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Header/EditRecordModal.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Header/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Header/header.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/Header/index.js -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/PointsInfo/PointsInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/PointsInfo/PointsInfo.jsx -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/PointsInfo/PointsInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/PointsInfo/PointsInfo.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/PointsInfo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PointsInfo'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/RedactorTools.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/RedactorTools.module.scss -------------------------------------------------------------------------------- /src/components/_shared/RedactorTools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/RedactorTools/index.js -------------------------------------------------------------------------------- /src/components/_shared/Select/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Select/Select.jsx -------------------------------------------------------------------------------- /src/components/_shared/Select/Select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Select/Select.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Select/Select.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Select/Select.stories.js -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedData.module.scss: -------------------------------------------------------------------------------- 1 | .selectedDataList { 2 | padding: 0 10px; 3 | overflow: auto; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedData.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedData.stories.js -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataContextMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataContextMenu/index.js -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataGroup/SelectedDataGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataGroup/SelectedDataGroup.jsx -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataGroup/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SelectedDataGroup'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataGroup/selectedDataGroup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataGroup/selectedDataGroup.module.scss -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/SelectedDataItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/SelectedDataItem.jsx -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/SelectedDataItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/SelectedDataItem.module.scss -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/SelectedDataItem.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/SelectedDataItem.stories.js -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/_parts/SelectedDataItemActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/_parts/SelectedDataItemActions.jsx -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/_parts/SelectedDataItemInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/_parts/SelectedDataItemInfo.jsx -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataItem/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SelectedDataItem'; 2 | -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/SelectedDataList/SelectedDataList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/SelectedDataList/SelectedDataList.jsx -------------------------------------------------------------------------------- /src/components/_shared/SelectedData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/SelectedData/index.js -------------------------------------------------------------------------------- /src/components/_shared/Sidebar/SidebarHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Sidebar/SidebarHeader/index.js -------------------------------------------------------------------------------- /src/components/_shared/Sidebar/SidebarHeader/sidebarHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Sidebar/SidebarHeader/sidebarHeader.module.scss -------------------------------------------------------------------------------- /src/components/_shared/Sidebar/SidebarWrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Sidebar/SidebarWrapper/index.js -------------------------------------------------------------------------------- /src/components/_shared/Sidebar/SidebarWrapper/sidebarWrapper.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Sidebar/SidebarWrapper/sidebarWrapper.module.scss -------------------------------------------------------------------------------- /src/components/_shared/TimeInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/TimeInput/index.js -------------------------------------------------------------------------------- /src/components/_shared/TimeInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/TimeInput/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/ToggleControl/Toggle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/ToggleControl/Toggle.module.scss -------------------------------------------------------------------------------- /src/components/_shared/ToggleControl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/ToggleControl/index.js -------------------------------------------------------------------------------- /src/components/_shared/Tooltip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Tooltip/index.js -------------------------------------------------------------------------------- /src/components/_shared/Tooltip/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/Tooltip/styles.module.scss -------------------------------------------------------------------------------- /src/components/_shared/VideoPlayer/VideoPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/VideoPlayer/VideoPlayer.jsx -------------------------------------------------------------------------------- /src/components/_shared/VideoPlayer/VideoPlayer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/components/_shared/VideoPlayer/VideoPlayer.module.scss -------------------------------------------------------------------------------- /src/components/_shared/VideoPlayer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from 'VideoPlayer'; 2 | -------------------------------------------------------------------------------- /src/ducks/application/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/application/actions.js -------------------------------------------------------------------------------- /src/ducks/application/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/application/reducer.js -------------------------------------------------------------------------------- /src/ducks/application/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/application/selectors.js -------------------------------------------------------------------------------- /src/ducks/application/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/application/types.js -------------------------------------------------------------------------------- /src/ducks/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/auth/actions.js -------------------------------------------------------------------------------- /src/ducks/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/auth/reducer.js -------------------------------------------------------------------------------- /src/ducks/auth/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/auth/sagas.js -------------------------------------------------------------------------------- /src/ducks/auth/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/auth/selectors.js -------------------------------------------------------------------------------- /src/ducks/auth/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/auth/service.js -------------------------------------------------------------------------------- /src/ducks/auth/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/auth/types.js -------------------------------------------------------------------------------- /src/ducks/cases/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/cases/actions.js -------------------------------------------------------------------------------- /src/ducks/cases/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/cases/reducer.js -------------------------------------------------------------------------------- /src/ducks/cases/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/cases/sagas.js -------------------------------------------------------------------------------- /src/ducks/cases/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/cases/selectors.js -------------------------------------------------------------------------------- /src/ducks/cases/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/cases/service.js -------------------------------------------------------------------------------- /src/ducks/cases/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/cases/types.js -------------------------------------------------------------------------------- /src/ducks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/index.js -------------------------------------------------------------------------------- /src/ducks/map/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/map/actions.js -------------------------------------------------------------------------------- /src/ducks/map/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/map/reducer.js -------------------------------------------------------------------------------- /src/ducks/map/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/map/sagas.js -------------------------------------------------------------------------------- /src/ducks/map/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/map/selectors.js -------------------------------------------------------------------------------- /src/ducks/map/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/map/types.js -------------------------------------------------------------------------------- /src/ducks/points/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/points/actions.js -------------------------------------------------------------------------------- /src/ducks/points/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/points/reducer.js -------------------------------------------------------------------------------- /src/ducks/points/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/points/sagas.js -------------------------------------------------------------------------------- /src/ducks/points/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/points/selectors.js -------------------------------------------------------------------------------- /src/ducks/points/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/points/service.js -------------------------------------------------------------------------------- /src/ducks/points/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/points/types.js -------------------------------------------------------------------------------- /src/ducks/registration/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/registration/actions.js -------------------------------------------------------------------------------- /src/ducks/registration/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/registration/reducer.js -------------------------------------------------------------------------------- /src/ducks/registration/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/registration/sagas.js -------------------------------------------------------------------------------- /src/ducks/registration/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/registration/selectors.js -------------------------------------------------------------------------------- /src/ducks/registration/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/registration/service.js -------------------------------------------------------------------------------- /src/ducks/registration/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/registration/types.js -------------------------------------------------------------------------------- /src/ducks/tags/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tags/actions.js -------------------------------------------------------------------------------- /src/ducks/tags/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tags/reducer.js -------------------------------------------------------------------------------- /src/ducks/tags/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tags/selectors.js -------------------------------------------------------------------------------- /src/ducks/tags/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tags/types.js -------------------------------------------------------------------------------- /src/ducks/tooltips/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tooltips/actions.js -------------------------------------------------------------------------------- /src/ducks/tooltips/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tooltips/reducer.js -------------------------------------------------------------------------------- /src/ducks/tooltips/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tooltips/selectors.js -------------------------------------------------------------------------------- /src/ducks/tooltips/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/tooltips/types.js -------------------------------------------------------------------------------- /src/ducks/users/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/users/actions.js -------------------------------------------------------------------------------- /src/ducks/users/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/users/reducer.js -------------------------------------------------------------------------------- /src/ducks/users/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/users/sagas.js -------------------------------------------------------------------------------- /src/ducks/users/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/users/selectors.js -------------------------------------------------------------------------------- /src/ducks/users/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/users/service.js -------------------------------------------------------------------------------- /src/ducks/users/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/ducks/users/types.js -------------------------------------------------------------------------------- /src/helpers/dateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/helpers/dateTime.js -------------------------------------------------------------------------------- /src/helpers/emailValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/helpers/emailValidator.js -------------------------------------------------------------------------------- /src/helpers/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/helpers/export.js -------------------------------------------------------------------------------- /src/helpers/getListHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/helpers/getListHeight.js -------------------------------------------------------------------------------- /src/helpers/pocTransformerLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/helpers/pocTransformerLib.js -------------------------------------------------------------------------------- /src/helpers/pointsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/helpers/pointsUtils.js -------------------------------------------------------------------------------- /src/hooks/useCloseOnEscape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/hooks/useCloseOnEscape.js -------------------------------------------------------------------------------- /src/hooks/useOnClickOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/hooks/useOnClickOutside.js -------------------------------------------------------------------------------- /src/hooks/useValidatePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/hooks/useValidatePassword.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/sagas.js -------------------------------------------------------------------------------- /src/scss/defaults.scss: -------------------------------------------------------------------------------- 1 | $borderRadius: 5px; 2 | $sidebarWidth: 360px; 3 | -------------------------------------------------------------------------------- /src/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/scss/global.scss -------------------------------------------------------------------------------- /src/scss/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/scss/palette.scss -------------------------------------------------------------------------------- /src/scss/ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/scss/ui.scss -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/store.js -------------------------------------------------------------------------------- /src/types/applicationStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/types/applicationStates.js -------------------------------------------------------------------------------- /src/types/sortBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/types/sortBy.js -------------------------------------------------------------------------------- /src/views/Authentication/ForgotPassword/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Authentication/ForgotPassword/ForgotPassword.jsx -------------------------------------------------------------------------------- /src/views/Authentication/ForgotPassword/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ForgotPassword'; 2 | -------------------------------------------------------------------------------- /src/views/Authentication/Login/Login.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Authentication/Login/Login.test.js -------------------------------------------------------------------------------- /src/views/Authentication/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Authentication/Login/index.js -------------------------------------------------------------------------------- /src/views/Authentication/Login/login.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Authentication/Login/login.module.scss -------------------------------------------------------------------------------- /src/views/Authentication/ResetPassword/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Authentication/ResetPassword/ResetPassword.jsx -------------------------------------------------------------------------------- /src/views/Authentication/ResetPassword/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ResetPassword'; 2 | -------------------------------------------------------------------------------- /src/views/Authentication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Authentication/index.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/DaySlider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/DaySlider/index.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/DaySlider/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/DaySlider/styles.module.scss -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/InfoInput/InfoInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/InfoInput/InfoInput.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/InfoInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/InfoInput/styles.module.scss -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/Map/config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/Map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/Map/index.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/Map/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/Map/style.json -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/Map/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/Map/styles.module.scss -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/MapModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/MapModal/index.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/MapModal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/MapModal/styles.module.scss -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/index.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/infoInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/infoInputs.js -------------------------------------------------------------------------------- /src/views/Onboarding/HAConfig/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/HAConfig/styles.module.scss -------------------------------------------------------------------------------- /src/views/Onboarding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Onboarding/index.js -------------------------------------------------------------------------------- /src/views/Publish/Actions/LoadActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Publish/Actions/LoadActions/index.js -------------------------------------------------------------------------------- /src/views/Publish/Actions/ToolActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Publish/Actions/ToolActions/index.js -------------------------------------------------------------------------------- /src/views/Publish/Publish.module.scss: -------------------------------------------------------------------------------- 1 | .publish { 2 | display: flex; 3 | height: calc(100vh - 60px); 4 | } 5 | -------------------------------------------------------------------------------- /src/views/Publish/PublishData/PublishData.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Publish/PublishData/PublishData.module.scss -------------------------------------------------------------------------------- /src/views/Publish/PublishData/PublishData.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Publish/PublishData/PublishData.stories.js -------------------------------------------------------------------------------- /src/views/Publish/PublishData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Publish/PublishData/index.js -------------------------------------------------------------------------------- /src/views/Publish/PublishView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Publish/PublishView.jsx -------------------------------------------------------------------------------- /src/views/Publish/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PublishView'; 2 | -------------------------------------------------------------------------------- /src/views/Registration/AccessCode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Registration/AccessCode/index.js -------------------------------------------------------------------------------- /src/views/Registration/PersonalInformation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Registration/PersonalInformation/index.js -------------------------------------------------------------------------------- /src/views/Registration/PhoneNumber/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Registration/PhoneNumber/index.js -------------------------------------------------------------------------------- /src/views/Registration/Registration.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Registration/Registration.module.scss -------------------------------------------------------------------------------- /src/views/Registration/ResetPassword/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Registration/ResetPassword/index.js -------------------------------------------------------------------------------- /src/views/Registration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Registration/index.js -------------------------------------------------------------------------------- /src/views/Settings/Members/CopyLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/CopyLink/index.js -------------------------------------------------------------------------------- /src/views/Settings/Members/CopyLink/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/CopyLink/styles.module.scss -------------------------------------------------------------------------------- /src/views/Settings/Members/Dropdown/Dropdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/Dropdown/Dropdown.module.scss -------------------------------------------------------------------------------- /src/views/Settings/Members/Dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/Dropdown/index.js -------------------------------------------------------------------------------- /src/views/Settings/Members/Members.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/Members.stories.js -------------------------------------------------------------------------------- /src/views/Settings/Members/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/index.js -------------------------------------------------------------------------------- /src/views/Settings/Members/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/Members/styles.module.scss -------------------------------------------------------------------------------- /src/views/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/index.js -------------------------------------------------------------------------------- /src/views/Settings/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Settings/styles.module.scss -------------------------------------------------------------------------------- /src/views/Trace/Actions/LoadActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/Actions/LoadActions/index.js -------------------------------------------------------------------------------- /src/views/Trace/Actions/ToolActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/Actions/ToolActions/index.js -------------------------------------------------------------------------------- /src/views/Trace/AddNewRecord/AddNewRecord.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/AddNewRecord/AddNewRecord.module.scss -------------------------------------------------------------------------------- /src/views/Trace/AddNewRecord/AddNewRecord.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/AddNewRecord/AddNewRecord.stories.js -------------------------------------------------------------------------------- /src/views/Trace/AddNewRecord/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/AddNewRecord/index.js -------------------------------------------------------------------------------- /src/views/Trace/DeletePoints/DeletePoints.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/DeletePoints/DeletePoints.module.scss -------------------------------------------------------------------------------- /src/views/Trace/DeletePoints/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/DeletePoints/index.js -------------------------------------------------------------------------------- /src/views/Trace/NewRecordAdded/NewRecordAdded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/NewRecordAdded/NewRecordAdded.jsx -------------------------------------------------------------------------------- /src/views/Trace/NewRecordAdded/NewRecordAdded.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/NewRecordAdded/NewRecordAdded.module.scss -------------------------------------------------------------------------------- /src/views/Trace/NewRecordAdded/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NewRecordAdded'; 2 | -------------------------------------------------------------------------------- /src/views/Trace/RecordAdded/RecordAdded.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/RecordAdded/RecordAdded.module.scss -------------------------------------------------------------------------------- /src/views/Trace/RecordAdded/RecordAdded.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/RecordAdded/RecordAdded.stories.js -------------------------------------------------------------------------------- /src/views/Trace/RecordAdded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/RecordAdded/index.js -------------------------------------------------------------------------------- /src/views/Trace/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/Settings/index.js -------------------------------------------------------------------------------- /src/views/Trace/StageForPublishing/StageForPublishing.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/StageForPublishing/StageForPublishing.module.scss -------------------------------------------------------------------------------- /src/views/Trace/StageForPublishing/StageForPublishing.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/StageForPublishing/StageForPublishing.stories.js -------------------------------------------------------------------------------- /src/views/Trace/StageForPublishing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/StageForPublishing/index.js -------------------------------------------------------------------------------- /src/views/Trace/TraceView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/Trace/TraceView.jsx -------------------------------------------------------------------------------- /src/views/Trace/Tracer.module.scss: -------------------------------------------------------------------------------- 1 | .tracer { 2 | display: flex; 3 | height: calc(100vh - 60px); 4 | } 5 | -------------------------------------------------------------------------------- /src/views/Trace/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TraceView'; 2 | -------------------------------------------------------------------------------- /src/views/ViewWrapper.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/ViewWrapper.module.scss -------------------------------------------------------------------------------- /src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/src/views/index.js -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/expected_results/privkit31A-synthetic-REDACTED-REDACTED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/data/expected_results/privkit31A-synthetic-REDACTED-REDACTED.json -------------------------------------------------------------------------------- /tests/data/privkit31A-synthetic-REDACTED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/data/privkit31A-synthetic-REDACTED.json -------------------------------------------------------------------------------- /tests/data/privkit31B-synthetic-REDACTED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/data/privkit31B-synthetic-REDACTED.json -------------------------------------------------------------------------------- /tests/data/privkit48A-synthetic-REDACTED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/data/privkit48A-synthetic-REDACTED.json -------------------------------------------------------------------------------- /tests/data/privkit48B-synthetic-REDACTED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/data/privkit48B-synthetic-REDACTED.json -------------------------------------------------------------------------------- /tests/docker/testhost/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/docker/testhost/Dockerfile -------------------------------------------------------------------------------- /tests/docker/testhost/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/docker/testhost/prepare.sh -------------------------------------------------------------------------------- /tests/e2e/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/e2e/Login.js -------------------------------------------------------------------------------- /tests/page_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/page_objects.py -------------------------------------------------------------------------------- /tests/ui_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/tests/ui_test.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Path-Check/safeplaces-ct-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------