Skip to content

Commit

Permalink
Adds support for community nurses log update
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Sep 12, 2024
1 parent d395aa0 commit dcce340
Show file tree
Hide file tree
Showing 6 changed files with 341 additions and 56 deletions.
59 changes: 59 additions & 0 deletions src/Common/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,65 @@ export const RHYTHM_CHOICES = [
{ id: 10, text: "IRREGULAR", desc: "Irregular" },
] as const;

export const BOWEL_DIFFICULTY_CHOICES = [
"NO_DIFFICULTY",
"CONSTIPATION",
"DIARRHOEA",
] as const;

export const BLADDER_DRAINAGE_CHOICES = [
"NORMAL",
"CONDOM_CATHETER",
"DIAPER",
"INTERMITTENT_CATHETER",
"CONTINUOUS_INDWELLING_CATHETER",
"CONTINUOUS_SUPRAPUBIC_CATHETER",
"UROSTOMY",
] as const;

export const BLADDER_ISSUE_CHOICES = [
"NO_ISSUES",
"INCONTINENCE",
"RETENTION",
"HESITANCY",
] as const;

export const URINATION_FREQUENCY_CHOICES = [
"NORMAL",
"DECREASED",
"INCREASED",
] as const;

export const SLEEP_CHOICES = [
"EXCESSIVE",
"SATISFACTORY",
"UNSATISFACTORY",
"NO_SLEEP",
] as const;

export const NUTRITION_ROUTE_CHOICES = [
"ORAL",
"RYLES_TUBE",
"GASTROSTOMY_OR_JEJUNOSTOMY",
"PEG",
"PARENTERAL_TUBING_FLUID",
"PARENTERAL_TUBING_TPN",
] as const;

export const ORAL_ISSUE_CHOICES = [
"NO_ISSUE",
"DYSPHAGIA",
"ODYNOPHAGIA",
] as const;

export const APPETITE_CHOICES = [
"INCREASED",
"SATISFACTORY",
"REDUCED",
"NO_TASTE_FOR_FOOD",
"CANNOT_BE_ASSESSED",
] as const;

export const LOCATION_BED_TYPES = [
{ id: "ISOLATION", name: "Isolation" },
{ id: "ICU", name: "ICU" },
Expand Down
1 change: 1 addition & 0 deletions src/Components/LogUpdate/Sections/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export const RoundTypeSections = {
"NursingCare",
],
DOCTORS_LOG: ["NeurologicalMonitoring", "RespiratorySupport"],
COMMUNITY_NURSES_LOG: [],
} as const satisfies Record<
(typeof DailyRoundTypes)[number],
(keyof typeof LogUpdateSections)[]
Expand Down
Loading

0 comments on commit dcce340

Please sign in to comment.