-
-
- {t("name")}:{" "}
-
- {patientData?.name}
-
- {patientData?.is_medical_worker && (
-
-
- {t("medical_worker")}:{" "}
-
-
- {t("yes")}
-
-
- )}
-
-
- {t("disease_status")}:{" "}
-
-
- {patientData?.disease_status}
-
-
-
-
-
- {t("srf_id")}:{" "}
-
- {(patientData?.srf_id && patientData?.srf_id) || "-"}
-
-
-
- {t("test_type")}:{" "}
-
- {(patientData?.test_type && testType) || "-"}
-
-
-
- {t("date_of_test")}:{" "}
-
- {(patientData?.date_of_test &&
- formatDateTime(patientData?.date_of_test)) ||
- "-"}
-
-
-
-
- {t("facility")}:{" "}
-
- {patientData?.facility_object?.name || "-"}
-
- {patientData?.date_of_birth ? (
-
-
- {t("date_of_birth")}:{" "}
-
- {patientData?.date_of_birth}
-
- ) : (
-
-
- {t("age")}:{" "}
-
- {formatPatientAge(patientData)}
-
- )}
-
-
- {t("gender")}:{" "}
-
- {patientGender}
-
-
-
-
- {t("nationality")}:{" "}
-
- {patientData?.nationality || "-"}
-
-
-
-
- {t("blood_group")}:{" "}
-
- {patientData?.blood_group || "-"}
-
- {patientData?.nationality !== "India" && (
-
-
- {t("passport_number")}:{" "}
-
- {patientData?.passport_no || "-"}
-
- )}
- {patientData?.nationality === "India" && (
- <>
-
-
- {t("state")}:{" "}
-
- {patientData?.state_object?.name}
-
-
-
- {t("district")}:{" "}
-
- {patientData?.district_object?.name || "-"}
-
-
-
- {t("local_body")}:{" "}
-
- {patientData?.local_body_object?.name || "-"}
-
- >
- )}
-
-
- {t("address")}:{" "}
-
- {patientData?.address || "-"}
-
-
-
- {t("contact_with_confirmed_carrier")}:{" "}
-
- {yesOrNoBadge(patientData?.contact_with_confirmed_carrier)}
-
-
-
- {t("contact_with_suspected_carrier")}:{" "}
-
- {yesOrNoBadge(patientData?.contact_with_suspected_carrier)}
-
- {patientData?.estimated_contact_date && (
-
-
- {t("estimated_contact_date")}:{" "}
-
- {formatDateTime(patientData?.estimated_contact_date)}
-
- )}
-
-
- {t("has_sari")}:{" "}
-
- {yesOrNoBadge(patientData?.has_SARI)}
-
-
-
- {t("domestic_international_travel")}:{" "}
-
- {yesOrNoBadge(patientData?.past_travel)}
-
- {patientData?.countries_travelled &&
- !!patientData?.countries_travelled.length && (
-
-
- {t("countries_travelled")}:{" "}
-
- {patientData?.countries_travelled.join(", ")}
-
- )}
- {patientData?.ongoing_medication && (
-
-
- {t("ongoing_medications")}{" "}
-
- {patientData?.ongoing_medication}
-
- )}
- {patientData?.allergies && (
-
-
- {t("allergies")}:{" "}
-
- {patientData?.allergies}
-
- )}
- {!!patientData?.number_of_aged_dependents && (
-
-
- {t("number_of_aged_dependents")}:{" "}
-
- {patientData?.number_of_aged_dependents}
-
- )}
- {!!patientData?.number_of_chronic_diseased_dependents && (
-
-
- {t("number_of_chronic_diseased_dependents")}:{" "}
-
- {patientData?.number_of_chronic_diseased_dependents}
-
- )}
-