app/convert-format/page.tsx (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
"use client"; import { useEffect, useState } from "react"; import { FFmpeg } from "@ffmpeg/ffmpeg"; import { toBlobURL } from "@ffmpeg/util"; import * as React from "react"; import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; function InputFile({ onFileSelect }: any) { const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => { if (event.target.files && event.target.files[0]) { onFileSelect(event.target.files[0]); } }; return ( <div className="grid w-full max-w-sm items-center gap-1.5"> <Label htmlFor="file-input">Select Image</Label> <Input id="file-input" type="file" accept="image/*" onChange={handleFileChange} /> </div> ); } export default function Home() { const [ffmpeg, setFFmpeg] = useState<FFmpeg | null>(null); const [isLoading, setIsLoading] = useState(true); const [converting, setConverting] = useState(false); const [error, setError] = useState<string | null>(null); const [downloadUrl, setDownloadUrl] = useState(""); const [downloadFileName, setDownloadFileName] = useState(""); const [originalFileName, setOriginalFileName] = useState(""); const [originalFileSize, setOriginalFileSize] = useState(""); const [convertedFileSize, setConvertedFileSize] = useState(""); const [selectedFormat, setSelectedFormat] = useState(""); const [availableFormats, setAvailableFormats] = useState([ { value: "png", label: "PNG" }, { value: "jpg", label: "JPEG" }, { value: "webp", label: "WebP" }, { value: "gif", label: "GIF" }, { value: "bmp", label: "BMP" }, { value: "tiff", label: "TIFF" }, { value: "ico", label: "ICO" }, { value: "avif", label: "AVIF" }, { value: "heic", label: "HEIC" }, ]); useEffect(() => { const loadFFmpeg = async () => { try { const ffmpegInstance = new FFmpeg(); const baseURL = "https://unpkg.com/@ffmpeg/core@0.12.4/dist/umd"; await ffmpegInstance.load({ coreURL: await toBlobURL( `${baseURL}/ffmpeg-core.js`, "text/javascript", ), wasmURL: await toBlobURL( `${baseURL}/ffmpeg-core.wasm`, "application/wasm", ), }); setFFmpeg(ffmpegInstance); setIsLoading(false); } catch (error) { console.error("Error loading FFmpeg:", error); setError("Failed to load FFmpeg"); } }; loadFFmpeg(); return () => { if (downloadUrl) { URL.revokeObjectURL(downloadUrl); } }; }, [downloadUrl]); const humanFileSize = (size: number) => { const i = size === 0 ? 0 : Math.floor(Math.log(size) / Math.log(1024)); return ( (size / Math.pow(1024, i)).toFixed(2) + " " + ["B", "kB", "MB", "GB", "TB"][i] ); }; const convertImage = async (file: File, format: string) => { if (!ffmpeg || !file) return; try { setConverting(true); setError(null); const inputFileName = "input_" + file.name; const outputFileName = `${file.name.split(".")[0]}-new.${format}`; const fileData = await file.arrayBuffer(); await ffmpeg.writeFile(inputFileName, new Uint8Array(fileData)); await ffmpeg.exec(["-i", inputFileName, outputFileName]); const data = await ffmpeg.readFile(outputFileName); const url = URL.createObjectURL( new Blob([data], { type: `image/${format}` }), ); await ffmpeg.deleteFile(inputFileName); await ffmpeg.deleteFile(outputFileName); if (downloadUrl) { URL.revokeObjectURL(downloadUrl); } setDownloadUrl(url); setDownloadFileName(outputFileName); setConvertedFileSize(humanFileSize(data.length)); setConverting(false); } catch (error) { console.error("Error during conversion:", error); setError( `Error during conversion: ${error instanceof Error ? error.message : "Unknown error"}`, ); setConverting(false); } }; const handleConvert = async (event: React.FormEvent<HTMLFormElement>) => { event.preventDefault(); const form = event.currentTarget; const fileInput = form.querySelector<HTMLInputElement>('input[type="file"]'); if (!fileInput?.files?.length || !selectedFormat) { setError("Please select a file and format"); return; } const file = fileInput.files[0]; await convertImage(file, selectedFormat); }; const handleFileSelect = (file: File) => { setOriginalFileName(file.name); setOriginalFileSize(humanFileSize(file.size)); // Get the current format and filter it out from available formats const currentFormat = file.name.split(".").pop()?.toLowerCase(); setAvailableFormats((prev) => prev.filter((format) => format.value !== currentFormat), ); }; const handleReset = () => { window.location.reload(); }; return ( <main> <title>Convert Format | Image Utilities</title> <h1 className="text-xl font-medium text-gray-900 mb-8">Convert Format</h1> <form onSubmit={handleConvert} className="space-y-6"> <div className="space-y-4"> <InputFile onFileSelect={handleFileSelect} /> {originalFileName && ( <div className="text-sm text-gray-700"> <p>Original File: {originalFileName}</p> <p>Size: {originalFileSize}</p> </div> )} <div> <label htmlFor="format-select" className="block text-sm font-medium text-gray-700 mb-2" > Convert To </label> <Select onValueChange={setSelectedFormat}> <SelectTrigger className="max-w-40"> <SelectValue placeholder="Select format" /> </SelectTrigger> <SelectContent> <SelectGroup> <SelectLabel>Formats</SelectLabel> {availableFormats.map((format) => ( <SelectItem key={format.value} value={format.value}> {format.label} </SelectItem> ))} </SelectGroup> </SelectContent> </Select> </div> </div> <div className="flex gap-4"> {isLoading ? ( <p className="text-sm">loading ffmpeg...</p> ) : ( <button type="submit" disabled={isLoading || !originalFileName || downloadUrl !== ""} className="flex justify-center py-[5px] px-[10px] border border-transparent rounded-md shadow-sm text-sm font-semibold text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 disabled:opacity-50 disabled:cursor-not-allowed transition-colors duration-200" > Convert Image </button> )} {originalFileName && ( <button type="button" onClick={handleReset} className="flex justify-center py-[5px] px-[10px] border border-transparent rounded-md shadow-sm text-sm font-semibold text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 disabled:opacity-50 disabled:cursor-not-allowed transition-colors duration-200" > Reset </button> )} </div> </form> <div className="mt-8 space-y-4"> {converting && ( <div className="rounded-md p-4 transition-colors duration-200 inline-block"> <p className="text-sm text-gray-400">Converting...</p> </div> )} {error && ( <div className="rounded-md p-4 transition-colors duration-200 inline-block"> <p className="text-sm text-red-600">{error}</p> </div> )} {downloadUrl && ( <div className="text-sm text-gray-700"> <p>Converted File: {downloadFileName}</p> <p>Size: {convertedFileSize}</p> </div> )} {downloadUrl && ( <a href={downloadUrl} download={downloadFileName} className="inline-block text-center py-[5px] px-[10px] rounded-md shadow-sm text-sm font-medium text-white bg-green-600 hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500 transition-colors duration-200" > Download {downloadFileName.split(".").pop()?.toUpperCase()} Image </a> )} </div> </main> ); } |