-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made a reusable component for table in routine and nursing care proce…
…dures Co-authored-by: Sahil-Sinha-11 <sahilsinha6969@gmail.com> Co-authored-by: Aakash Singh <mail@singhaakash.dev>
- Loading branch information
1 parent
7cb54b3
commit efff4f0
Showing
4 changed files
with
226 additions
and
220 deletions.
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.