Skip to content

Commit

Permalink
BREAKING: Rename outpatient-app to service-queues (#647)
Browse files Browse the repository at this point in the history
Co-authored-by: Dennis Kigen <[email protected]>
  • Loading branch information
donaldkibet and denniskigen authored Sep 21, 2023
1 parent bb87f1d commit a16e38c
Show file tree
Hide file tree
Showing 182 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This repository contains frontend modules for the OpenMRS SPA. These modules rel

- [Active visits app](packages/esm-active-visits-app/)
- [Appointments app](packages/esm-appointments-app/)
- [Outpatient app](packages/esm-outpatient-app/README.md)
- [Service queues](packages/esm-service-queues-app/README.md)
- [Patient search](packages/esm-patient-search-app)
- [Patient registration](packages/esm-patient-registration-app)
- [Patient list](packages/esm-patient-list-app)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The `Service Queues` app is a frontend module that enables users to track a pati
The key component of the service queue app is the `Active Visits` table. It displays a tabular overview of the active visits ongoing in a facility and the wait time of patients. Users can add patients to the service queue by starting visits for them. They can also view information from the current active visits as well as the previous visit on each queue entry by clicking the table extension slot. Users can also change the priority and status of an entry in the queue from the UI, effectively moving a patient from one point in the queue to another. In order to indicate that a patient is currently attending service, click on the bell icon. In order to edit an entry, click the pencil icon.

Amend the following concepts in the configuration schema to get started using the module:
- `priorityConceptSetUuid` - concept UUID for `prioritity`.
- `priorityConceptSetUuid` - concept UUID for `priority`.
- `defaultPriorityConceptUuid` - concept UUID for `not urgent`.
- `serviceConceptSetUuid` - concept UUID for `service`.
- `statusConceptSetUuid` - concept UUID for `status`.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@openmrs/esm-outpatient-app",
"name": "@openmrs/esm-service-queues-app",
"version": "5.0.0",
"description": "Outpatient front-end module for the OpenMRS SPA",
"browser": "dist/openmrs-esm-outpatient-app.js",
"browser": "dist/openmrs-esm-service-queues-app.js",
"main": "src/index.ts",
"source": true,
"license": "MPL-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { dashboardMeta } from './dashboard.meta';

export const importTranslation = require.context('../translations', false, /.json$/, 'lazy');

const moduleName = '@openmrs/esm-outpatient-app';
const moduleName = '@openmrs/esm-service-queues-app';

const options = {
featureName: 'outpatient',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const PatientQueueHeader: React.FC<{ title?: string }> = ({ title }) => {
<div className={styles['left-justified-items']}>
<PatientQueueIllustration />
<div className={styles['page-labels']}>
<p>{t('serviceQueue', 'Service queue')}</p>
<p>{t('serviceQueues', 'Service queues')}</p>
<p className={styles['page-name']}>{title ?? t('home', 'Home')}</p>
</div>
</div>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
30 changes: 15 additions & 15 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3743,21 +3743,6 @@ __metadata:
languageName: node
linkType: hard

"@openmrs/esm-outpatient-app@workspace:packages/esm-outpatient-app":
version: 0.0.0-use.local
resolution: "@openmrs/esm-outpatient-app@workspace:packages/esm-outpatient-app"
dependencies:
"@carbon/react": ^1.12.0
lodash-es: ^4.17.15
webpack: ^5.74.0
peerDependencies:
"@openmrs/esm-framework": 5.x
react: ^18.1.0
react-i18next: 11.x
react-router-dom: 6.x
languageName: unknown
linkType: soft

"@openmrs/esm-patient-list-app@workspace:packages/esm-patient-list-app":
version: 0.0.0-use.local
resolution: "@openmrs/esm-patient-list-app@workspace:packages/esm-patient-list-app"
Expand Down Expand Up @@ -3894,6 +3879,21 @@ __metadata:
languageName: node
linkType: hard

"@openmrs/esm-service-queues-app@workspace:packages/esm-service-queues-app":
version: 0.0.0-use.local
resolution: "@openmrs/esm-service-queues-app@workspace:packages/esm-service-queues-app"
dependencies:
"@carbon/react": ^1.12.0
lodash-es: ^4.17.15
webpack: ^5.74.0
peerDependencies:
"@openmrs/esm-framework": 5.x
react: ^18.1.0
react-i18next: 11.x
react-router-dom: 6.x
languageName: unknown
linkType: soft

"@openmrs/esm-state@npm:^5.1.1-pre.922":
version: 5.1.1-pre.922
resolution: "@openmrs/esm-state@npm:5.1.1-pre.922"
Expand Down

0 comments on commit a16e38c

Please sign in to comment.