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

Fix scroll overlay. #6598

Closed
wants to merge 5 commits into from
Closed
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
56 changes: 30 additions & 26 deletions src/Components/Medicine/MedicineAdministrationSheet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,31 +97,35 @@ const MedicineAdministrationSheet = ({ readonly, is_prn }: Props) => {
)
}
/>

<ScrollOverlay
className="rounded-lg border shadow"
overlay={
<div className="flex items-center gap-2 pb-2">
<span className="text-sm">Scroll to view more prescriptions</span>
<CareIcon icon="l-arrow-down" className="animate-bounce text-2xl" />
</div>
}
disableOverlay={loading || !prescriptions?.length}
>
{loading && <Loading />}
{prescriptions?.length === 0 && <NoPrescriptions prn={is_prn} />}

{!!prescriptions?.length && (
<MedicineAdministrationTable
prescriptions={prescriptions}
pagination={pagination}
onRefetch={() => {
refetch();
discontinuedPrescriptions.refetch();
}}
/>
)}

<div className="rounded-lg border shadow">
<ScrollOverlay
overlay={
<div className="flex items-center gap-2 pb-2">
<span className="text-sm">Scroll to view more prescriptions</span>
<CareIcon
icon="l-arrow-down"
className="animate-bounce text-2xl"
/>
</div>
}
disableOverlay={
loading || !prescriptions?.length || !(prescriptions?.length > 1)
}
>
{loading && <Loading />}
{prescriptions?.length === 0 && <NoPrescriptions prn={is_prn} />}

{!!prescriptions?.length && (
<MedicineAdministrationTable
prescriptions={prescriptions}
pagination={pagination}
onRefetch={() => {
refetch();
discontinuedPrescriptions.refetch();
}}
/>
)}
</ScrollOverlay>
{!showDiscontinued && !!discontinuedCount && (
<ButtonV2
variant="secondary"
Expand All @@ -137,7 +141,7 @@ const MedicineAdministrationSheet = ({ readonly, is_prn }: Props) => {
</span>
</ButtonV2>
)}
</ScrollOverlay>
</div>
</div>
);
};
Expand Down
Loading