generated from pheonix-coder/flask-minimal-template
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281 from priyanshuverma-dev/feat-image-captioning…
…-magic-tool feat: Image Captioning Magic tool
- Loading branch information
Showing
8 changed files
with
190 additions
and
1 deletion.
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
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
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
137 changes: 137 additions & 0 deletions
137
client/src/components/modals/image-captioning-magic-modal.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,137 @@ | ||
import { | ||
AlertDialog, | ||
AlertDialogContent, | ||
AlertDialogDescription, | ||
AlertDialogFooter, | ||
AlertDialogHeader, | ||
AlertDialogTitle, | ||
} from "@/components/ui/alert-dialog"; | ||
import { SERVER_URL } from "@/lib/utils"; | ||
import { useImageCaptioningStore } from "@/stores/modal-store"; | ||
import axios from "axios"; | ||
import { useState } from "react"; | ||
import { Button } from "../ui/button"; | ||
import toast from "react-hot-toast"; | ||
|
||
import { X } from "lucide-react"; | ||
|
||
import { Input } from "../ui/input"; | ||
import { Skeleton } from "../ui/skeleton"; | ||
|
||
export default function ImageCaptioningModal() { | ||
const modal = useImageCaptioningStore(); | ||
const [loading, setLoading] = useState(false); | ||
const [caption, setCaption] = useState(""); | ||
|
||
const [selectedFile, setSelectedFile] = useState<File | null>(null); | ||
const [imagePreview, setImagePreview] = useState<string | null>(null); | ||
|
||
const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||
const file = event.target.files ? event.target.files[0] : null; | ||
if (file) { | ||
setSelectedFile(file); | ||
setImagePreview(URL.createObjectURL(file)); | ||
} | ||
}; | ||
|
||
const handleCaptionSubmit = async (event: any) => { | ||
event.preventDefault(); | ||
setCaption(""); | ||
if (!selectedFile) return toast.error("Please select a file!"); | ||
|
||
const formData = new FormData(); | ||
formData.append("image", selectedFile); | ||
setLoading(true); | ||
try { | ||
const token = localStorage.getItem("token"); | ||
|
||
const authHeaders = { | ||
Authorization: `Bearer ${token || ""}`, | ||
}; | ||
|
||
const response = await axios.post( | ||
`${SERVER_URL}/api/image-captioning`, | ||
formData, | ||
{ | ||
headers: authHeaders, | ||
} | ||
); | ||
setCaption(response.data.caption); | ||
} catch (error) { | ||
console.error("Error fetching image caption:", error); | ||
} finally { | ||
setLoading(false); | ||
} | ||
}; | ||
|
||
return ( | ||
<AlertDialog open={modal.isOpen} onOpenChange={() => modal.onClose()}> | ||
<AlertDialogContent> | ||
<AlertDialogHeader> | ||
<AlertDialogTitle> | ||
<div className="flex items-center justify-between"> | ||
<p>Image Captioning Tool</p> | ||
<Button | ||
variant={"outline"} | ||
size={"icon"} | ||
className="rounded-full" | ||
onClick={() => modal.onClose()} | ||
> | ||
<X /> | ||
</Button> | ||
</div> | ||
</AlertDialogTitle> | ||
<AlertDialogDescription> | ||
Generate a Caption for Your Image. | ||
</AlertDialogDescription> | ||
<div className="grid gap-4 w-full"> | ||
{imagePreview && ( | ||
<div className="relative aspect-video"> | ||
<img | ||
src={imagePreview} | ||
alt="Uploaded image preview" | ||
className="object-contain w-full h-full" | ||
/> | ||
</div> | ||
)} | ||
{loading && ( | ||
<div className="space-y-2"> | ||
<Skeleton className="h-4 w-full" /> | ||
<Skeleton className="h-4 w-[90%]" /> | ||
<Skeleton className="h-4 w-[75%]" /> | ||
</div> | ||
)} | ||
{caption && ( | ||
<div className="p-4 bg-muted rounded-md"> | ||
<p className="text-sm">{caption}</p> | ||
</div> | ||
)} | ||
<div className="flex items-center gap-4"> | ||
<form | ||
onSubmit={handleCaptionSubmit} | ||
className="w-full flex items-center flex-col gap-4" | ||
> | ||
<Input | ||
disabled={loading} | ||
type="file" | ||
onChange={handleFileChange} | ||
accept="image/*" | ||
className="cursor-pointer" | ||
/> | ||
<Button | ||
disabled={loading} | ||
className="w-full" | ||
variant={"outline"} | ||
type="submit" | ||
> | ||
{loading ? "Generating Caption..." : "Generate Caption"} | ||
</Button> | ||
</form> | ||
</div> | ||
</div> | ||
</AlertDialogHeader> | ||
<AlertDialogFooter></AlertDialogFooter> | ||
</AlertDialogContent> | ||
</AlertDialog> | ||
); | ||
} |
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
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
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 |
---|---|---|
|
@@ -21,3 +21,5 @@ translate | |
pytesseract | ||
pillow | ||
fpdf | ||
transformers | ||
torch |
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 |
---|---|---|
|
@@ -19,3 +19,4 @@ pytesseract | |
pillow | ||
fpdf | ||
translate | ||
transformers |