├── .coveralls.yml ├── .dockerignore ├── .github ├── pull_request_template.md └── workflows │ ├── basic-dictionary.yml │ ├── dictionary-manager.yml │ └── organisation-management.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── LICENSE.md ├── README.md ├── app.json ├── cypress.json ├── cypress ├── .eslintrc.json ├── fixtures │ └── example.json ├── integration │ ├── concept │ │ ├── create.feature │ │ └── edit.feature │ ├── dictionary │ │ ├── addBulkConceptsToDictionary.feature │ │ ├── addConceptsToDictionary.feature │ │ ├── copyDictionary.feature │ │ ├── create.feature │ │ ├── createVersion.feature │ │ └── edit.feature │ ├── login.feature │ └── organisation │ │ ├── addMember.feature │ │ ├── create.feature │ │ ├── deleteMember.feature │ │ ├── details.feature │ │ └── edit.feature ├── plugins │ └── index.ts ├── support │ ├── commands.ts │ ├── index.d.ts │ ├── index.ts │ ├── step_definitions │ │ ├── common │ │ │ └── common.ts │ │ ├── concept │ │ │ ├── create │ │ │ │ └── create.ts │ │ │ └── edit │ │ │ │ └── edit.ts │ │ ├── dictionary │ │ │ ├── addBulkConceptsToDictionary │ │ │ │ └── addBulkConceptsToDictionary.ts │ │ │ ├── addConceptsToDictionary │ │ │ │ └── addConceptsToDictionary.ts │ │ │ ├── copyDictionary │ │ │ │ └── copyDictionary.ts │ │ │ ├── create │ │ │ │ └── create.ts │ │ │ ├── createVersion │ │ │ │ └── createVersion.ts │ │ │ └── edit │ │ │ │ └── edit.ts │ │ ├── login │ │ │ └── login.ts │ │ └── organisation │ │ │ ├── addMember │ │ │ └── addMember.ts │ │ │ ├── create │ │ │ └── create.ts │ │ │ ├── deleteMember │ │ │ └── deleteMember.ts │ │ │ ├── details │ │ │ └── details.ts │ │ │ └── edit │ │ │ └── edit.ts │ └── utils.ts └── tsconfig.json ├── docker-compose.yml ├── docker ├── Dockerfile ├── default.conf └── startup.sh ├── oclapi └── docker-compose.yml ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── run_e2e.sh ├── src ├── App.tsx ├── api.ts ├── apps │ ├── authentication │ │ ├── LoginPage.tsx │ │ ├── __test__ │ │ │ ├── components │ │ │ │ ├── UserForm.test.tsx │ │ │ │ ├── UserOrganisationDetails.test.tsx │ │ │ │ └── UserTokenDetails.test.tsx │ │ │ ├── pages │ │ │ │ └── ViewUserProfilePage.test.tsx │ │ │ ├── redux │ │ │ │ └── reducer.test.ts │ │ │ ├── test_data.ts │ │ │ └── utils.test.ts │ │ ├── api.ts │ │ ├── components │ │ │ ├── AuthenticationRequired.tsx │ │ │ ├── Login.tsx │ │ │ ├── UserForm.tsx │ │ │ ├── UserOrganisationDetails.tsx │ │ │ ├── UserTokenDetails.tsx │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── pages │ │ │ ├── ViewUserProfilePage.tsx │ │ │ └── index.ts │ │ ├── redux │ │ │ ├── actionTypes.ts │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ └── reducer.ts │ │ ├── tests │ │ │ └── api.test.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── concepts │ │ ├── Routes.tsx │ │ ├── __test__ │ │ │ ├── api.test.ts │ │ │ ├── components │ │ │ │ ├── AddConceptsIcon.test.tsx │ │ │ │ ├── ConceptForm.test.tsx │ │ │ │ ├── ConceptsActionMenu.test.tsx │ │ │ │ ├── ConceptsTable.test.tsx │ │ │ │ ├── EnhancedTableHead.test.tsx │ │ │ │ ├── EnhancedTableToolbar.test.tsx │ │ │ │ └── ViewConceptsHeader.test.tsx │ │ │ ├── pages │ │ │ │ └── ViewConceptsPage.test.tsx │ │ │ ├── redux │ │ │ │ └── reducer.test.ts │ │ │ └── utils.test.ts │ │ ├── api.ts │ │ ├── components │ │ │ ├── AddConceptsIcon.tsx │ │ │ ├── AlreadyAddedIcon.tsx │ │ │ ├── ConceptForm.tsx │ │ │ ├── ConceptSpeedDial.tsx │ │ │ ├── ConceptsActionMenu.tsx │ │ │ ├── ConceptsTable.tsx │ │ │ ├── ConceptsTableRow.tsx │ │ │ ├── EnhancedTableHead.tsx │ │ │ ├── EnhancedTableToolbar.tsx │ │ │ ├── FilterOptions.tsx │ │ │ ├── MappingsTable.tsx │ │ │ ├── MappingsTableRow.tsx │ │ │ ├── NamesTable.tsx │ │ │ ├── ViewConceptsHeader.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── pages │ │ │ ├── CreateOrEditConceptPage.tsx │ │ │ ├── ViewConceptPage.tsx │ │ │ ├── ViewConceptsPage.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── e2e │ │ │ │ ├── CreateOrEditConceptPage.test.ts │ │ │ │ ├── ViewConceptsPage.test.ts │ │ │ │ └── testUtils.ts │ │ ├── redux │ │ │ ├── actionTypes.ts │ │ │ ├── actions.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ └── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── containers │ │ ├── api.ts │ │ ├── components │ │ │ ├── ContainerCard.tsx │ │ │ ├── ContainerCards.tsx │ │ │ ├── ContainerOwnerTabs.tsx │ │ │ ├── ContainerPagination.tsx │ │ │ ├── ContainerReleasedVersions.tsx │ │ │ ├── ContainerSearch.tsx │ │ │ ├── ContainerVersionForm.tsx │ │ │ ├── EditButton.tsx │ │ │ ├── EditMenu.tsx │ │ │ ├── FormUtils.tsx │ │ │ ├── __test__ │ │ │ │ ├── ContainerCard.test.tsx │ │ │ │ ├── ContainerCards.test.tsx │ │ │ │ ├── ContainerOwnerTabs.test.tsx │ │ │ │ ├── ContainerPagination.test.tsx │ │ │ │ ├── ContainerReleasedVersions.test.tsx │ │ │ │ ├── ContainerSearch.test.tsx │ │ │ │ ├── EditButton.test.tsx │ │ │ │ ├── EditMenu.test.tsx │ │ │ │ └── FormUtils.test.tsx │ │ │ └── index.ts │ │ └── types.ts │ ├── dictionaries │ │ ├── Routes.tsx │ │ ├── __test__ │ │ │ ├── pages │ │ │ │ └── ViewDictionaryPage.test.tsx │ │ │ └── utils.test.ts │ │ ├── api.ts │ │ ├── components │ │ │ ├── DictionaryConceptsSummary.tsx │ │ │ ├── DictionaryForm.tsx │ │ │ ├── DictionaryVersionForm.tsx │ │ │ ├── ViewDictionaries.tsx │ │ │ ├── ViewDictionariesPage.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── logic.ts │ │ ├── pages │ │ │ ├── AddBulkConceptsPage.tsx │ │ │ ├── CreateDictionaryPage.tsx │ │ │ ├── EditDictionaryPage.tsx │ │ │ ├── ViewDictionaryPage.tsx │ │ │ ├── ViewOrgDictionariesPage.tsx │ │ │ ├── ViewPersonalDictionariesPage.tsx │ │ │ ├── ViewPublicDictionariesPage.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── e2e │ │ │ │ ├── CreateDictionaryPage.test.ts │ │ │ │ ├── EditDictionaryPage.test.ts │ │ │ │ ├── ViewDictionaryPage.test.ts │ │ │ │ └── testUtils.ts │ │ ├── redux │ │ │ ├── actionTypes.ts │ │ │ ├── actions.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ └── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── notifications │ │ ├── __test__ │ │ │ └── components │ │ │ │ ├── EnhancedNotificationSummaryTableHead.test.tsx │ │ │ │ ├── NotificationCard.test.tsx │ │ │ │ └── NotificationDetails.test.tsx │ │ ├── components │ │ │ ├── EnhancedNotificationSummaryTableHead.tsx │ │ │ ├── NotificationCard.tsx │ │ │ └── NotificationDetails.tsx │ │ ├── index.ts │ │ ├── pages │ │ │ └── ActionsInProgressPage.tsx │ │ └── types.ts │ ├── organisations │ │ ├── Routes.tsx │ │ ├── __test__ │ │ │ └── components │ │ │ │ ├── OrgForm.test.tsx │ │ │ │ ├── organisationDetails.test.tsx │ │ │ │ └── viewOrganisations.test.tsx │ │ ├── api.ts │ │ ├── components │ │ │ ├── AddMemberForm.tsx │ │ │ ├── DeleteMemberDialog.tsx │ │ │ ├── MenuButton.tsx │ │ │ ├── OrgCard.tsx │ │ │ ├── OrgCards.tsx │ │ │ ├── OrgDetails.tsx │ │ │ ├── OrgDictionaries.tsx │ │ │ ├── OrgForm.tsx │ │ │ ├── OrgMembers.tsx │ │ │ ├── OrgSources.tsx │ │ │ ├── ViewOrgs.tsx │ │ │ ├── ViewOrgsPage.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── pages │ │ │ ├── CreateOrgPage.tsx │ │ │ ├── EditOrgPage.tsx │ │ │ ├── ViewOrgPage.tsx │ │ │ ├── ViewPersonalOrgs.tsx │ │ │ ├── ViewPublicOrgs.tsx │ │ │ └── index.ts │ │ ├── redux │ │ │ ├── actionTypes.ts │ │ │ ├── actions.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ └── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ └── sources │ │ ├── Routes.tsx │ │ ├── __test__ │ │ ├── api.test.ts │ │ ├── components │ │ │ ├── SourceConceptsSummary.test.tsx │ │ │ ├── SourceForm.test.tsx │ │ │ ├── ViewSources.test.tsx │ │ │ └── ViewSourcesPage.test.tsx │ │ ├── pages │ │ │ ├── CreateSourcePage.test.tsx │ │ │ ├── EditSourcePage.test.tsx │ │ │ ├── ViewOrgSourcesPage.test.tsx │ │ │ ├── ViewPersonalSourcesPage.test.tsx │ │ │ ├── ViewPublicSourcesPage.test.tsx │ │ │ └── ViewSourcePage.test.tsx │ │ ├── redux │ │ │ ├── actions.test.ts │ │ │ ├── reducer.test.ts │ │ │ └── selectors.test.ts │ │ ├── test_data.ts │ │ └── utils.test.ts │ │ ├── api.ts │ │ ├── components │ │ ├── SourceConceptsSummary.tsx │ │ ├── SourceForm.tsx │ │ ├── ViewSources.tsx │ │ ├── ViewSourcesPage.tsx │ │ └── index.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── pages │ │ ├── CreateSourcePage.tsx │ │ ├── EditSourcePage.tsx │ │ ├── ViewOrgSourcesPage.tsx │ │ ├── ViewPersonalSourcesPage.tsx │ │ ├── ViewPublicSourcesPage.tsx │ │ ├── ViewSourcePage.tsx │ │ └── index.ts │ │ ├── redux │ │ ├── actionTypes.ts │ │ ├── actions.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ └── selectors.ts │ │ ├── types.ts │ │ └── utils.ts ├── components │ ├── AppsMenu.tsx │ ├── DragHandle.tsx │ ├── Header.tsx │ ├── NavDrawer.tsx │ ├── VerifiedSource.tsx │ ├── drag_handle-icon.svg │ ├── index.ts │ └── omrs-logo.svg ├── fonts │ ├── XRXV3I6Li01BKofINeaBTMnFcQ.woff2 │ ├── XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2 │ ├── XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2 │ └── nunito.css ├── index.scss ├── index.tsx ├── react-app-env.d.ts ├── redux │ ├── __test__ │ │ ├── localStorageUtils.test.ts │ │ ├── reducer.test.ts │ │ └── utils.test.ts │ ├── index.ts │ ├── localStorageUtils.ts │ ├── reducer.ts │ ├── selectors.ts │ ├── store.ts │ ├── types.ts │ └── utils.ts ├── serviceWorker.ts ├── test-utils.test.tsx ├── tests │ └── unit │ │ └── App.test.tsx └── utils │ ├── components │ ├── AsyncSelect.tsx │ ├── ConfirmationDialog.tsx │ ├── NestedErrorMessage.tsx │ ├── ProgressOverlay.tsx │ ├── ToastAlert.tsx │ └── index.ts │ ├── constants.ts │ ├── hooks.ts │ ├── index.ts │ ├── tests │ └── unit │ │ └── utils.test.ts │ ├── types.ts │ ├── urlUtils.ts │ └── utils.ts ├── start_local_instance.sh ├── static.json ├── stop_local_instance.sh ├── tsconfig.json └── wait_for_url.sh /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: keCRFyNYCisG86YEXIaUM35uBSbuybOiB 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/basic-dictionary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.github/workflows/basic-dictionary.yml -------------------------------------------------------------------------------- /.github/workflows/dictionary-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.github/workflows/dictionary-manager.yml -------------------------------------------------------------------------------- /.github/workflows/organisation-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.github/workflows/organisation-management.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/app.json -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/.eslintrc.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/concept/create.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/concept/create.feature -------------------------------------------------------------------------------- /cypress/integration/concept/edit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/concept/edit.feature -------------------------------------------------------------------------------- /cypress/integration/dictionary/addBulkConceptsToDictionary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/dictionary/addBulkConceptsToDictionary.feature -------------------------------------------------------------------------------- /cypress/integration/dictionary/addConceptsToDictionary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/dictionary/addConceptsToDictionary.feature -------------------------------------------------------------------------------- /cypress/integration/dictionary/copyDictionary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/dictionary/copyDictionary.feature -------------------------------------------------------------------------------- /cypress/integration/dictionary/create.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/dictionary/create.feature -------------------------------------------------------------------------------- /cypress/integration/dictionary/createVersion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/dictionary/createVersion.feature -------------------------------------------------------------------------------- /cypress/integration/dictionary/edit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/dictionary/edit.feature -------------------------------------------------------------------------------- /cypress/integration/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/login.feature -------------------------------------------------------------------------------- /cypress/integration/organisation/addMember.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/organisation/addMember.feature -------------------------------------------------------------------------------- /cypress/integration/organisation/create.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/organisation/create.feature -------------------------------------------------------------------------------- /cypress/integration/organisation/deleteMember.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/organisation/deleteMember.feature -------------------------------------------------------------------------------- /cypress/integration/organisation/details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/organisation/details.feature -------------------------------------------------------------------------------- /cypress/integration/organisation/edit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/integration/organisation/edit.feature -------------------------------------------------------------------------------- /cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/plugins/index.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/index.d.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/common/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/common/common.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/concept/create/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/concept/create/create.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/concept/edit/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/concept/edit/edit.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/dictionary/addBulkConceptsToDictionary/addBulkConceptsToDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/dictionary/addBulkConceptsToDictionary/addBulkConceptsToDictionary.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/dictionary/addConceptsToDictionary/addConceptsToDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/dictionary/addConceptsToDictionary/addConceptsToDictionary.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/dictionary/copyDictionary/copyDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/dictionary/copyDictionary/copyDictionary.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/dictionary/create/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/dictionary/create/create.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/dictionary/createVersion/createVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/dictionary/createVersion/createVersion.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/dictionary/edit/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/dictionary/edit/edit.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/login/login.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/organisation/addMember/addMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/organisation/addMember/addMember.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/organisation/create/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/organisation/create/create.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/organisation/deleteMember/deleteMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/organisation/deleteMember/deleteMember.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/organisation/details/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/organisation/details/details.ts -------------------------------------------------------------------------------- /cypress/support/step_definitions/organisation/edit/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/step_definitions/organisation/edit/edit.ts -------------------------------------------------------------------------------- /cypress/support/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/support/utils.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/docker/default.conf -------------------------------------------------------------------------------- /docker/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/docker/startup.sh -------------------------------------------------------------------------------- /oclapi/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/oclapi/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/public/robots.txt -------------------------------------------------------------------------------- /run_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/run_e2e.sh -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/apps/authentication/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/LoginPage.tsx -------------------------------------------------------------------------------- /src/apps/authentication/__test__/components/UserForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/components/UserForm.test.tsx -------------------------------------------------------------------------------- /src/apps/authentication/__test__/components/UserOrganisationDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/components/UserOrganisationDetails.test.tsx -------------------------------------------------------------------------------- /src/apps/authentication/__test__/components/UserTokenDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/components/UserTokenDetails.test.tsx -------------------------------------------------------------------------------- /src/apps/authentication/__test__/pages/ViewUserProfilePage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/pages/ViewUserProfilePage.test.tsx -------------------------------------------------------------------------------- /src/apps/authentication/__test__/redux/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/redux/reducer.test.ts -------------------------------------------------------------------------------- /src/apps/authentication/__test__/test_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/test_data.ts -------------------------------------------------------------------------------- /src/apps/authentication/__test__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/__test__/utils.test.ts -------------------------------------------------------------------------------- /src/apps/authentication/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/api.ts -------------------------------------------------------------------------------- /src/apps/authentication/components/AuthenticationRequired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/components/AuthenticationRequired.tsx -------------------------------------------------------------------------------- /src/apps/authentication/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/components/Login.tsx -------------------------------------------------------------------------------- /src/apps/authentication/components/UserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/components/UserForm.tsx -------------------------------------------------------------------------------- /src/apps/authentication/components/UserOrganisationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/components/UserOrganisationDetails.tsx -------------------------------------------------------------------------------- /src/apps/authentication/components/UserTokenDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/components/UserTokenDetails.tsx -------------------------------------------------------------------------------- /src/apps/authentication/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/components/index.tsx -------------------------------------------------------------------------------- /src/apps/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/index.ts -------------------------------------------------------------------------------- /src/apps/authentication/pages/ViewUserProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/pages/ViewUserProfilePage.tsx -------------------------------------------------------------------------------- /src/apps/authentication/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/pages/index.ts -------------------------------------------------------------------------------- /src/apps/authentication/redux/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/redux/actionTypes.ts -------------------------------------------------------------------------------- /src/apps/authentication/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/redux/actions.ts -------------------------------------------------------------------------------- /src/apps/authentication/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/redux/index.ts -------------------------------------------------------------------------------- /src/apps/authentication/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/redux/reducer.ts -------------------------------------------------------------------------------- /src/apps/authentication/tests/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/tests/api.test.ts -------------------------------------------------------------------------------- /src/apps/authentication/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/types.ts -------------------------------------------------------------------------------- /src/apps/authentication/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/authentication/utils.ts -------------------------------------------------------------------------------- /src/apps/concepts/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/Routes.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/api.test.ts -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/AddConceptsIcon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/AddConceptsIcon.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/ConceptForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/ConceptForm.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/ConceptsActionMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/ConceptsActionMenu.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/ConceptsTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/ConceptsTable.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/EnhancedTableHead.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/EnhancedTableHead.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/EnhancedTableToolbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/EnhancedTableToolbar.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/components/ViewConceptsHeader.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/components/ViewConceptsHeader.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/pages/ViewConceptsPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/pages/ViewConceptsPage.test.tsx -------------------------------------------------------------------------------- /src/apps/concepts/__test__/redux/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/redux/reducer.test.ts -------------------------------------------------------------------------------- /src/apps/concepts/__test__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/__test__/utils.test.ts -------------------------------------------------------------------------------- /src/apps/concepts/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/api.ts -------------------------------------------------------------------------------- /src/apps/concepts/components/AddConceptsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/AddConceptsIcon.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/AlreadyAddedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/AlreadyAddedIcon.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/ConceptForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/ConceptForm.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/ConceptSpeedDial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/ConceptSpeedDial.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/ConceptsActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/ConceptsActionMenu.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/ConceptsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/ConceptsTable.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/ConceptsTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/ConceptsTableRow.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/EnhancedTableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/EnhancedTableHead.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/EnhancedTableToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/EnhancedTableToolbar.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/FilterOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/FilterOptions.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/MappingsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/MappingsTable.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/MappingsTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/MappingsTableRow.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/NamesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/NamesTable.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/ViewConceptsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/ViewConceptsHeader.tsx -------------------------------------------------------------------------------- /src/apps/concepts/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/components/index.ts -------------------------------------------------------------------------------- /src/apps/concepts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/constants.ts -------------------------------------------------------------------------------- /src/apps/concepts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/index.ts -------------------------------------------------------------------------------- /src/apps/concepts/pages/CreateOrEditConceptPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/pages/CreateOrEditConceptPage.tsx -------------------------------------------------------------------------------- /src/apps/concepts/pages/ViewConceptPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/pages/ViewConceptPage.tsx -------------------------------------------------------------------------------- /src/apps/concepts/pages/ViewConceptsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/pages/ViewConceptsPage.tsx -------------------------------------------------------------------------------- /src/apps/concepts/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/pages/index.ts -------------------------------------------------------------------------------- /src/apps/concepts/pages/tests/e2e/CreateOrEditConceptPage.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/concepts/pages/tests/e2e/ViewConceptsPage.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/concepts/pages/tests/e2e/testUtils.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/concepts/redux/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/redux/actionTypes.ts -------------------------------------------------------------------------------- /src/apps/concepts/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/redux/actions.ts -------------------------------------------------------------------------------- /src/apps/concepts/redux/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/redux/constants.ts -------------------------------------------------------------------------------- /src/apps/concepts/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/redux/index.ts -------------------------------------------------------------------------------- /src/apps/concepts/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/redux/reducer.ts -------------------------------------------------------------------------------- /src/apps/concepts/redux/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/redux/selectors.ts -------------------------------------------------------------------------------- /src/apps/concepts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/types.ts -------------------------------------------------------------------------------- /src/apps/concepts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/concepts/utils.ts -------------------------------------------------------------------------------- /src/apps/containers/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/api.ts -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerCard.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerCards.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerOwnerTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerOwnerTabs.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerPagination.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerReleasedVersions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerReleasedVersions.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerSearch.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/ContainerVersionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/ContainerVersionForm.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/EditButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/EditButton.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/EditMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/EditMenu.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/FormUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/FormUtils.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/ContainerCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/ContainerCard.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/ContainerCards.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/ContainerCards.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/ContainerOwnerTabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/ContainerOwnerTabs.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/ContainerPagination.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/ContainerPagination.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/ContainerReleasedVersions.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/ContainerReleasedVersions.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/ContainerSearch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/ContainerSearch.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/EditButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/EditButton.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/EditMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/EditMenu.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/__test__/FormUtils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/__test__/FormUtils.test.tsx -------------------------------------------------------------------------------- /src/apps/containers/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/components/index.ts -------------------------------------------------------------------------------- /src/apps/containers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/containers/types.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/Routes.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/__test__/pages/ViewDictionaryPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/__test__/pages/ViewDictionaryPage.test.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/__test__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/__test__/utils.test.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/api.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/components/DictionaryConceptsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/components/DictionaryConceptsSummary.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/components/DictionaryForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/components/DictionaryForm.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/components/DictionaryVersionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/components/DictionaryVersionForm.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/components/ViewDictionaries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/components/ViewDictionaries.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/components/ViewDictionariesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/components/ViewDictionariesPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/components/index.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/constants.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/index.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/logic.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/AddBulkConceptsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/AddBulkConceptsPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/CreateDictionaryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/CreateDictionaryPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/EditDictionaryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/EditDictionaryPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/ViewDictionaryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/ViewDictionaryPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/ViewOrgDictionariesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/ViewOrgDictionariesPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/ViewPersonalDictionariesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/ViewPersonalDictionariesPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/ViewPublicDictionariesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/ViewPublicDictionariesPage.tsx -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/index.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/tests/e2e/CreateDictionaryPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/tests/e2e/CreateDictionaryPage.test.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/tests/e2e/EditDictionaryPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/tests/e2e/EditDictionaryPage.test.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/tests/e2e/ViewDictionaryPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/tests/e2e/ViewDictionaryPage.test.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/pages/tests/e2e/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/pages/tests/e2e/testUtils.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/redux/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/redux/actionTypes.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/redux/actions.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/redux/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/redux/constants.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/redux/index.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/redux/reducer.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/redux/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/redux/selectors.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/types.ts -------------------------------------------------------------------------------- /src/apps/dictionaries/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/dictionaries/utils.ts -------------------------------------------------------------------------------- /src/apps/notifications/__test__/components/EnhancedNotificationSummaryTableHead.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/__test__/components/EnhancedNotificationSummaryTableHead.test.tsx -------------------------------------------------------------------------------- /src/apps/notifications/__test__/components/NotificationCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/__test__/components/NotificationCard.test.tsx -------------------------------------------------------------------------------- /src/apps/notifications/__test__/components/NotificationDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/__test__/components/NotificationDetails.test.tsx -------------------------------------------------------------------------------- /src/apps/notifications/components/EnhancedNotificationSummaryTableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/components/EnhancedNotificationSummaryTableHead.tsx -------------------------------------------------------------------------------- /src/apps/notifications/components/NotificationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/components/NotificationCard.tsx -------------------------------------------------------------------------------- /src/apps/notifications/components/NotificationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/components/NotificationDetails.tsx -------------------------------------------------------------------------------- /src/apps/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/index.ts -------------------------------------------------------------------------------- /src/apps/notifications/pages/ActionsInProgressPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/pages/ActionsInProgressPage.tsx -------------------------------------------------------------------------------- /src/apps/notifications/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/notifications/types.ts -------------------------------------------------------------------------------- /src/apps/organisations/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/Routes.tsx -------------------------------------------------------------------------------- /src/apps/organisations/__test__/components/OrgForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/__test__/components/OrgForm.test.tsx -------------------------------------------------------------------------------- /src/apps/organisations/__test__/components/organisationDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/__test__/components/organisationDetails.test.tsx -------------------------------------------------------------------------------- /src/apps/organisations/__test__/components/viewOrganisations.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/__test__/components/viewOrganisations.test.tsx -------------------------------------------------------------------------------- /src/apps/organisations/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/api.ts -------------------------------------------------------------------------------- /src/apps/organisations/components/AddMemberForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/AddMemberForm.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/DeleteMemberDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/DeleteMemberDialog.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/MenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/MenuButton.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgCard.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgCards.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgDetails.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgDictionaries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgDictionaries.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgForm.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgMembers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgMembers.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/OrgSources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/OrgSources.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/ViewOrgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/ViewOrgs.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/ViewOrgsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/ViewOrgsPage.tsx -------------------------------------------------------------------------------- /src/apps/organisations/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/components/index.ts -------------------------------------------------------------------------------- /src/apps/organisations/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/constants.ts -------------------------------------------------------------------------------- /src/apps/organisations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/index.ts -------------------------------------------------------------------------------- /src/apps/organisations/pages/CreateOrgPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/pages/CreateOrgPage.tsx -------------------------------------------------------------------------------- /src/apps/organisations/pages/EditOrgPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/pages/EditOrgPage.tsx -------------------------------------------------------------------------------- /src/apps/organisations/pages/ViewOrgPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/pages/ViewOrgPage.tsx -------------------------------------------------------------------------------- /src/apps/organisations/pages/ViewPersonalOrgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/pages/ViewPersonalOrgs.tsx -------------------------------------------------------------------------------- /src/apps/organisations/pages/ViewPublicOrgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/pages/ViewPublicOrgs.tsx -------------------------------------------------------------------------------- /src/apps/organisations/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/pages/index.ts -------------------------------------------------------------------------------- /src/apps/organisations/redux/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/redux/actionTypes.ts -------------------------------------------------------------------------------- /src/apps/organisations/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/redux/actions.ts -------------------------------------------------------------------------------- /src/apps/organisations/redux/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/redux/constants.ts -------------------------------------------------------------------------------- /src/apps/organisations/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/redux/index.ts -------------------------------------------------------------------------------- /src/apps/organisations/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/redux/reducer.ts -------------------------------------------------------------------------------- /src/apps/organisations/redux/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/redux/selectors.ts -------------------------------------------------------------------------------- /src/apps/organisations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/types.ts -------------------------------------------------------------------------------- /src/apps/organisations/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/organisations/utils.ts -------------------------------------------------------------------------------- /src/apps/sources/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/Routes.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/api.test.ts -------------------------------------------------------------------------------- /src/apps/sources/__test__/components/SourceConceptsSummary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/components/SourceConceptsSummary.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/components/SourceForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/components/SourceForm.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/components/ViewSources.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/components/ViewSources.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/components/ViewSourcesPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/components/ViewSourcesPage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/pages/CreateSourcePage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/pages/CreateSourcePage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/pages/EditSourcePage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/pages/EditSourcePage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/pages/ViewOrgSourcesPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/pages/ViewOrgSourcesPage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/pages/ViewPersonalSourcesPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/pages/ViewPersonalSourcesPage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/pages/ViewPublicSourcesPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/pages/ViewPublicSourcesPage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/pages/ViewSourcePage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/pages/ViewSourcePage.test.tsx -------------------------------------------------------------------------------- /src/apps/sources/__test__/redux/actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/redux/actions.test.ts -------------------------------------------------------------------------------- /src/apps/sources/__test__/redux/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/redux/reducer.test.ts -------------------------------------------------------------------------------- /src/apps/sources/__test__/redux/selectors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/redux/selectors.test.ts -------------------------------------------------------------------------------- /src/apps/sources/__test__/test_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/test_data.ts -------------------------------------------------------------------------------- /src/apps/sources/__test__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/__test__/utils.test.ts -------------------------------------------------------------------------------- /src/apps/sources/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/api.ts -------------------------------------------------------------------------------- /src/apps/sources/components/SourceConceptsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/components/SourceConceptsSummary.tsx -------------------------------------------------------------------------------- /src/apps/sources/components/SourceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/components/SourceForm.tsx -------------------------------------------------------------------------------- /src/apps/sources/components/ViewSources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/components/ViewSources.tsx -------------------------------------------------------------------------------- /src/apps/sources/components/ViewSourcesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/components/ViewSourcesPage.tsx -------------------------------------------------------------------------------- /src/apps/sources/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/components/index.ts -------------------------------------------------------------------------------- /src/apps/sources/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/constants.ts -------------------------------------------------------------------------------- /src/apps/sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/index.ts -------------------------------------------------------------------------------- /src/apps/sources/pages/CreateSourcePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/CreateSourcePage.tsx -------------------------------------------------------------------------------- /src/apps/sources/pages/EditSourcePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/EditSourcePage.tsx -------------------------------------------------------------------------------- /src/apps/sources/pages/ViewOrgSourcesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/ViewOrgSourcesPage.tsx -------------------------------------------------------------------------------- /src/apps/sources/pages/ViewPersonalSourcesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/ViewPersonalSourcesPage.tsx -------------------------------------------------------------------------------- /src/apps/sources/pages/ViewPublicSourcesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/ViewPublicSourcesPage.tsx -------------------------------------------------------------------------------- /src/apps/sources/pages/ViewSourcePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/ViewSourcePage.tsx -------------------------------------------------------------------------------- /src/apps/sources/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/pages/index.ts -------------------------------------------------------------------------------- /src/apps/sources/redux/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/redux/actionTypes.ts -------------------------------------------------------------------------------- /src/apps/sources/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/redux/actions.ts -------------------------------------------------------------------------------- /src/apps/sources/redux/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/redux/constants.ts -------------------------------------------------------------------------------- /src/apps/sources/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/redux/index.ts -------------------------------------------------------------------------------- /src/apps/sources/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/redux/reducer.ts -------------------------------------------------------------------------------- /src/apps/sources/redux/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/redux/selectors.ts -------------------------------------------------------------------------------- /src/apps/sources/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/types.ts -------------------------------------------------------------------------------- /src/apps/sources/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/apps/sources/utils.ts -------------------------------------------------------------------------------- /src/components/AppsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/AppsMenu.tsx -------------------------------------------------------------------------------- /src/components/DragHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/DragHandle.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/NavDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/NavDrawer.tsx -------------------------------------------------------------------------------- /src/components/VerifiedSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/VerifiedSource.tsx -------------------------------------------------------------------------------- /src/components/drag_handle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/drag_handle-icon.svg -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/omrs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/components/omrs-logo.svg -------------------------------------------------------------------------------- /src/fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2 -------------------------------------------------------------------------------- /src/fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2 -------------------------------------------------------------------------------- /src/fonts/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/fonts/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2 -------------------------------------------------------------------------------- /src/fonts/nunito.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/fonts/nunito.css -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/redux/__test__/localStorageUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/__test__/localStorageUtils.test.ts -------------------------------------------------------------------------------- /src/redux/__test__/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/__test__/reducer.test.ts -------------------------------------------------------------------------------- /src/redux/__test__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/__test__/utils.test.ts -------------------------------------------------------------------------------- /src/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/index.ts -------------------------------------------------------------------------------- /src/redux/localStorageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/localStorageUtils.ts -------------------------------------------------------------------------------- /src/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/reducer.ts -------------------------------------------------------------------------------- /src/redux/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/selectors.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/redux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/types.ts -------------------------------------------------------------------------------- /src/redux/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/redux/utils.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/test-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/test-utils.test.tsx -------------------------------------------------------------------------------- /src/tests/unit/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/tests/unit/App.test.tsx -------------------------------------------------------------------------------- /src/utils/components/AsyncSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/components/AsyncSelect.tsx -------------------------------------------------------------------------------- /src/utils/components/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/components/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /src/utils/components/NestedErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/components/NestedErrorMessage.tsx -------------------------------------------------------------------------------- /src/utils/components/ProgressOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/components/ProgressOverlay.tsx -------------------------------------------------------------------------------- /src/utils/components/ToastAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/components/ToastAlert.tsx -------------------------------------------------------------------------------- /src/utils/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/components/index.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/hooks.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/tests/unit/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/tests/unit/utils.test.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/urlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/urlUtils.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /start_local_instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/start_local_instance.sh -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/static.json -------------------------------------------------------------------------------- /stop_local_instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/stop_local_instance.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wait_for_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmrs/openmrs-ocl-client/HEAD/wait_for_url.sh --------------------------------------------------------------------------------