-
Notifications
You must be signed in to change notification settings - Fork 511
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
Enhancements to the nursing care procedures and routines tables #9079
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
efff4f0
made a reusable component for table in routine and nursing care proce…
sainak bdc62d8
optimize
sainak 01fc4a4
minor refactor
sainak e1bd38c
Merge remote-tracking branch 'origin/develop' into issues/8562/Nursin…
sainak 1cabe0a
fix typo
sainak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
src/components/Facility/Consultations/LogUpdateAnalayseTable.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
import React from "react"; | ||
import { useTranslation } from "react-i18next"; | ||
|
||
import { classNames, formatDate, formatTime } from "@/Utils/utils"; | ||
|
||
interface SharedSectionTableProps { | ||
data: Record<string, Record<string, string | boolean | null>>; | ||
rows: Array<{ title?: string; field?: string; subField?: boolean }>; | ||
choices?: Record<string, Record<string | number, string>>; | ||
} | ||
|
||
const LogUpdateAnalayseTable: React.FC<SharedSectionTableProps> = ({ | ||
data, | ||
rows, | ||
choices = {}, | ||
}) => { | ||
const { t } = useTranslation(); | ||
|
||
const dataValues = React.useMemo(() => Object.values(data), [data]); | ||
|
||
const getDisplayValue = ( | ||
value: string | boolean | null | undefined, | ||
field?: string, | ||
): string => { | ||
if (typeof value === "boolean") { | ||
return t(value ? "yes" : "no"); | ||
} | ||
|
||
if (field && choices[field]) { | ||
const choiceMap = choices[field]; | ||
const choice = | ||
typeof value === "string" || typeof value === "number" | ||
? choiceMap[value] | ||
: undefined; | ||
return choice ? t(`${field.toUpperCase()}__${choice}`) : "-"; | ||
} | ||
|
||
return typeof value === "string" ? value : "-"; | ||
}; | ||
|
||
return ( | ||
<div className="m-2 w-full overflow-hidden overflow-x-auto rounded-lg border border-black shadow md:w-fit"> | ||
<table className="border-collapse rounded-lg border bg-secondary-100"> | ||
<thead className="sticky top-0 bg-white shadow"> | ||
<tr> | ||
<th className="sticky left-0 border-b-2 border-r-2 border-black bg-white"></th> | ||
{Object.keys(data).map((date) => ( | ||
<th | ||
key={date} | ||
className="w-40 border border-b-2 border-secondary-500 border-b-black p-1 text-sm font-semibold" | ||
> | ||
<p>{formatDate(date)}</p> | ||
<p>{formatTime(date)}</p> | ||
</th> | ||
))} | ||
</tr> | ||
</thead> | ||
<tbody className="bg-secondary-200"> | ||
{rows.map((row) => ( | ||
<tr | ||
key={row.field ?? row.title} | ||
className={classNames( | ||
row.title && "border-t-2 border-t-secondary-600", | ||
)} | ||
> | ||
<th | ||
className={classNames( | ||
"sticky left-0 border border-r-2 border-secondary-500 border-r-black bg-white p-2", | ||
row.subField ? "pl-4 font-medium" : "font-bold", | ||
)} | ||
> | ||
{row.title ?? t(`LOG_UPDATE_FIELD_LABEL__${row.field!}`)} | ||
</th> | ||
{dataValues.map((obj, idx) => { | ||
const value = row.field ? obj[row.field] : undefined; | ||
return ( | ||
<td | ||
key={`${row.field}-${idx}`} | ||
className="w-80 border border-l-2 border-secondary-500 bg-secondary-100 p-2 text-center font-medium" | ||
> | ||
{row.field ? getDisplayValue(value, row.field) : "-"} | ||
</td> | ||
); | ||
})} | ||
</tr> | ||
))} | ||
</tbody> | ||
</table> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LogUpdateAnalayseTable; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typographical Error in Component Name "LogUpdateAnalayseTable"
There is a consistent typographical error in the component name
LogUpdateAnalayseTable
. It should beLogUpdateAnalyseTable
. Please correct the spelling in the import statement and all usages to ensure proper functionality.Apply this diff to fix the typo:
Also applies to: 186-186, 248-252
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sainak this typo suggestion is valid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.