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

Update Sample File Upload and upgrade buttons to Shadcn button #9157

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8448989
Added Clear Image functionality
nithish1018 Nov 19, 2024
662f437
removed unneccessary line
nithish1018 Nov 19, 2024
cef5438
Added bot suggestions
nithish1018 Nov 19, 2024
ec36ef5
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 20, 2024
a7043f6
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 21, 2024
a341da1
Fixed search icon overlay
nithish1018 Nov 21, 2024
5403593
removing unrelated change
nithish1018 Nov 21, 2024
9d3de71
Updated file upload with useFileUpload hook
nithish1018 Nov 22, 2024
bae2649
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 22, 2024
52100c4
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 25, 2024
18ad9b5
Added types for sample
nithish1018 Nov 26, 2024
180fa67
Merge branch 'develop' into issues/9153/addclearimage
shivankacker Nov 26, 2024
ceba9fb
\Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 27, 2024
c972c5b
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 27, 2024
5489cb6
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 28, 2024
3c6eb0e
Updated the file upload UI
nithish1018 Nov 28, 2024
b48a7e3
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 29, 2024
3801776
Updated Button to shadcn button
nithish1018 Nov 29, 2024
6e180b3
removed unnecessary line
nithish1018 Nov 29, 2024
4598c0c
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 29, 2024
28ccbc4
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 30, 2024
fd0bf27
removed remove icon in favour of discard button
nithish1018 Nov 30, 2024
e86f229
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 30, 2024
66cf623
updated primary button color
nithish1018 Nov 30, 2024
48a604f
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Nov 30, 2024
37cfc0e
fixed eslint issues
nithish1018 Nov 30, 2024
76ebf4f
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Dec 1, 2024
0af4cf0
Merge branch 'develop' into issues/9153/addclearimage
nithish1018 Dec 2, 2024
cd09c74
removed button array
nithish1018 Dec 3, 2024
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
1 change: 1 addition & 0 deletions public/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1380,6 +1380,7 @@
"upload_headings__patient": "Upload New Patient File",
"upload_headings__sample_report": "Upload Sample Report",
"upload_headings__supporting_info": "Upload Supporting Info",
"upload_report": "Upload Report",
"uploading": "Uploading",
"use_existing_abha_address": "Use Existing ABHA Address",
"user_deleted_successfuly": "User Deleted Successfuly",
Expand Down
190 changes: 79 additions & 111 deletions src/components/Patient/UpdateStatusDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
import { useEffect, useReducer, useState } from "react";
import { useEffect, useReducer } from "react";
import { useTranslation } from "react-i18next";

import CareIcon from "@/CAREUI/icons/CareIcon";

import { Submit } from "@/components/Common/ButtonV2";
import { Button } from "@/components/ui/button";

import ConfirmDialog from "@/components/Common/ConfirmDialog";
import { LinearProgressWithLabel } from "@/components/Files/FileUpload";
import CheckBoxFormField from "@/components/Form/FormFields/CheckBoxFormField";
import { SelectFormField } from "@/components/Form/FormFields/SelectFormField";
import TextFormField from "@/components/Form/FormFields/TextFormField";
import { FieldChangeEvent } from "@/components/Form/FormFields/Utils";
import {
CreateFileResponse,
SampleTestModel,
} from "@/components/Patient/models";

import useFileUpload from "@/hooks/useFileUpload";

import {
HEADER_CONTENT_TYPES,
SAMPLE_FLOW_RULES,
SAMPLE_TEST_RESULT,
SAMPLE_TEST_STATUS,
} from "@/common/constants";

import * as Notification from "@/Utils/Notifications";
import routes from "@/Utils/request/api";
import request from "@/Utils/request/request";
import uploadFile from "@/Utils/request/uploadFile";

import { SampleTestModel } from "./models";

interface Props {
sample: SampleTestModel;
Expand All @@ -34,7 +31,6 @@ interface Props {
}

const statusChoices = [...SAMPLE_TEST_STATUS];

const statusFlow = { ...SAMPLE_FLOW_RULES };

const initForm: any = {
Expand All @@ -60,17 +56,16 @@ const updateStatusReducer = (state = initialState, action: any) => {
return state;
}
};

const UpdateStatusDialog = (props: Props) => {
const { t } = useTranslation();
const { sample, handleOk, handleCancel } = props;
const [state, dispatch] = useReducer(updateStatusReducer, initialState);
const [file, setfile] = useState<File>();
const [contentType, setcontentType] = useState<string>("");
const [uploadPercent, setUploadPercent] = useState(0);
const [uploadStarted, setUploadStarted] = useState<boolean>(false);
const [uploadDone, setUploadDone] = useState<boolean>(false);

const fileUpload = useFileUpload({
type: "SAMPLE_MANAGEMENT",
allowedExtensions: ["pdf", "jpg", "jpeg", "png"],
allowNameFallback: true,
});
const currentStatus = SAMPLE_TEST_STATUS.find(
(i) => i.text === sample.status,
);
Expand Down Expand Up @@ -104,79 +99,26 @@ const UpdateStatusDialog = (props: Props) => {
dispatch({ type: "set_form", form });
};

const uploadfile = (data: CreateFileResponse) => {
const url = data.signed_url;
const internal_name = data.internal_name;

const f = file;
if (f === undefined) return;
const newFile = new File([f], `${internal_name}`);

uploadFile(
url,
newFile,
"PUT",
{
"Content-Type": contentType,
"Content-disposition": "inline",
},
(xhr: XMLHttpRequest) => {
if (xhr.status >= 200 && xhr.status < 300) {
setUploadStarted(false);
setUploadDone(true);
request(routes.editUpload, {
pathParams: {
id: data.id,
fileType: "SAMPLE_MANAGEMENT",
associatingId: sample.id?.toString() ?? "",
},
body: { upload_completed: true },
});
Notification.Success({ msg: "File Uploaded Successfully" });
const handleUpload = async () => {
if (fileUpload.files.length > 0) {
if (!fileUpload.fileNames[0]) {
Notification.Error({
msg: "Please enter a file name before uploading",
});
return;
}
if (sample.id) {
await fileUpload.handleFileUpload(sample.id);
if (!fileUpload.error) {
return;
} else {
setUploadStarted(false);
Notification.Error({ msg: `Upload failed: ${fileUpload.error}` });
}
},
setUploadPercent,
() => {
setUploadStarted(false);
},
);
};

const onFileChange = (e: React.ChangeEvent<HTMLInputElement>) => {
if (e.target.files == null) {
throw new Error("Error finding e.target.files");
}
setfile(e.target.files[0]);
const fileName = e.target.files[0].name;
const ext: string = fileName.split(".")[1];
setcontentType(
HEADER_CONTENT_TYPES[ext as keyof typeof HEADER_CONTENT_TYPES],
);
return e.target.files[0];
};
const handleUpload = async () => {
const f = file;
if (f === undefined) return;
const category = "UNSPECIFIED";
const name = f.name;
setUploadStarted(true);
setUploadDone(false);

const { data } = await request(routes.createUpload, {
body: {
original_name: name,
file_type: "SAMPLE_MANAGEMENT",
name: `${sample.patient_name} Sample Report`,
associating_id: sample.id ?? "",
file_category: category,
mime_type: contentType,
},
});

if (data) {
uploadfile(data);
} else {
Notification.Error({ msg: "Sample ID is missing" });
}
} else {
Notification.Error({ msg: "No file selected for upload" });
}
};
nithish1018 marked this conversation as resolved.
Show resolved Hide resolved

Expand Down Expand Up @@ -218,32 +160,58 @@ const UpdateStatusDialog = (props: Props) => {
onChange={handleChange}
/>
<span className="font-semibold leading-relaxed">
Upload Report :
{t("upload_report")}:
</span>
{uploadStarted ? (
<LinearProgressWithLabel value={uploadPercent} />
) : (
<div className="mb-4 mt-3 flex flex-wrap justify-between gap-2">
<label className="button-size-default button-shape-square button-primary-default inline-flex h-min max-w-full cursor-pointer items-center justify-center gap-2 whitespace-pre font-medium outline-offset-1 transition-all duration-200 ease-in-out disabled:cursor-not-allowed disabled:bg-secondary-200 disabled:text-secondary-500">
<CareIcon icon="l-file-upload-alt" className="text-lg" />
<span className="max-w-full truncate">
{file ? file.name : t("choose_file")}
{fileUpload.files[0] ? (
<div className="mb-8 rounded-lg border border-secondary-300 bg-white p-4">
<div className="mb-4 flex items-center justify-between gap-2 rounded-md bg-secondary-300 px-4 py-2">
<span>
<CareIcon icon="l-paperclip" className="mr-2" />
{fileUpload.files[0].name}
</span>
<input
title="changeFile"
onChange={onFileChange}
type="file"
hidden
/>
</div>
<TextFormField
name="sample_file_name"
type="text"
label={t("enter_file_name")}
id="upload-file-name"
value={fileUpload.fileNames[0] || ""}
disabled={fileUpload.uploading}
onChange={(e) => fileUpload.setFileName(e.value)}
error={fileUpload.error || undefined}
required
/>
<div className="flex items-center gap-2">
<Button
onClick={handleUpload}
disabled={fileUpload.uploading}
className="w-full"
id="upload_file_button"
variant={"primary"}
>
<CareIcon icon="l-check" className="mr-2" />
{t("upload")}
</Button>
<Button
variant={"destructive"}
onClick={fileUpload.clearFiles}
disabled={fileUpload.uploading}
>
<CareIcon icon="l-trash-alt" className="mr-2" />
{t("discard")}
</Button>
</div>
{!!fileUpload.progress && (
<LinearProgressWithLabel value={fileUpload.progress} />
)}
</div>
) : (
<div className="mt-5 mb-8 flex w-full flex-col items-center gap-4 md:flex-row">
<label className="flex w-full cursor-pointer items-center justify-center gap-2 rounded-lg border border-dashed border-primary-500/20 bg-primary-500/10 p-3 text-primary-700 transition-all hover:bg-primary-500/20 md:p-6">
<CareIcon icon={"l-file-upload-alt"} className="text-2xl" />
<div className="text-lg">{t("choose_file")}</div>
<fileUpload.Input />
</label>
<Submit
type="submit"
onClick={handleUpload}
disabled={uploadDone}
>
<CareIcon icon="l-cloud-upload" className="text-lg" />
<span>Upload</span>
</Submit>
</div>
)}
</>
Expand Down
2 changes: 2 additions & 0 deletions src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ const buttonVariants = cva(
"bg-red-500 text-gray-50 shadow-sm hover:bg-red-500/90 dark:bg-red-900 dark:text-gray-50 dark:hover:bg-red-900/90",
outline:
"border border-gray-200 bg-white shadow-sm hover:bg-gray-100 hover:text-gray-900 dark:border-gray-800 dark:bg-gray-950 dark:hover:bg-gray-800 dark:hover:text-gray-50",
primary:
"bg-primary-700 text-white shadow hover:bg-primary-700/90 dark:bg-primary-100 dark:text-primary-900 dark:hover:bg-primary-100/90",
secondary:
"bg-gray-100 text-gray-900 shadow-sm hover:bg-gray-100/80 dark:bg-gray-800 dark:text-gray-50 dark:hover:bg-gray-800/80",
ghost:
Expand Down
Loading