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

Changed requested values in all the places #6292

Merged
merged 3 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 7 additions & 7 deletions src/Common/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -663,22 +663,22 @@ export const NURSING_CARE_FIELDS: Array<OptionsType> = [
export const EYE_OPEN_SCALE = [
{ value: 4, text: "Spontaneous" },
{ value: 3, text: "To Speech" },
{ value: 2, text: "Pain" },
{ value: 1, text: "None" },
{ value: 2, text: "To Pain" },
{ value: 1, text: "No Response" },
];

export const VERBAL_RESPONSE_SCALE = [
{ value: 5, text: "Oriented/Coos/Babbles" },
{ value: 5, text: "Oriented to Time, Place and Person" },
{ value: 4, text: "Confused/Irritable" },
{ value: 3, text: "Inappropriate words/Cry to Pain" },
{ value: 2, text: "Incomprehensible words/Moans to pain" },
{ value: 1, text: "None" },
{ value: 1, text: "No Response" },
];

export const MOTOR_RESPONSE_SCALE = [
{ value: 6, text: "Obeying commands" },
{ value: 5, text: "Moves to localised pain" },
{ value: 4, text: "Flexion withdrawal from pain" },
{ value: 6, text: "Obeying commands/Normal acrivity" },
{ value: 5, text: "Moves to localized pain" },
{ value: 4, text: "Flexion/Withdrawal from pain" },
{ value: 3, text: "Abnormal Flexion(decorticate)" },
{ value: 2, text: "Abnormal Extension(decerebrate)" },
{ value: 1, text: "No Response" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ let make = (~updateCB, ~neurologicalMonitoring, ~id, ~consultationId) => {
<div className="my-10">
<div className="text-3xl font-bold"> {str("Glasgow Coma Scale")} </div>
<div className="mt-4">
<div className="font-bold mt-4"> {str("Eye Open")} </div>
<div className="font-bold mt-4"> {str("Eye Opening Response")} </div>
<div>
{Js.Array.mapi(
(x, i) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,25 @@ let make = (
~limbResponseLowerExtremityRight,
~limbResponseLowerExtremityLeft,
) => {
inPronePosition: inPronePosition,
consciousnessLevel: consciousnessLevel,
consciousnessLevelDetails: consciousnessLevelDetails,
leftPupilSize: leftPupilSize,
leftPupilSizeDetails: leftPupilSizeDetails,
leftPupilLightReaction: leftPupilLightReaction,
leftPupilLightReactionDetails: leftPupilLightReactionDetails,
rightPupilSize: rightPupilSize,
rightPupilSizeDetails: rightPupilSizeDetails,
rightPupilLightReaction: rightPupilLightReaction,
rightPupilLightReactionDetails: rightPupilLightReactionDetails,
glasgowEyeOpen: glasgowEyeOpen,
glasgowVerbalResponse: glasgowVerbalResponse,
glasgowMotorResponse: glasgowMotorResponse,
glasgowTotalCalculated: glasgowTotalCalculated,
limbResponseUpperExtremityRight: limbResponseUpperExtremityRight,
limbResponseUpperExtremityLeft: limbResponseUpperExtremityLeft,
limbResponseLowerExtremityRight: limbResponseLowerExtremityRight,
limbResponseLowerExtremityLeft: limbResponseLowerExtremityLeft,
inPronePosition,
consciousnessLevel,
consciousnessLevelDetails,
leftPupilSize,
leftPupilSizeDetails,
leftPupilLightReaction,
leftPupilLightReactionDetails,
rightPupilSize,
rightPupilSizeDetails,
rightPupilLightReaction,
rightPupilLightReactionDetails,
glasgowEyeOpen,
glasgowVerbalResponse,
glasgowMotorResponse,
glasgowTotalCalculated,
limbResponseUpperExtremityRight,
limbResponseUpperExtremityLeft,
limbResponseLowerExtremityRight,
limbResponseLowerExtremityLeft,
}

let makeConsciousnessLevel = consciousnessLevel => {
Expand Down Expand Up @@ -173,8 +173,8 @@ let limpResponseToString = limpResponse => {

let eyeOpenToString = eyeOpen => {
switch eyeOpen {
| 1 => "1 - None"
| 2 => "2 - Pain"
| 1 => "1 - No Response"
| 2 => "2 - To Pain"
| 3 => "3 - To Speech"
| 4 => "4 - Spontaneous"
| _ => "Unknown"
Expand All @@ -183,23 +183,23 @@ let eyeOpenToString = eyeOpen => {

let motorResposneToString = eyeOpen => {
switch eyeOpen {
| 1 => "1 - None"
| 2 => "2 - Incomprehensible words/Moans to pain"
| 1 => "1 - No Response"
| 2 => "2 - Abnormal Extension"
| 3 => "3 - Abnormal Flexion"
| 4 => "4 - Withdrawing"
| 5 => "5 - Localizing/Withdrawl to touch"
| 6 => "6 - Obeying/Normal Activity"
| 4 => "4 - Flexion/Withdrawal to pain"
| 5 => "5 - Moves to localized pain"
| 6 => "6 - Obeys commands/Normal Activity"
| _ => "Unknown"
}
}

let verbalResposneToString = eyeOpen => {
switch eyeOpen {
| 1 => "1 - None"
| 1 => "1 - No Response"
| 2 => "2 - Incomprehensible words/Moans to pain"
| 3 => "3 - Inappropriate words/Cry to pain"
| 4 => "4 - Confused/Irritable"
| 5 => "5 - Oriented/Coos/Babbies"
| 5 => "5 - Oriented to Time, Place and Person"
| _ => "Unknown"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,9 @@ export const NeurologicalTable = (props: any) => {
<div className="my-2 text-xl font-semibold">Scale Description</div>
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
<div className="rounded-lg border bg-white px-4 py-2 shadow">
<div className="mb-2 text-xl font-semibold">Eye Open</div>
<div className="mb-2 text-xl font-semibold">
Eye Opening Response
</div>
<div>
{EYE_OPEN_SCALE.map((x: any) => (
<div
Expand Down
Loading