├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml └── vcs.xml ├── .travis.yml ├── LICENSE ├── NOTICE ├── README.md ├── app.json ├── babel.config.js ├── fhir-client.min.js ├── index.html ├── keys ├── __mocks__ │ └── ecprivkey.pem ├── ecprivkey.pem └── jwk-keypair.json ├── launch.html ├── package.json ├── sandbox.iml ├── scripts └── express │ └── app.js ├── src ├── actions │ ├── action-types.js │ ├── card-demo-actions.js │ ├── cds-services-actions.js │ ├── fhir-server-actions.js │ ├── hook-actions.js │ ├── medication-select-actions.js │ ├── medication-sign-actions.js │ ├── patient-actions.js │ ├── service-exchange-actions.js │ ├── smart-auth-actions.js │ └── ui-actions.js ├── assets │ ├── __mocks__ │ │ └── fileMock.js │ ├── cds-hooks-logo.png │ ├── medication-list.js │ ├── pama-procedure-codes.json │ └── pama-reason-codes.json ├── components │ ├── BaseEntryBody │ │ ├── base-entry-body.css │ │ └── base-entry-body.jsx │ ├── CardDemo │ │ ├── card-demo.css │ │ └── card-demo.jsx │ ├── CardList │ │ ├── card-list.css │ │ └── card-list.jsx │ ├── ConfigureServices │ │ ├── ServiceDisplay │ │ │ ├── service-display.css │ │ │ └── service-display.jsx │ │ ├── configure-services.css │ │ └── configure-services.jsx │ ├── ContextView │ │ ├── context-view.css │ │ └── context-view.jsx │ ├── ExchangePanel │ │ ├── exchange-panel.css │ │ └── exchange-panel.jsx │ ├── FhirServerEntry │ │ ├── fhir-server-entry.css │ │ └── fhir-server-entry.jsx │ ├── Header │ │ ├── header.css │ │ └── header.jsx │ ├── MainView │ │ ├── main-view.css │ │ └── main-view.jsx │ ├── MessagePanel │ │ ├── message-panel.css │ │ └── message-panel.jsx │ ├── Pama │ │ ├── pama.css │ │ └── pama.jsx │ ├── PatientBanner │ │ ├── patient-banner.css │ │ └── patient-banner.jsx │ ├── PatientEntry │ │ ├── patient-entry.css │ │ └── patient-entry.jsx │ ├── PatientSelect │ │ ├── patient-select.css │ │ └── patient-select.jsx │ ├── PatientView │ │ ├── patient-view.css │ │ └── patient-view.jsx │ ├── RxSign │ │ ├── rx-sign.css │ │ └── rx-sign.jsx │ ├── RxView │ │ ├── rx-view.css │ │ └── rx-view.jsx │ └── ServicesEntry │ │ ├── services-entry.css │ │ └── services-entry.jsx ├── config │ └── fhir-config.js ├── index.jsx ├── middleware │ ├── cds-execution.js │ └── persist-data.js ├── reducers │ ├── card-demo-reducers.js │ ├── cds-services-reducers.js │ ├── fhir-server-reducers.js │ ├── helpers │ │ └── services-filter.js │ ├── hook-reducers.js │ ├── index.js │ ├── medication-reducers.js │ ├── pama-reducers.js │ ├── patient-reducers.js │ └── service-exchange-reducers.js ├── retrieve-data-helpers │ ├── __mocks__ │ │ └── query-string.js │ ├── all-patient-retrieval.js │ ├── discovery-services-retrieval.js │ ├── fhir-metadata-retrieval.js │ ├── jwt-generator.js │ ├── launch-context-retrieval.js │ ├── patient-retrieval.js │ ├── service-exchange.js │ ├── smart-authorize.js │ └── smart-launch.js └── store │ └── store.js ├── terraI18n.config.js ├── tests ├── actions │ ├── card-demo-actions.test.js │ ├── cds-services-actions.test.js │ ├── fhir-server-actions.test.js │ ├── hook-actions.test.js │ ├── medication-select-actions.test.js │ ├── patient-actions.js │ ├── service-exchange-actions.test.js │ ├── smart-auth-actions.test.js │ └── ui-actions.test.js ├── components │ ├── BaseEntryBody │ │ └── base-entry-body.test.js │ ├── Card │ │ └── card.test.js │ ├── CardDemo │ │ └── card-demo.test.js │ ├── CardList │ │ └── card-list.test.js │ ├── ConfigureServices │ │ ├── ServiceDisplay │ │ │ └── service-display.test.js │ │ ├── configure-services.test.js │ │ └── intl-context-setup.js │ ├── ContextView │ │ └── context-view.test.js │ ├── ExchangePanel │ │ └── exchange-panel.test.js │ ├── FhirServerEntry │ │ ├── fhir-server-entry.test.js │ │ └── intl-context-setup.js │ ├── Header │ │ └── header.test.js │ ├── MainView │ │ └── main-view.test.js │ ├── MessagePanel │ │ └── message-panel.test.js │ ├── Pama │ │ └── pama.test.js │ ├── PatientBanner │ │ └── patient-banner.test.js │ ├── PatientEntry │ │ ├── intl-context-setup.js │ │ └── patient-entry.test.js │ ├── PatientView │ │ └── patient-view.test.js │ ├── RxView │ │ ├── intl-context-setup.js │ │ └── rx-view.test.js │ └── ServicesEntry │ │ ├── intl-context-setup.js │ │ └── services-entry.test.js ├── jest-setup.js ├── local-storage-mock.js ├── middleware │ ├── cds-execution.test.js │ └── persist-data.test.js ├── reducers │ ├── card-demo-reducers.test.js │ ├── cds-services-reducers.test.js │ ├── fhir-server-reducers.test.js │ ├── helpers │ │ └── services-filter.test.js │ ├── hook-reducers.test.js │ ├── medication-reducers.test.js │ ├── pama-reducers.test.js │ ├── patient-reducers.test.js │ └── service-exchange-reducers.test.js └── retrieve-data-helpers │ ├── discovery-services-retrieval.test.js │ ├── fhir-metadata-retrieval.test.js │ ├── jwt-generator.test.js │ ├── launch-context-retrieval.test.js │ ├── patient-retrieval.test.js │ ├── service-exchange.test.js │ └── smart-launch.test.js ├── webpack.config.common.js ├── webpack.config.dev.js └── webpack.config.prod.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/babel.config.js -------------------------------------------------------------------------------- /fhir-client.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/fhir-client.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/index.html -------------------------------------------------------------------------------- /keys/__mocks__/ecprivkey.pem: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /keys/ecprivkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/keys/ecprivkey.pem -------------------------------------------------------------------------------- /keys/jwk-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/keys/jwk-keypair.json -------------------------------------------------------------------------------- /launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/launch.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/package.json -------------------------------------------------------------------------------- /sandbox.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/sandbox.iml -------------------------------------------------------------------------------- /scripts/express/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/scripts/express/app.js -------------------------------------------------------------------------------- /src/actions/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/action-types.js -------------------------------------------------------------------------------- /src/actions/card-demo-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/card-demo-actions.js -------------------------------------------------------------------------------- /src/actions/cds-services-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/cds-services-actions.js -------------------------------------------------------------------------------- /src/actions/fhir-server-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/fhir-server-actions.js -------------------------------------------------------------------------------- /src/actions/hook-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/hook-actions.js -------------------------------------------------------------------------------- /src/actions/medication-select-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/medication-select-actions.js -------------------------------------------------------------------------------- /src/actions/medication-sign-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/medication-sign-actions.js -------------------------------------------------------------------------------- /src/actions/patient-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/patient-actions.js -------------------------------------------------------------------------------- /src/actions/service-exchange-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/service-exchange-actions.js -------------------------------------------------------------------------------- /src/actions/smart-auth-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/smart-auth-actions.js -------------------------------------------------------------------------------- /src/actions/ui-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/actions/ui-actions.js -------------------------------------------------------------------------------- /src/assets/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /src/assets/cds-hooks-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/assets/cds-hooks-logo.png -------------------------------------------------------------------------------- /src/assets/medication-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/assets/medication-list.js -------------------------------------------------------------------------------- /src/assets/pama-procedure-codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/assets/pama-procedure-codes.json -------------------------------------------------------------------------------- /src/assets/pama-reason-codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/assets/pama-reason-codes.json -------------------------------------------------------------------------------- /src/components/BaseEntryBody/base-entry-body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/BaseEntryBody/base-entry-body.css -------------------------------------------------------------------------------- /src/components/BaseEntryBody/base-entry-body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/BaseEntryBody/base-entry-body.jsx -------------------------------------------------------------------------------- /src/components/CardDemo/card-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/CardDemo/card-demo.css -------------------------------------------------------------------------------- /src/components/CardDemo/card-demo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/CardDemo/card-demo.jsx -------------------------------------------------------------------------------- /src/components/CardList/card-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/CardList/card-list.css -------------------------------------------------------------------------------- /src/components/CardList/card-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/CardList/card-list.jsx -------------------------------------------------------------------------------- /src/components/ConfigureServices/ServiceDisplay/service-display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ConfigureServices/ServiceDisplay/service-display.css -------------------------------------------------------------------------------- /src/components/ConfigureServices/ServiceDisplay/service-display.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ConfigureServices/ServiceDisplay/service-display.jsx -------------------------------------------------------------------------------- /src/components/ConfigureServices/configure-services.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ConfigureServices/configure-services.css -------------------------------------------------------------------------------- /src/components/ConfigureServices/configure-services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ConfigureServices/configure-services.jsx -------------------------------------------------------------------------------- /src/components/ContextView/context-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ContextView/context-view.css -------------------------------------------------------------------------------- /src/components/ContextView/context-view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ContextView/context-view.jsx -------------------------------------------------------------------------------- /src/components/ExchangePanel/exchange-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ExchangePanel/exchange-panel.css -------------------------------------------------------------------------------- /src/components/ExchangePanel/exchange-panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ExchangePanel/exchange-panel.jsx -------------------------------------------------------------------------------- /src/components/FhirServerEntry/fhir-server-entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/FhirServerEntry/fhir-server-entry.css -------------------------------------------------------------------------------- /src/components/FhirServerEntry/fhir-server-entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/FhirServerEntry/fhir-server-entry.jsx -------------------------------------------------------------------------------- /src/components/Header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/Header/header.css -------------------------------------------------------------------------------- /src/components/Header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/Header/header.jsx -------------------------------------------------------------------------------- /src/components/MainView/main-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/MainView/main-view.css -------------------------------------------------------------------------------- /src/components/MainView/main-view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/MainView/main-view.jsx -------------------------------------------------------------------------------- /src/components/MessagePanel/message-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/MessagePanel/message-panel.css -------------------------------------------------------------------------------- /src/components/MessagePanel/message-panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/MessagePanel/message-panel.jsx -------------------------------------------------------------------------------- /src/components/Pama/pama.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/Pama/pama.css -------------------------------------------------------------------------------- /src/components/Pama/pama.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/Pama/pama.jsx -------------------------------------------------------------------------------- /src/components/PatientBanner/patient-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientBanner/patient-banner.css -------------------------------------------------------------------------------- /src/components/PatientBanner/patient-banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientBanner/patient-banner.jsx -------------------------------------------------------------------------------- /src/components/PatientEntry/patient-entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientEntry/patient-entry.css -------------------------------------------------------------------------------- /src/components/PatientEntry/patient-entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientEntry/patient-entry.jsx -------------------------------------------------------------------------------- /src/components/PatientSelect/patient-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientSelect/patient-select.css -------------------------------------------------------------------------------- /src/components/PatientSelect/patient-select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientSelect/patient-select.jsx -------------------------------------------------------------------------------- /src/components/PatientView/patient-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientView/patient-view.css -------------------------------------------------------------------------------- /src/components/PatientView/patient-view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/PatientView/patient-view.jsx -------------------------------------------------------------------------------- /src/components/RxSign/rx-sign.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/RxSign/rx-sign.css -------------------------------------------------------------------------------- /src/components/RxSign/rx-sign.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/RxSign/rx-sign.jsx -------------------------------------------------------------------------------- /src/components/RxView/rx-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/RxView/rx-view.css -------------------------------------------------------------------------------- /src/components/RxView/rx-view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/RxView/rx-view.jsx -------------------------------------------------------------------------------- /src/components/ServicesEntry/services-entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ServicesEntry/services-entry.css -------------------------------------------------------------------------------- /src/components/ServicesEntry/services-entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/components/ServicesEntry/services-entry.jsx -------------------------------------------------------------------------------- /src/config/fhir-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/config/fhir-config.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/middleware/cds-execution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/middleware/cds-execution.js -------------------------------------------------------------------------------- /src/middleware/persist-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/middleware/persist-data.js -------------------------------------------------------------------------------- /src/reducers/card-demo-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/card-demo-reducers.js -------------------------------------------------------------------------------- /src/reducers/cds-services-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/cds-services-reducers.js -------------------------------------------------------------------------------- /src/reducers/fhir-server-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/fhir-server-reducers.js -------------------------------------------------------------------------------- /src/reducers/helpers/services-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/helpers/services-filter.js -------------------------------------------------------------------------------- /src/reducers/hook-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/hook-reducers.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/medication-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/medication-reducers.js -------------------------------------------------------------------------------- /src/reducers/pama-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/pama-reducers.js -------------------------------------------------------------------------------- /src/reducers/patient-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/patient-reducers.js -------------------------------------------------------------------------------- /src/reducers/service-exchange-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/reducers/service-exchange-reducers.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/__mocks__/query-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/__mocks__/query-string.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/all-patient-retrieval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/all-patient-retrieval.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/discovery-services-retrieval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/discovery-services-retrieval.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/fhir-metadata-retrieval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/fhir-metadata-retrieval.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/jwt-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/jwt-generator.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/launch-context-retrieval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/launch-context-retrieval.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/patient-retrieval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/patient-retrieval.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/service-exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/service-exchange.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/smart-authorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/smart-authorize.js -------------------------------------------------------------------------------- /src/retrieve-data-helpers/smart-launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/retrieve-data-helpers/smart-launch.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/src/store/store.js -------------------------------------------------------------------------------- /terraI18n.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | locales: ['en', 'en-US'], 3 | }; 4 | -------------------------------------------------------------------------------- /tests/actions/card-demo-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/card-demo-actions.test.js -------------------------------------------------------------------------------- /tests/actions/cds-services-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/cds-services-actions.test.js -------------------------------------------------------------------------------- /tests/actions/fhir-server-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/fhir-server-actions.test.js -------------------------------------------------------------------------------- /tests/actions/hook-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/hook-actions.test.js -------------------------------------------------------------------------------- /tests/actions/medication-select-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/medication-select-actions.test.js -------------------------------------------------------------------------------- /tests/actions/patient-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/patient-actions.js -------------------------------------------------------------------------------- /tests/actions/service-exchange-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/service-exchange-actions.test.js -------------------------------------------------------------------------------- /tests/actions/smart-auth-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/smart-auth-actions.test.js -------------------------------------------------------------------------------- /tests/actions/ui-actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/actions/ui-actions.test.js -------------------------------------------------------------------------------- /tests/components/BaseEntryBody/base-entry-body.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/BaseEntryBody/base-entry-body.test.js -------------------------------------------------------------------------------- /tests/components/Card/card.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/Card/card.test.js -------------------------------------------------------------------------------- /tests/components/CardDemo/card-demo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/CardDemo/card-demo.test.js -------------------------------------------------------------------------------- /tests/components/CardList/card-list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/CardList/card-list.test.js -------------------------------------------------------------------------------- /tests/components/ConfigureServices/ServiceDisplay/service-display.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ConfigureServices/ServiceDisplay/service-display.test.js -------------------------------------------------------------------------------- /tests/components/ConfigureServices/configure-services.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ConfigureServices/configure-services.test.js -------------------------------------------------------------------------------- /tests/components/ConfigureServices/intl-context-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ConfigureServices/intl-context-setup.js -------------------------------------------------------------------------------- /tests/components/ContextView/context-view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ContextView/context-view.test.js -------------------------------------------------------------------------------- /tests/components/ExchangePanel/exchange-panel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ExchangePanel/exchange-panel.test.js -------------------------------------------------------------------------------- /tests/components/FhirServerEntry/fhir-server-entry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/FhirServerEntry/fhir-server-entry.test.js -------------------------------------------------------------------------------- /tests/components/FhirServerEntry/intl-context-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/FhirServerEntry/intl-context-setup.js -------------------------------------------------------------------------------- /tests/components/Header/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/Header/header.test.js -------------------------------------------------------------------------------- /tests/components/MainView/main-view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/MainView/main-view.test.js -------------------------------------------------------------------------------- /tests/components/MessagePanel/message-panel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/MessagePanel/message-panel.test.js -------------------------------------------------------------------------------- /tests/components/Pama/pama.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/Pama/pama.test.js -------------------------------------------------------------------------------- /tests/components/PatientBanner/patient-banner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/PatientBanner/patient-banner.test.js -------------------------------------------------------------------------------- /tests/components/PatientEntry/intl-context-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/PatientEntry/intl-context-setup.js -------------------------------------------------------------------------------- /tests/components/PatientEntry/patient-entry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/PatientEntry/patient-entry.test.js -------------------------------------------------------------------------------- /tests/components/PatientView/patient-view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/PatientView/patient-view.test.js -------------------------------------------------------------------------------- /tests/components/RxView/intl-context-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/RxView/intl-context-setup.js -------------------------------------------------------------------------------- /tests/components/RxView/rx-view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/RxView/rx-view.test.js -------------------------------------------------------------------------------- /tests/components/ServicesEntry/intl-context-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ServicesEntry/intl-context-setup.js -------------------------------------------------------------------------------- /tests/components/ServicesEntry/services-entry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/components/ServicesEntry/services-entry.test.js -------------------------------------------------------------------------------- /tests/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/jest-setup.js -------------------------------------------------------------------------------- /tests/local-storage-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/local-storage-mock.js -------------------------------------------------------------------------------- /tests/middleware/cds-execution.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/middleware/cds-execution.test.js -------------------------------------------------------------------------------- /tests/middleware/persist-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/middleware/persist-data.test.js -------------------------------------------------------------------------------- /tests/reducers/card-demo-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/card-demo-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/cds-services-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/cds-services-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/fhir-server-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/fhir-server-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/helpers/services-filter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/helpers/services-filter.test.js -------------------------------------------------------------------------------- /tests/reducers/hook-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/hook-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/medication-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/medication-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/pama-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/pama-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/patient-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/patient-reducers.test.js -------------------------------------------------------------------------------- /tests/reducers/service-exchange-reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/reducers/service-exchange-reducers.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/discovery-services-retrieval.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/discovery-services-retrieval.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/fhir-metadata-retrieval.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/fhir-metadata-retrieval.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/jwt-generator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/jwt-generator.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/launch-context-retrieval.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/launch-context-retrieval.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/patient-retrieval.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/patient-retrieval.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/service-exchange.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/service-exchange.test.js -------------------------------------------------------------------------------- /tests/retrieve-data-helpers/smart-launch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/tests/retrieve-data-helpers/smart-launch.test.js -------------------------------------------------------------------------------- /webpack.config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/webpack.config.common.js -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-hooks/sandbox/HEAD/webpack.config.prod.js --------------------------------------------------------------------------------