vintasend 0.4.0 → 0.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/examples/vintasend-medplum-example/.env.example +11 -0
- package/dist/examples/vintasend-medplum-example/IMPLEMENTATION_PLAN_FILE_ATTACHMENTS.md +597 -0
- package/dist/examples/vintasend-medplum-example/README.md +190 -0
- package/dist/examples/vintasend-medplum-example/TUTORIAL_EMAIL_NOTIFICATIONS.md +2596 -0
- package/dist/examples/vintasend-medplum-example/bots/handlers/send-pending-notifications-bot.ts +39 -0
- package/dist/examples/vintasend-medplum-example/bots/handlers/send-task-assignment-email.ts +41 -0
- package/dist/examples/vintasend-medplum-example/bots/handlers/task-due-soon-notification-bot.ts +86 -0
- package/dist/examples/vintasend-medplum-example/bots/index.ts +53 -0
- package/dist/examples/vintasend-medplum-example/bots/services/emails/schedule-task-due-soon-email.ts +84 -0
- package/dist/examples/vintasend-medplum-example/bots/services/emails/send-task-assignment-email.test.ts +388 -0
- package/dist/examples/vintasend-medplum-example/bots/services/emails/send-task-assignment-email.ts +113 -0
- package/dist/examples/vintasend-medplum-example/bots/shared/task-due-soon-helpers.ts +115 -0
- package/dist/examples/vintasend-medplum-example/bots/task-assignment-bot.ts +41 -0
- package/dist/examples/vintasend-medplum-example/compiled-notification-templates.json +6 -0
- package/dist/examples/vintasend-medplum-example/esbuild-script.mjs +71 -0
- package/dist/examples/vintasend-medplum-example/index.html +14 -0
- package/dist/examples/vintasend-medplum-example/lib/constants.ts +32 -0
- package/dist/examples/vintasend-medplum-example/lib/extensions.ts +1 -0
- package/dist/examples/vintasend-medplum-example/lib/file-upload.test.ts +389 -0
- package/dist/examples/vintasend-medplum-example/lib/file-upload.ts +222 -0
- package/dist/examples/vintasend-medplum-example/lib/medplum-singleton.ts +18 -0
- package/dist/examples/vintasend-medplum-example/lib/notification-service.test.ts +293 -0
- package/dist/examples/vintasend-medplum-example/lib/notification-service.ts +284 -0
- package/dist/examples/vintasend-medplum-example/lib/patients.ts +20 -0
- package/dist/examples/vintasend-medplum-example/notification-templates/emails/task-assignment/body.html.pug +37 -0
- package/dist/examples/vintasend-medplum-example/notification-templates/emails/task-assignment/subject.txt.pug +4 -0
- package/dist/examples/vintasend-medplum-example/notification-templates/emails/task-due-soon/body.html.pug +34 -0
- package/dist/examples/vintasend-medplum-example/notification-templates/emails/task-due-soon/subject.txt.pug +4 -0
- package/dist/examples/vintasend-medplum-example/package.json +75 -0
- package/dist/examples/vintasend-medplum-example/plugins/gql-plugin.mjs +31 -0
- package/dist/examples/vintasend-medplum-example/postcss.config.mjs +21 -0
- package/dist/examples/vintasend-medplum-example/public/favicon.ico +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/acuity.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/auth0.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/azure.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/calcom.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/candid.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/claude.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/datadog.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/deepseek.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/entra.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/epic.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/google.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/healthgorilla.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/healthie.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/labcorp.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/okta.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/openai.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/particle.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/quest.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/recaptcha.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/snowflake.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/stedi.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/stripe.png +0 -0
- package/dist/examples/vintasend-medplum-example/public/img/integrations/sumo.png +0 -0
- package/dist/examples/vintasend-medplum-example/scripts/README.md +162 -0
- package/dist/examples/vintasend-medplum-example/scripts/client.ts +18 -0
- package/dist/examples/vintasend-medplum-example/scripts/deploy-bots.ts +171 -0
- package/dist/examples/vintasend-medplum-example/src/App.tsx +185 -0
- package/dist/examples/vintasend-medplum-example/src/components/ChargeItem/ChargeItemList.test.tsx +350 -0
- package/dist/examples/vintasend-medplum-example/src/components/ChargeItem/ChargeItemList.tsx +241 -0
- package/dist/examples/vintasend-medplum-example/src/components/ChargeItem/ChargeItemPanel.test.tsx +616 -0
- package/dist/examples/vintasend-medplum-example/src/components/ChargeItem/ChargeItemPanel.tsx +138 -0
- package/dist/examples/vintasend-medplum-example/src/components/Conditions/ConditionItem.test.tsx +92 -0
- package/dist/examples/vintasend-medplum-example/src/components/Conditions/ConditionItem.tsx +47 -0
- package/dist/examples/vintasend-medplum-example/src/components/Conditions/ConditionList.test.tsx +464 -0
- package/dist/examples/vintasend-medplum-example/src/components/Conditions/ConditionList.tsx +186 -0
- package/dist/examples/vintasend-medplum-example/src/components/Conditions/ConditionModal.test.tsx +80 -0
- package/dist/examples/vintasend-medplum-example/src/components/Conditions/ConditionModal.tsx +82 -0
- package/dist/examples/vintasend-medplum-example/src/components/DoseSpotIcon.test.tsx +100 -0
- package/dist/examples/vintasend-medplum-example/src/components/DoseSpotIcon.tsx +20 -0
- package/dist/examples/vintasend-medplum-example/src/components/IntegrationCard.module.css +3 -0
- package/dist/examples/vintasend-medplum-example/src/components/IntegrationCard.tsx +62 -0
- package/dist/examples/vintasend-medplum-example/src/components/MessageWithLinks.tsx +47 -0
- package/dist/examples/vintasend-medplum-example/src/components/PerformingLabInput.test.tsx +299 -0
- package/dist/examples/vintasend-medplum-example/src/components/PerformingLabInput.tsx +52 -0
- package/dist/examples/vintasend-medplum-example/src/components/ResourceFormWithRequiredProfile.tsx +82 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/BillingTab.test.tsx +1016 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/BillingTab.tsx +298 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/EncounterChart.test.tsx +732 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/EncounterChart.tsx +282 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/EncounterHeader.test.tsx +268 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/EncounterHeader.tsx +224 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/SignAddendum.test.tsx +255 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/SignAddendum.tsx +212 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/SignLockDialog.test.tsx +120 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/SignLockDialog.tsx +57 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/VisitDetailsPanel.test.tsx +224 -0
- package/dist/examples/vintasend-medplum-example/src/components/encounter/VisitDetailsPanel.tsx +100 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/CoverageInput.test.tsx +431 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/CoverageInput.tsx +130 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabListItem.module.css +31 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabListItem.test.tsx +234 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabListItem.tsx +143 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabOrderDetails.module.css +11 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabOrderDetails.test.tsx +875 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabOrderDetails.tsx +943 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabResultDetails.test.tsx +413 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabResultDetails.tsx +203 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/LabSelectEmpty.tsx +22 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/README.md +104 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/TestMetadataCardInput.test.tsx +318 -0
- package/dist/examples/vintasend-medplum-example/src/components/labs/TestMetadataCardInput.tsx +87 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ChatList.test.tsx +126 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ChatList.tsx +38 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ChatListItem.module.css +23 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ChatListItem.test.tsx +167 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ChatListItem.tsx +53 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/NewTopicDialog.test.tsx +94 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/NewTopicDialog.tsx +165 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ParticipantFilter.module.css +8 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ParticipantFilter.test.tsx +523 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ParticipantFilter.tsx +230 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ThreadInbox.module.css +23 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ThreadInbox.test.tsx +567 -0
- package/dist/examples/vintasend-medplum-example/src/components/messages/ThreadInbox.tsx +358 -0
- package/dist/examples/vintasend-medplum-example/src/components/plandefinition/AddPlanDefinition.module.css +40 -0
- package/dist/examples/vintasend-medplum-example/src/components/plandefinition/AddPlanDefinition.tsx +257 -0
- package/dist/examples/vintasend-medplum-example/src/components/schedule/CreateVisit.module.css +7 -0
- package/dist/examples/vintasend-medplum-example/src/components/schedule/CreateVisit.test.tsx +279 -0
- package/dist/examples/vintasend-medplum-example/src/components/schedule/CreateVisit.tsx +156 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/HistoryList.module.css +45 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/HistoryList.test.tsx +90 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/HistoryList.tsx +84 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/ResourceBox.module.css +26 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/ResourceBox.tsx +90 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/ResourcePanel.test.tsx +305 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/ResourcePanel.tsx +46 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/SpacesInbox.module.css +262 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/SpacesInbox.test.tsx +622 -0
- package/dist/examples/vintasend-medplum-example/src/components/spaces/SpacesInbox.tsx +286 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/NewTaskModal.tsx +275 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskAttachmentList.tsx +132 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskBoard.module.css +45 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskBoard.test.tsx +749 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskBoard.tsx +416 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskDetailPanel.test.tsx +278 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskDetailPanel.tsx +133 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskDetailsModal.module.css +16 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskDetailsModal.test.tsx +255 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskDetailsModal.tsx +203 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskFileUpload.tsx +129 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskFilterMenu.test.tsx +156 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskFilterMenu.tsx +142 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskFilterMenu.utils.ts +28 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskInputNote.test.tsx +134 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskInputNote.tsx +250 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskListItem.module.css +23 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskListItem.test.tsx +149 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskListItem.tsx +53 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskNoteItem.test.tsx +68 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskNoteItem.tsx +46 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskProperties.test.tsx +555 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskProperties.tsx +170 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskSelectEmpty.test.tsx +32 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/TaskSelectEmpty.tsx +34 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/SimpleTask.test.tsx +47 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/SimpleTask.tsx +29 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskPanel.test.tsx +285 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskPanel.tsx +129 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskQuestionnaireForm.test.tsx +455 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskQuestionnaireForm.tsx +167 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskServiceRequest.test.tsx +435 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskServiceRequest.tsx +116 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskStatusPanel.module.css +38 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskStatusPanel.test.tsx +200 -0
- package/dist/examples/vintasend-medplum-example/src/components/tasks/encounter/TaskStatusPanel.tsx +84 -0
- package/dist/examples/vintasend-medplum-example/src/components/utils.test.ts +176 -0
- package/dist/examples/vintasend-medplum-example/src/components/utils.ts +17 -0
- package/dist/examples/vintasend-medplum-example/src/config/constants.ts +3 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useDebouncedUpdateResource.test.tsx +166 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useDebouncedUpdateResource.ts +28 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useEncounter.test.tsx +94 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useEncounter.ts +11 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useEncounterChart.test.tsx +477 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useEncounterChart.ts +191 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/usePatient.test.tsx +100 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/usePatient.ts +18 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useThreadInbox.test.tsx +379 -0
- package/dist/examples/vintasend-medplum-example/src/hooks/useThreadInbox.ts +194 -0
- package/dist/examples/vintasend-medplum-example/src/index.css +8 -0
- package/dist/examples/vintasend-medplum-example/src/main.tsx +57 -0
- package/dist/examples/vintasend-medplum-example/src/pages/SearchPage.module.css +6 -0
- package/dist/examples/vintasend-medplum-example/src/pages/SearchPage.test.tsx +295 -0
- package/dist/examples/vintasend-medplum-example/src/pages/SearchPage.tsx +124 -0
- package/dist/examples/vintasend-medplum-example/src/pages/SignInPage.test.tsx +77 -0
- package/dist/examples/vintasend-medplum-example/src/pages/SignInPage.tsx +22 -0
- package/dist/examples/vintasend-medplum-example/src/pages/encounter/EncounterChartPage.test.tsx +87 -0
- package/dist/examples/vintasend-medplum-example/src/pages/encounter/EncounterChartPage.tsx +27 -0
- package/dist/examples/vintasend-medplum-example/src/pages/encounter/EncounterModal.module.css +16 -0
- package/dist/examples/vintasend-medplum-example/src/pages/encounter/EncounterModal.test.tsx +287 -0
- package/dist/examples/vintasend-medplum-example/src/pages/encounter/EncounterModal.tsx +151 -0
- package/dist/examples/vintasend-medplum-example/src/pages/integrations/DoseSpotFavoritesPage.test.tsx +519 -0
- package/dist/examples/vintasend-medplum-example/src/pages/integrations/DoseSpotFavoritesPage.tsx +179 -0
- package/dist/examples/vintasend-medplum-example/src/pages/integrations/FavoriteMedicationsTable.tsx +76 -0
- package/dist/examples/vintasend-medplum-example/src/pages/integrations/IntegrationsPage.test.tsx +234 -0
- package/dist/examples/vintasend-medplum-example/src/pages/integrations/IntegrationsPage.tsx +222 -0
- package/dist/examples/vintasend-medplum-example/src/pages/labs/OrderLabsPage.test.tsx +356 -0
- package/dist/examples/vintasend-medplum-example/src/pages/labs/OrderLabsPage.tsx +275 -0
- package/dist/examples/vintasend-medplum-example/src/pages/messages/MessagesPage.module.css +8 -0
- package/dist/examples/vintasend-medplum-example/src/pages/messages/MessagesPage.test.tsx +103 -0
- package/dist/examples/vintasend-medplum-example/src/pages/messages/MessagesPage.tsx +78 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/CommunicationTab.test.tsx +84 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/CommunicationTab.tsx +82 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/DoseSpotAdvancedOptions.test.tsx +364 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/DoseSpotAdvancedOptions.tsx +149 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/DoseSpotTab.test.tsx +159 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/DoseSpotTab.tsx +37 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/EditTab.test.tsx +140 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/EditTab.tsx +72 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/ExportTab.test.tsx +57 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/ExportTab.tsx +14 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/IntakeFormPage.test.tsx +241 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/IntakeFormPage.tsx +710 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/LabsPage.module.css +37 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/LabsPage.test.tsx +428 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/LabsPage.tsx +334 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientPage.module.css +24 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientPage.test.tsx +154 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientPage.tsx +115 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientPage.utils.test.ts +223 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientPage.utils.ts +89 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientSearchPage.test.tsx +147 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientSearchPage.tsx +79 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/PatientTabsNavigation.tsx +35 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/TasksTab.test.tsx +185 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/TasksTab.tsx +115 -0
- package/dist/examples/vintasend-medplum-example/src/pages/patient/TimelineTab.tsx +14 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceCreatePage.test.tsx +170 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceCreatePage.tsx +117 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceDetailPage.tsx +28 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceEditPage.test.tsx +131 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceEditPage.tsx +65 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceHistoryPage.test.tsx +108 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourceHistoryPage.tsx +16 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourcePage.module.css +7 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourcePage.test.tsx +37 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/ResourcePage.tsx +44 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/useResourceType.ts +44 -0
- package/dist/examples/vintasend-medplum-example/src/pages/resource/utils.ts +9 -0
- package/dist/examples/vintasend-medplum-example/src/pages/schedule/SchedulePage.test.tsx +302 -0
- package/dist/examples/vintasend-medplum-example/src/pages/schedule/SchedulePage.tsx +416 -0
- package/dist/examples/vintasend-medplum-example/src/pages/spaces/ChatInput.tsx +91 -0
- package/dist/examples/vintasend-medplum-example/src/pages/spaces/SpacesPage.module.css +6 -0
- package/dist/examples/vintasend-medplum-example/src/pages/spaces/SpacesPage.test.tsx +102 -0
- package/dist/examples/vintasend-medplum-example/src/pages/spaces/SpacesPage.tsx +44 -0
- package/dist/examples/vintasend-medplum-example/src/pages/tasks/TasksPage.module.css +7 -0
- package/dist/examples/vintasend-medplum-example/src/pages/tasks/TasksPage.test.tsx +133 -0
- package/dist/examples/vintasend-medplum-example/src/pages/tasks/TasksPage.tsx +91 -0
- package/dist/examples/vintasend-medplum-example/src/test-utils/render.tsx +20 -0
- package/dist/examples/vintasend-medplum-example/src/test.setup.ts +49 -0
- package/dist/examples/vintasend-medplum-example/src/types/encounter.ts +8 -0
- package/dist/examples/vintasend-medplum-example/src/types/spaces.ts +10 -0
- package/dist/examples/vintasend-medplum-example/src/utils/chargeitems.test.ts +141 -0
- package/dist/examples/vintasend-medplum-example/src/utils/chargeitems.ts +59 -0
- package/dist/examples/vintasend-medplum-example/src/utils/claims.test.ts +153 -0
- package/dist/examples/vintasend-medplum-example/src/utils/claims.ts +65 -0
- package/dist/examples/vintasend-medplum-example/src/utils/communication-search.ts +47 -0
- package/dist/examples/vintasend-medplum-example/src/utils/coverage.test.ts +48 -0
- package/dist/examples/vintasend-medplum-example/src/utils/coverage.ts +33 -0
- package/dist/examples/vintasend-medplum-example/src/utils/documentReference.test.ts +102 -0
- package/dist/examples/vintasend-medplum-example/src/utils/documentReference.ts +55 -0
- package/dist/examples/vintasend-medplum-example/src/utils/encounter.test.ts +169 -0
- package/dist/examples/vintasend-medplum-example/src/utils/encounter.ts +261 -0
- package/dist/examples/vintasend-medplum-example/src/utils/intake-form.test.ts +154 -0
- package/dist/examples/vintasend-medplum-example/src/utils/intake-form.ts +272 -0
- package/dist/examples/vintasend-medplum-example/src/utils/intake-utils.test.ts +1137 -0
- package/dist/examples/vintasend-medplum-example/src/utils/intake-utils.ts +827 -0
- package/dist/examples/vintasend-medplum-example/src/utils/notifications.test.ts +27 -0
- package/dist/examples/vintasend-medplum-example/src/utils/notifications.ts +15 -0
- package/dist/examples/vintasend-medplum-example/src/utils/spaceMessaging.ts +249 -0
- package/dist/examples/vintasend-medplum-example/src/utils/spacePersistence.test.ts +450 -0
- package/dist/examples/vintasend-medplum-example/src/utils/spacePersistence.ts +147 -0
- package/dist/examples/vintasend-medplum-example/src/utils/task-search.ts +63 -0
- package/dist/examples/vintasend-medplum-example/src/vite-env.d.ts +3 -0
- package/dist/examples/vintasend-medplum-example/tsconfig.bots.json +4 -0
- package/dist/examples/vintasend-medplum-example/tsconfig.json +19 -0
- package/dist/examples/vintasend-medplum-example/vercel.json +3 -0
- package/dist/examples/vintasend-medplum-example/vite.config.ts +44 -0
- package/dist/services/notification-backends/base-notification-backend.d.ts +5 -0
- package/dist/services/notification-service.js +11 -1
- package/dist/services/notification-template-renderers/base-email-template-renderer.d.ts +5 -0
- package/package.json +1 -1
package/dist/examples/vintasend-medplum-example/src/components/ChargeItem/ChargeItemPanel.test.tsx
ADDED
|
@@ -0,0 +1,616 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: Copyright Orangebot, Inc. and Medplum contributors
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
import { MantineProvider } from '@mantine/core';
|
|
5
|
+
import { act, fireEvent, render, screen, waitFor } from '@testing-library/react';
|
|
6
|
+
import userEvent from '@testing-library/user-event';
|
|
7
|
+
import { MedplumProvider } from '@medplum/react';
|
|
8
|
+
import type { ChargeItem, CodeableConcept } from '@medplum/fhirtypes';
|
|
9
|
+
import { MockClient } from '@medplum/mock';
|
|
10
|
+
import { describe, expect, test, beforeEach, vi } from 'vitest';
|
|
11
|
+
import ChargeItemPanel from './ChargeItemPanel';
|
|
12
|
+
import * as chargeItemsUtils from '../../utils/chargeitems';
|
|
13
|
+
|
|
14
|
+
const mockChargeItem: ChargeItem = {
|
|
15
|
+
resourceType: 'ChargeItem',
|
|
16
|
+
id: 'charge-123',
|
|
17
|
+
status: 'billable',
|
|
18
|
+
subject: { reference: 'Patient/patient-123' },
|
|
19
|
+
code: {
|
|
20
|
+
coding: [
|
|
21
|
+
{
|
|
22
|
+
system: 'http://www.ama-assn.org/go/cpt',
|
|
23
|
+
code: '99213',
|
|
24
|
+
display: 'Office Visit',
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
priceOverride: {
|
|
29
|
+
value: 100,
|
|
30
|
+
currency: 'USD',
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
vi.mock('../../utils/chargeitems', () => ({
|
|
35
|
+
applyChargeItemDefinition: vi.fn(),
|
|
36
|
+
}));
|
|
37
|
+
|
|
38
|
+
describe('ChargeItemPanel', () => {
|
|
39
|
+
let medplum: MockClient;
|
|
40
|
+
|
|
41
|
+
beforeEach(() => {
|
|
42
|
+
medplum = new MockClient();
|
|
43
|
+
vi.clearAllMocks();
|
|
44
|
+
vi.spyOn(chargeItemsUtils, 'applyChargeItemDefinition').mockImplementation(async (_, item) => item);
|
|
45
|
+
|
|
46
|
+
medplum.valueSetExpand = vi
|
|
47
|
+
.fn()
|
|
48
|
+
.mockImplementation(async (params: { url: string; filter?: string; count?: number }) => {
|
|
49
|
+
if (params.url === 'http://hl7.org/fhir/ValueSet/claim-modifiers') {
|
|
50
|
+
const allModifiers = [
|
|
51
|
+
{
|
|
52
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
53
|
+
code: '25',
|
|
54
|
+
display: 'Significant, separately identifiable evaluation and management service',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
58
|
+
code: '26',
|
|
59
|
+
display: 'Professional Component',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
63
|
+
code: 'a',
|
|
64
|
+
display: 'Repair of prior service or installation',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
68
|
+
code: 'b',
|
|
69
|
+
display: 'Temporary service or installation',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
73
|
+
code: 'c',
|
|
74
|
+
display: 'TMJ treatment',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
78
|
+
code: 'e',
|
|
79
|
+
display: 'Implant or associated with an implant',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
83
|
+
code: 'rooh',
|
|
84
|
+
display: 'Rush or Outside of office hours',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
88
|
+
code: 'x',
|
|
89
|
+
display: 'None',
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
|
|
93
|
+
// Filter modifiers if filter parameter is provided
|
|
94
|
+
const filterLower = params.filter?.toLowerCase() ?? '';
|
|
95
|
+
const filtered = params.filter
|
|
96
|
+
? allModifiers.filter(
|
|
97
|
+
(m) => m.code.toLowerCase().includes(filterLower) || m.display.toLowerCase().includes(filterLower)
|
|
98
|
+
)
|
|
99
|
+
: allModifiers;
|
|
100
|
+
|
|
101
|
+
// Limit results based on count parameter
|
|
102
|
+
const limited = params.count ? filtered.slice(0, params.count) : filtered;
|
|
103
|
+
|
|
104
|
+
return {
|
|
105
|
+
resourceType: 'ValueSet',
|
|
106
|
+
id: '9a6769a5-e60e-415b-ac35-8ed865336521',
|
|
107
|
+
url: 'http://hl7.org/fhir/ValueSet/claim-modifiers',
|
|
108
|
+
version: '4.0.1',
|
|
109
|
+
name: 'ModifierTypeCodes',
|
|
110
|
+
title: 'Modifier type Codes',
|
|
111
|
+
status: 'draft',
|
|
112
|
+
expansion: {
|
|
113
|
+
total: allModifiers.length,
|
|
114
|
+
timestamp: '2025-12-23T20:45:54.336Z',
|
|
115
|
+
contains: limited,
|
|
116
|
+
},
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
// Default response for other ValueSets
|
|
120
|
+
return {
|
|
121
|
+
resourceType: 'ValueSet',
|
|
122
|
+
expansion: {
|
|
123
|
+
contains: [],
|
|
124
|
+
},
|
|
125
|
+
};
|
|
126
|
+
});
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
const setup = (props: Partial<Parameters<typeof ChargeItemPanel>[0]> = {}): ReturnType<typeof render> => {
|
|
130
|
+
return render(
|
|
131
|
+
<MedplumProvider medplum={medplum}>
|
|
132
|
+
<MantineProvider>
|
|
133
|
+
<ChargeItemPanel chargeItem={mockChargeItem} onChange={vi.fn()} onDelete={vi.fn()} {...props} />
|
|
134
|
+
</MantineProvider>
|
|
135
|
+
</MedplumProvider>
|
|
136
|
+
);
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
test('renders charge item details', () => {
|
|
140
|
+
setup();
|
|
141
|
+
expect(screen.getByText('CPT Code')).toBeInTheDocument();
|
|
142
|
+
expect(screen.getByDisplayValue('$100.00')).toBeInTheDocument();
|
|
143
|
+
expect(screen.getByText('Calculated Price')).toBeInTheDocument();
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
test('renders modifiers input', () => {
|
|
147
|
+
setup();
|
|
148
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
test('handles delete charge item', async () => {
|
|
152
|
+
const onDelete = vi.fn();
|
|
153
|
+
const user = userEvent.setup();
|
|
154
|
+
|
|
155
|
+
vi.spyOn(medplum, 'deleteResource').mockResolvedValue({ resourceType: 'ChargeItem' } as ChargeItem);
|
|
156
|
+
|
|
157
|
+
setup({ onDelete });
|
|
158
|
+
|
|
159
|
+
const buttons = screen.getAllByRole('button', { hidden: true });
|
|
160
|
+
const deleteMenuButton = buttons.find((btn) => btn.getAttribute('aria-haspopup') === 'menu');
|
|
161
|
+
|
|
162
|
+
if (!deleteMenuButton) {
|
|
163
|
+
throw new Error('Delete menu button not found');
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
await user.click(deleteMenuButton);
|
|
167
|
+
|
|
168
|
+
const deleteButton = await screen.findByText('Delete');
|
|
169
|
+
await user.click(deleteButton);
|
|
170
|
+
|
|
171
|
+
await waitFor(() => {
|
|
172
|
+
expect(medplum.deleteResource).toHaveBeenCalledWith('ChargeItem', 'charge-123');
|
|
173
|
+
expect(onDelete).toHaveBeenCalledWith(mockChargeItem);
|
|
174
|
+
});
|
|
175
|
+
});
|
|
176
|
+
|
|
177
|
+
test('displays updated price', () => {
|
|
178
|
+
const itemWithPrice: ChargeItem = {
|
|
179
|
+
...mockChargeItem,
|
|
180
|
+
priceOverride: { value: 150.5, currency: 'USD' },
|
|
181
|
+
};
|
|
182
|
+
setup({ chargeItem: itemWithPrice });
|
|
183
|
+
|
|
184
|
+
expect(screen.getByDisplayValue('$150.50')).toBeInTheDocument();
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
test('displays price as N/A when no price override', () => {
|
|
188
|
+
const itemWithoutPrice: ChargeItem = {
|
|
189
|
+
...mockChargeItem,
|
|
190
|
+
priceOverride: undefined,
|
|
191
|
+
};
|
|
192
|
+
setup({ chargeItem: itemWithoutPrice });
|
|
193
|
+
|
|
194
|
+
expect(screen.getByDisplayValue('N/A')).toBeInTheDocument();
|
|
195
|
+
});
|
|
196
|
+
|
|
197
|
+
test('displays modifier when present', () => {
|
|
198
|
+
const itemWithModifier: ChargeItem = {
|
|
199
|
+
...mockChargeItem,
|
|
200
|
+
extension: [
|
|
201
|
+
{
|
|
202
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
203
|
+
valueCodeableConcept: {
|
|
204
|
+
coding: [{ code: '26', display: 'Professional Component' }],
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
setup({ chargeItem: itemWithModifier });
|
|
211
|
+
|
|
212
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
213
|
+
});
|
|
214
|
+
|
|
215
|
+
test('renders price calculation explanation', () => {
|
|
216
|
+
setup();
|
|
217
|
+
|
|
218
|
+
expect(
|
|
219
|
+
screen.getByText(/Price calculated from Price chart, taking into account applied modifiers/)
|
|
220
|
+
).toBeInTheDocument();
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
test('updates modifiers with value', async () => {
|
|
224
|
+
const onChange = vi.fn();
|
|
225
|
+
const updatedModifier: CodeableConcept = {
|
|
226
|
+
coding: [
|
|
227
|
+
{
|
|
228
|
+
code: '25',
|
|
229
|
+
display: 'Significant, separately identifiable evaluation and management service',
|
|
230
|
+
},
|
|
231
|
+
],
|
|
232
|
+
};
|
|
233
|
+
const updatedChargeItem: ChargeItem = {
|
|
234
|
+
...mockChargeItem,
|
|
235
|
+
extension: [
|
|
236
|
+
{
|
|
237
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
238
|
+
valueCodeableConcept: updatedModifier,
|
|
239
|
+
},
|
|
240
|
+
],
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
vi.spyOn(medplum, 'updateResource').mockResolvedValue(updatedChargeItem as any);
|
|
244
|
+
|
|
245
|
+
setup({ onChange });
|
|
246
|
+
|
|
247
|
+
// Modifiers input is present but interaction requires CodeableConceptInput
|
|
248
|
+
// which is complex to test. We verify the component structure.
|
|
249
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
250
|
+
});
|
|
251
|
+
|
|
252
|
+
test('handles charge item with existing modifier extension', () => {
|
|
253
|
+
const itemWithExistingModifier: ChargeItem = {
|
|
254
|
+
...mockChargeItem,
|
|
255
|
+
extension: [
|
|
256
|
+
{
|
|
257
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
258
|
+
valueCodeableConcept: {
|
|
259
|
+
coding: [{ code: '26', display: 'Professional Component' }],
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
url: 'http://example.com/other-extension',
|
|
264
|
+
valueString: 'other value',
|
|
265
|
+
},
|
|
266
|
+
],
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
setup({ chargeItem: itemWithExistingModifier });
|
|
270
|
+
|
|
271
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
272
|
+
});
|
|
273
|
+
|
|
274
|
+
test('handles charge item with non-CPT codes', () => {
|
|
275
|
+
const itemWithMultipleCodes: ChargeItem = {
|
|
276
|
+
...mockChargeItem,
|
|
277
|
+
code: {
|
|
278
|
+
coding: [
|
|
279
|
+
{
|
|
280
|
+
system: 'http://www.ama-assn.org/go/cpt',
|
|
281
|
+
code: '99213',
|
|
282
|
+
display: 'Office Visit',
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
system: 'http://example.com/other-system',
|
|
286
|
+
code: 'OTHER',
|
|
287
|
+
display: 'Other Code',
|
|
288
|
+
},
|
|
289
|
+
],
|
|
290
|
+
},
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
setup({ chargeItem: itemWithMultipleCodes });
|
|
294
|
+
|
|
295
|
+
expect(screen.getByText('CPT Code')).toBeInTheDocument();
|
|
296
|
+
});
|
|
297
|
+
|
|
298
|
+
test('updates price when chargeItem prop changes', () => {
|
|
299
|
+
const { rerender } = setup({ chargeItem: mockChargeItem });
|
|
300
|
+
|
|
301
|
+
expect(screen.getByDisplayValue('$100.00')).toBeInTheDocument();
|
|
302
|
+
|
|
303
|
+
const updatedItem: ChargeItem = {
|
|
304
|
+
...mockChargeItem,
|
|
305
|
+
priceOverride: { value: 200, currency: 'USD' },
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
rerender(
|
|
309
|
+
<MedplumProvider medplum={medplum}>
|
|
310
|
+
<MantineProvider>
|
|
311
|
+
<ChargeItemPanel chargeItem={updatedItem} onChange={vi.fn()} onDelete={vi.fn()} />
|
|
312
|
+
</MantineProvider>
|
|
313
|
+
</MedplumProvider>
|
|
314
|
+
);
|
|
315
|
+
|
|
316
|
+
expect(screen.getByDisplayValue('$200.00')).toBeInTheDocument();
|
|
317
|
+
});
|
|
318
|
+
|
|
319
|
+
test('handles charge item without extension', () => {
|
|
320
|
+
const itemWithoutExtension: ChargeItem = {
|
|
321
|
+
...mockChargeItem,
|
|
322
|
+
extension: undefined,
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
setup({ chargeItem: itemWithoutExtension });
|
|
326
|
+
|
|
327
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
328
|
+
});
|
|
329
|
+
|
|
330
|
+
test('calls updateModifiers and updateChargeItem when modifier is added', async () => {
|
|
331
|
+
const onChange = vi.fn();
|
|
332
|
+
const newModifier: CodeableConcept = {
|
|
333
|
+
coding: [
|
|
334
|
+
{
|
|
335
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
336
|
+
code: '25',
|
|
337
|
+
display: 'Significant, separately identifiable evaluation and management service',
|
|
338
|
+
},
|
|
339
|
+
],
|
|
340
|
+
};
|
|
341
|
+
const updatedChargeItem: ChargeItem & { id: string } = {
|
|
342
|
+
...mockChargeItem,
|
|
343
|
+
id: 'charge-123',
|
|
344
|
+
extension: [
|
|
345
|
+
{
|
|
346
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
347
|
+
valueCodeableConcept: newModifier,
|
|
348
|
+
},
|
|
349
|
+
],
|
|
350
|
+
};
|
|
351
|
+
|
|
352
|
+
vi.spyOn(medplum, 'updateResource').mockResolvedValue(updatedChargeItem);
|
|
353
|
+
vi.spyOn(chargeItemsUtils, 'applyChargeItemDefinition').mockResolvedValue(updatedChargeItem);
|
|
354
|
+
|
|
355
|
+
setup({ onChange });
|
|
356
|
+
|
|
357
|
+
await waitFor(() => {
|
|
358
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
359
|
+
});
|
|
360
|
+
|
|
361
|
+
// Find the modifiers searchbox and interact with it
|
|
362
|
+
const modifierInputs = screen.getAllByRole('searchbox');
|
|
363
|
+
const modifierInput = modifierInputs.find((input) => {
|
|
364
|
+
const label = input.closest('.mantine-InputWrapper-root')?.querySelector('label');
|
|
365
|
+
return label?.textContent?.includes('Modifiers');
|
|
366
|
+
});
|
|
367
|
+
|
|
368
|
+
if (modifierInput) {
|
|
369
|
+
const user = userEvent.setup();
|
|
370
|
+
await user.type(modifierInput, '25');
|
|
371
|
+
|
|
372
|
+
// Wait for valueSetExpand to be called (it may be called multiple times due to debouncing)
|
|
373
|
+
await waitFor(
|
|
374
|
+
() => {
|
|
375
|
+
expect(medplum.valueSetExpand).toHaveBeenCalled();
|
|
376
|
+
const calls = vi.mocked(medplum.valueSetExpand).mock.calls;
|
|
377
|
+
const claimModifiersCall = calls.find(
|
|
378
|
+
(call) => call[0]?.url === 'http://hl7.org/fhir/ValueSet/claim-modifiers'
|
|
379
|
+
);
|
|
380
|
+
expect(claimModifiersCall).toBeDefined();
|
|
381
|
+
},
|
|
382
|
+
{ timeout: 5000 }
|
|
383
|
+
);
|
|
384
|
+
|
|
385
|
+
// Select option
|
|
386
|
+
await act(async () => {
|
|
387
|
+
fireEvent.keyDown(modifierInput, { key: 'ArrowDown', code: 'ArrowDown' });
|
|
388
|
+
fireEvent.keyDown(modifierInput, { key: 'Enter', code: 'Enter' });
|
|
389
|
+
});
|
|
390
|
+
|
|
391
|
+
await waitFor(() => {
|
|
392
|
+
expect(medplum.updateResource).toHaveBeenCalled();
|
|
393
|
+
expect(chargeItemsUtils.applyChargeItemDefinition).toHaveBeenCalled();
|
|
394
|
+
expect(onChange).toHaveBeenCalled();
|
|
395
|
+
});
|
|
396
|
+
}
|
|
397
|
+
});
|
|
398
|
+
|
|
399
|
+
test('calls updateModifiers with undefined to remove modifier', async () => {
|
|
400
|
+
const onChange = vi.fn();
|
|
401
|
+
const itemWithModifier: ChargeItem & { id: string } = {
|
|
402
|
+
...mockChargeItem,
|
|
403
|
+
id: 'charge-123',
|
|
404
|
+
extension: [
|
|
405
|
+
{
|
|
406
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
407
|
+
valueCodeableConcept: {
|
|
408
|
+
coding: [{ code: '26' }],
|
|
409
|
+
},
|
|
410
|
+
},
|
|
411
|
+
],
|
|
412
|
+
};
|
|
413
|
+
const updatedChargeItem: ChargeItem & { id: string } = {
|
|
414
|
+
...mockChargeItem,
|
|
415
|
+
id: 'charge-123',
|
|
416
|
+
extension: undefined,
|
|
417
|
+
};
|
|
418
|
+
|
|
419
|
+
vi.spyOn(medplum, 'updateResource').mockResolvedValue(updatedChargeItem);
|
|
420
|
+
vi.spyOn(chargeItemsUtils, 'applyChargeItemDefinition').mockResolvedValue(updatedChargeItem);
|
|
421
|
+
|
|
422
|
+
setup({ chargeItem: itemWithModifier, onChange });
|
|
423
|
+
|
|
424
|
+
await waitFor(() => {
|
|
425
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
426
|
+
});
|
|
427
|
+
|
|
428
|
+
// Find the clear button or trigger clearing the modifier
|
|
429
|
+
// The CodeableConceptInput should have a way to clear the value
|
|
430
|
+
const modifierInputs = screen.getAllByRole('searchbox');
|
|
431
|
+
const modifierInput = modifierInputs.find((input) => {
|
|
432
|
+
const label = input.closest('.mantine-InputWrapper-root')?.querySelector('label');
|
|
433
|
+
return label?.textContent?.includes('Modifiers');
|
|
434
|
+
});
|
|
435
|
+
|
|
436
|
+
if (modifierInput) {
|
|
437
|
+
// Try to clear the value by finding a clear button or simulating clearing
|
|
438
|
+
// This would trigger updateModifiers with undefined
|
|
439
|
+
const clearButtons = screen.queryAllByRole('button', { hidden: true });
|
|
440
|
+
const clearButton = clearButtons.find((btn) => {
|
|
441
|
+
const ariaLabel = btn.getAttribute('aria-label');
|
|
442
|
+
return ariaLabel?.toLowerCase().includes('clear') || ariaLabel?.toLowerCase().includes('remove');
|
|
443
|
+
});
|
|
444
|
+
|
|
445
|
+
if (clearButton) {
|
|
446
|
+
await act(async () => {
|
|
447
|
+
fireEvent.click(clearButton);
|
|
448
|
+
});
|
|
449
|
+
|
|
450
|
+
await waitFor(() => {
|
|
451
|
+
expect(medplum.updateResource).toHaveBeenCalled();
|
|
452
|
+
expect(chargeItemsUtils.applyChargeItemDefinition).toHaveBeenCalled();
|
|
453
|
+
expect(onChange).toHaveBeenCalled();
|
|
454
|
+
});
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
});
|
|
458
|
+
|
|
459
|
+
test('calls updateChargeItem which calls updateResource and applyChargeItemDefinition', async () => {
|
|
460
|
+
const onChange = vi.fn();
|
|
461
|
+
const updatedChargeItem: ChargeItem & { id: string } = {
|
|
462
|
+
...mockChargeItem,
|
|
463
|
+
id: 'charge-123',
|
|
464
|
+
priceOverride: { value: 150, currency: 'USD' },
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
vi.spyOn(medplum, 'updateResource').mockResolvedValue(updatedChargeItem);
|
|
468
|
+
vi.spyOn(chargeItemsUtils, 'applyChargeItemDefinition').mockResolvedValue(updatedChargeItem);
|
|
469
|
+
|
|
470
|
+
setup({ onChange });
|
|
471
|
+
|
|
472
|
+
// The updateChargeItem function is called internally by updateModifiers
|
|
473
|
+
// We verify it's set up correctly by checking the component renders
|
|
474
|
+
await waitFor(() => {
|
|
475
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
476
|
+
});
|
|
477
|
+
});
|
|
478
|
+
|
|
479
|
+
test('updateCptCodes preserves non-CPT codes when updating', () => {
|
|
480
|
+
const onChange = vi.fn();
|
|
481
|
+
const itemWithMultipleCodes: ChargeItem = {
|
|
482
|
+
...mockChargeItem,
|
|
483
|
+
code: {
|
|
484
|
+
coding: [
|
|
485
|
+
{
|
|
486
|
+
system: 'http://www.ama-assn.org/go/cpt',
|
|
487
|
+
code: '99213',
|
|
488
|
+
display: 'Office Visit',
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
system: 'http://example.com/other-system',
|
|
492
|
+
code: 'OTHER',
|
|
493
|
+
display: 'Other Code',
|
|
494
|
+
},
|
|
495
|
+
],
|
|
496
|
+
},
|
|
497
|
+
};
|
|
498
|
+
|
|
499
|
+
setup({ chargeItem: itemWithMultipleCodes, onChange });
|
|
500
|
+
|
|
501
|
+
// The updateCptCodes function preserves non-CPT codes
|
|
502
|
+
// We verify the component handles multiple codes correctly
|
|
503
|
+
expect(screen.getByText('CPT Code')).toBeInTheDocument();
|
|
504
|
+
});
|
|
505
|
+
|
|
506
|
+
test('updateModifiers replaces existing modifier extension', async () => {
|
|
507
|
+
const onChange = vi.fn();
|
|
508
|
+
const itemWithModifier: ChargeItem & { id: string } = {
|
|
509
|
+
...mockChargeItem,
|
|
510
|
+
id: 'charge-123',
|
|
511
|
+
extension: [
|
|
512
|
+
{
|
|
513
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
514
|
+
valueCodeableConcept: {
|
|
515
|
+
coding: [
|
|
516
|
+
{
|
|
517
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
518
|
+
code: '26',
|
|
519
|
+
display: 'Professional Component',
|
|
520
|
+
},
|
|
521
|
+
],
|
|
522
|
+
},
|
|
523
|
+
},
|
|
524
|
+
],
|
|
525
|
+
};
|
|
526
|
+
const updatedChargeItem: ChargeItem & { id: string } = {
|
|
527
|
+
...mockChargeItem,
|
|
528
|
+
id: 'charge-123',
|
|
529
|
+
extension: [
|
|
530
|
+
{
|
|
531
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
532
|
+
valueCodeableConcept: {
|
|
533
|
+
coding: [
|
|
534
|
+
{
|
|
535
|
+
system: 'http://terminology.hl7.org/CodeSystem/modifiers',
|
|
536
|
+
code: '25',
|
|
537
|
+
display: 'Significant, separately identifiable evaluation and management service',
|
|
538
|
+
},
|
|
539
|
+
],
|
|
540
|
+
},
|
|
541
|
+
},
|
|
542
|
+
],
|
|
543
|
+
};
|
|
544
|
+
|
|
545
|
+
vi.spyOn(medplum, 'updateResource').mockResolvedValue(updatedChargeItem);
|
|
546
|
+
vi.spyOn(chargeItemsUtils, 'applyChargeItemDefinition').mockResolvedValue(updatedChargeItem);
|
|
547
|
+
|
|
548
|
+
setup({ chargeItem: itemWithModifier, onChange });
|
|
549
|
+
|
|
550
|
+
await waitFor(() => {
|
|
551
|
+
expect(screen.getByText('Modifiers')).toBeInTheDocument();
|
|
552
|
+
});
|
|
553
|
+
|
|
554
|
+
// Find the modifiers searchbox
|
|
555
|
+
const modifierInputs = screen.getAllByRole('searchbox');
|
|
556
|
+
const modifierInput = modifierInputs.find((input) => {
|
|
557
|
+
const label = input.closest('.mantine-InputWrapper-root')?.querySelector('label');
|
|
558
|
+
return label?.textContent?.includes('Modifiers');
|
|
559
|
+
});
|
|
560
|
+
|
|
561
|
+
expect(modifierInput).toBeDefined();
|
|
562
|
+
|
|
563
|
+
if (modifierInput) {
|
|
564
|
+
const user = userEvent.setup();
|
|
565
|
+
|
|
566
|
+
// Type to search for modifier '25'
|
|
567
|
+
await user.type(modifierInput, '25');
|
|
568
|
+
|
|
569
|
+
// Wait for valueSetExpand to be called
|
|
570
|
+
await waitFor(
|
|
571
|
+
() => {
|
|
572
|
+
expect(medplum.valueSetExpand).toHaveBeenCalled();
|
|
573
|
+
const calls = vi.mocked(medplum.valueSetExpand).mock.calls;
|
|
574
|
+
const claimModifiersCall = calls.find(
|
|
575
|
+
(call) => call[0]?.url === 'http://hl7.org/fhir/ValueSet/claim-modifiers'
|
|
576
|
+
);
|
|
577
|
+
expect(claimModifiersCall).toBeDefined();
|
|
578
|
+
},
|
|
579
|
+
{ timeout: 5000 }
|
|
580
|
+
);
|
|
581
|
+
|
|
582
|
+
// Select the modifier option
|
|
583
|
+
await act(async () => {
|
|
584
|
+
fireEvent.keyDown(modifierInput, { key: 'ArrowDown', code: 'ArrowDown' });
|
|
585
|
+
fireEvent.keyDown(modifierInput, { key: 'Enter', code: 'Enter' });
|
|
586
|
+
});
|
|
587
|
+
|
|
588
|
+
// Verify that updateResource was called with the updated modifier
|
|
589
|
+
await waitFor(() => {
|
|
590
|
+
expect(medplum.updateResource).toHaveBeenCalledWith(
|
|
591
|
+
expect.objectContaining({
|
|
592
|
+
id: 'charge-123',
|
|
593
|
+
extension: expect.arrayContaining([
|
|
594
|
+
expect.objectContaining({
|
|
595
|
+
url: 'http://hl7.org/fhir/StructureDefinition/chargeitem-modifier',
|
|
596
|
+
valueCodeableConcept: expect.objectContaining({
|
|
597
|
+
coding: expect.arrayContaining([
|
|
598
|
+
expect.objectContaining({
|
|
599
|
+
code: '25',
|
|
600
|
+
}),
|
|
601
|
+
]),
|
|
602
|
+
}),
|
|
603
|
+
}),
|
|
604
|
+
]),
|
|
605
|
+
})
|
|
606
|
+
);
|
|
607
|
+
});
|
|
608
|
+
|
|
609
|
+
// Verify that applyChargeItemDefinition was called
|
|
610
|
+
expect(chargeItemsUtils.applyChargeItemDefinition).toHaveBeenCalled();
|
|
611
|
+
|
|
612
|
+
// Verify that onChange was called with the applied charge item
|
|
613
|
+
expect(onChange).toHaveBeenCalledWith(updatedChargeItem);
|
|
614
|
+
}
|
|
615
|
+
});
|
|
616
|
+
});
|