2025-10-09 17:05:19 +09:00
|
|
|
"use client";
|
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { useToast } from "@/app/components/ui/ToastProvider";
|
|
|
|
|
|
2025-10-09 17:16:27 +09:00
|
|
|
export function UploadButton({ onUploaded, multiple = false }: { onUploaded: (url: string) => void; multiple?: boolean }) {
|
2025-10-09 17:05:19 +09:00
|
|
|
const { show } = useToast();
|
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
async function onChange(e: React.ChangeEvent<HTMLInputElement>) {
|
2025-10-09 17:16:27 +09:00
|
|
|
const files = Array.from(e.target.files ?? []);
|
|
|
|
|
if (files.length === 0) return;
|
2025-10-09 17:05:19 +09:00
|
|
|
try {
|
|
|
|
|
setLoading(true);
|
2025-10-09 17:16:27 +09:00
|
|
|
for (const f of files) {
|
|
|
|
|
const fd = new FormData();
|
|
|
|
|
fd.append("file", f);
|
|
|
|
|
const r = await fetch("/api/uploads", { method: "POST", body: fd });
|
|
|
|
|
const data = await r.json();
|
|
|
|
|
if (!r.ok) throw new Error(JSON.stringify(data));
|
|
|
|
|
onUploaded(data.url);
|
|
|
|
|
}
|
2025-10-09 17:05:19 +09:00
|
|
|
show("업로드 완료");
|
|
|
|
|
} catch (e) {
|
|
|
|
|
show("업로드 실패");
|
|
|
|
|
} finally {
|
|
|
|
|
setLoading(false);
|
|
|
|
|
e.currentTarget.value = "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return <label style={{ display: "inline-block" }}>
|
|
|
|
|
<span style={{ padding: "6px 10px", border: "1px solid #ddd", borderRadius: 6, cursor: "pointer" }}>{loading ? "업로드 중..." : "이미지 업로드"}</span>
|
2025-10-09 17:16:27 +09:00
|
|
|
<input type="file" accept="image/*" onChange={onChange} style={{ display: "none" }} multiple={multiple} />
|
2025-10-09 17:05:19 +09:00
|
|
|
</label>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|