Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change the NIBP display from last 30 mins to current bed assignment date #6479

Merged
merged 19 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Components/Facility/CentralNursingStation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ export default function CentralNursingStation({ facilityId }: Props) {
{data.map((props) => (
<div className="overflow-hidden text-clip">
<HL7PatientVitalsMonitor
patientCurrentBedAssignmentDate={
props.patientAssetBed?.patient?.last_consultation?.current_bed
?.start_date
}
key={`${props.patientAssetBed?.bed.id}-${hash}`}
{...props}
config={config}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ export const ConsultationUpdatesTab = (props: ConsultationTabProps) => {
<div className="mx-auto flex w-full flex-col justify-between gap-1 rounded bg-[#020617] lg:w-auto lg:min-w-[1280px] lg:flex-row">
<div className="min-h-[400px] flex-1">
<HL7PatientVitalsMonitor
patientCurrentBedAssignmentDate={
props.patientData?.last_consultation?.current_bed
?.start_date
}
patientAssetBed={{
asset: monitorBedData?.asset_object as AssetData,
bed: monitorBedData?.bed_object as BedModel,
Expand Down Expand Up @@ -150,6 +154,10 @@ export const ConsultationUpdatesTab = (props: ConsultationTabProps) => {
<div className="min-h-[400px] flex-1">
<HL7PatientVitalsMonitor
key={`hl7-${hl7SocketUrl}-${vitals.hash}`}
patientCurrentBedAssignmentDate={
props.patientData?.last_consultation?.current_bed
?.start_date
}
patientAssetBed={{
asset: monitorBedData?.asset_object as AssetData,
bed: monitorBedData?.bed_object as BedModel,
Expand Down
8 changes: 2 additions & 6 deletions src/Components/VitalsMonitor/HL7PatientVitalsMonitor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ const minutesAgo = (timestamp: string) => {
return `${dayjs().diff(dayjs(timestamp), "minute")}m ago`;
};

const isWithinMinutes = (timestamp: string, minutes: number) => {
return dayjs().diff(dayjs(timestamp), "minute") < minutes;
};

export default function HL7PatientVitalsMonitor(props: IVitalsComponentProps) {
const { connect, waveformCanvas, data, isOnline } = useHL7VitalsMonitor(
props.config
Expand All @@ -39,8 +35,8 @@ export default function HL7PatientVitalsMonitor(props: IVitalsComponentProps) {
connect(props.socketUrl);
}, [props.socketUrl]);

const bpWithinMaxPersistence = !!(
(data.bp?.["date-time"] && isWithinMinutes(data.bp?.["date-time"], 30)) // Max blood pressure persistence is 30 minutes
const bpWithinMaxPersistence = dayjs(data.bp?.["date-time"]).isAfter(
props.patientCurrentBedAssignmentDate
);

return (
Expand Down
1 change: 1 addition & 0 deletions src/Components/VitalsMonitor/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export interface ChannelOptions {
}

export interface IVitalsComponentProps {
patientCurrentBedAssignmentDate?: string;
patientAssetBed?: PatientAssetBed;
socketUrl: string;
config?: ReturnType<typeof getVitalsCanvasSizeAndDuration>;
Expand Down
3 changes: 3 additions & 0 deletions src/Redux/api.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { IConfig } from "../Common/hooks/useConfig";

import {
IAadhaarOtp,
IAadhaarOtpTBody,
Expand Down Expand Up @@ -29,6 +30,7 @@ import {
} from "../Components/Assets/AssetTypes";
import {
ConsultationModel,
CurrentBed,
FacilityModel,
LocationModel,
WardModel,
Expand Down Expand Up @@ -355,6 +357,7 @@ const routes = {
listConsultationBeds: {
path: "/api/v1/consultationbed/",
method: "GET",
TRes: Type<PaginatedResponse<CurrentBed>>(),
},
createConsultationBed: {
path: "/api/v1/consultationbed/",
Expand Down
Loading