svrjs-nextjs-website/app/(auth)/admin/downloads/page.tsx

252 lines
6.2 KiB
TypeScript
Raw Normal View History

2024-06-20 17:37:45 +02:00
"use client";
2024-06-20 19:46:48 +02:00
2024-07-17 20:33:43 +02:00
import React, { useEffect, useState } from "react";
2024-06-20 19:46:48 +02:00
import { useForm, SubmitHandler } from "react-hook-form";
2024-06-20 17:37:45 +02:00
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { Button } from "@/components/ui/button";
import {
2024-07-10 08:10:55 +02:00
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
2024-06-20 17:37:45 +02:00
} from "@/components/ui/form";
import { Input } from "@/components/ui/input";
2024-07-17 20:33:43 +02:00
import { UploadButton } from "@/lib/uploadthing";
2024-06-20 19:46:48 +02:00
import { downloadSchema } from "@/lib/validations/validation";
import { useToast } from "@/components/ui/use-toast";
2024-07-17 20:33:43 +02:00
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
interface DownloadEntry {
_id: string;
fileName: string;
version: string;
downloadLink: string;
fileSize: string;
}
2024-06-20 17:37:45 +02:00
2024-07-10 08:10:55 +02:00
const DownloadsPage = () => {
const { toast } = useToast();
2024-07-17 20:33:43 +02:00
const [downloads, setDownloads] = useState<DownloadEntry[]>([]);
const [error, setError] = useState<string | null>(null);
const [loading, setLoading] = useState(false);
2024-07-10 08:10:55 +02:00
const form = useForm<z.infer<typeof downloadSchema>>({
resolver: zodResolver(downloadSchema),
defaultValues: {
fileName: "",
version: "",
downloadLink: "",
fileSize: "",
},
});
2024-06-20 17:37:45 +02:00
2024-07-17 20:33:43 +02:00
const fetchDownloads = async () => {
try {
const response = await fetch("/api/downloads", {
method: "GET",
});
if (response.ok) {
const data: DownloadEntry[] = await response.json();
setDownloads(data);
} else {
throw new Error(`HTTP error! status: ${response.status}`);
}
} catch (error: any) {
setError(error.message || "Failed to fetch downloads");
}
};
useEffect(() => {
fetchDownloads();
const interval = setInterval(() => {
fetchDownloads();
}, 10000);
return () => clearInterval(interval);
}, []);
2024-07-10 08:10:55 +02:00
const onSubmit: SubmitHandler<z.infer<typeof downloadSchema>> = async (
data
) => {
2024-07-17 20:33:43 +02:00
setLoading(true);
2024-07-10 08:10:55 +02:00
const response = await fetch("/api/upload", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(data),
});
2024-06-20 17:37:45 +02:00
2024-07-10 08:10:55 +02:00
if (response.ok) {
form.reset();
2024-07-17 20:33:43 +02:00
fetchDownloads();
setLoading(false);
toast({ description: "Download Successfully Updated" });
2024-07-10 08:10:55 +02:00
} else {
console.error("Upload failed");
2024-07-17 20:33:43 +02:00
setLoading(false);
toast({ description: "Uploading Failed", variant: "destructive" });
2024-07-10 08:10:55 +02:00
}
};
2024-06-20 17:37:45 +02:00
2024-07-17 20:33:43 +02:00
const deleteDownload = async (id: string) => {
try {
const response = await fetch(`/api/delete/downloads/${id}`, {
method: "DELETE",
});
if (response.ok) {
fetchDownloads();
} else {
throw new Error(`HTTP error! status: ${response.status}`);
}
} catch (error: any) {
setError(error.message || "Failed to delete download");
}
};
2024-07-10 08:10:55 +02:00
return (
<section id="downloads-page" className="wrapper container">
2024-07-17 20:16:05 +02:00
<h1 className="text-3xl font-bold py-6">Downloads Form</h1>
2024-07-10 08:10:55 +02:00
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
<FormField
control={form.control}
name="fileName"
render={({ field }) => (
<FormItem>
<FormLabel>File Name</FormLabel>
<FormControl>
<Input {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="version"
render={({ field }) => (
<FormItem>
<FormLabel>Version</FormLabel>
<FormControl>
<Input {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="downloadLink"
render={({ field }) => (
<FormItem>
<FormLabel>Download Link</FormLabel>
<UploadButton
endpoint="imageUploader"
onClientUploadComplete={(res) => {
field.onChange(res[0].url);
}}
onUploadError={(error: Error) => {
alert(`ERROR! ${error.message}`);
}}
/>
<FormControl>
<Input {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="fileSize"
render={({ field }) => (
<FormItem>
<FormLabel>File Size</FormLabel>
<FormControl>
<Input {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<Button
type="submit"
className="w-full text-lg rounded-full"
size={"lg"}
2024-07-17 20:33:43 +02:00
disabled={loading}
2024-07-10 08:10:55 +02:00
>
Submit
</Button>
</form>
</Form>
2024-07-17 20:33:43 +02:00
{/* Section to list and delete downloads */}
<section id="downloads-list" className="py-16 md:py-24">
<h2 className="text-3xl md:text-4xl font-bold">Existing Downloads</h2>
{error && <p className="text-red-500">{error}</p>}
<Table className="w-full mt-4 border-muted">
<TableHeader>
<TableRow>
<TableHead className="border-b px-4 py-2">File Name</TableHead>
<TableHead className="border-b px-4 py-2">Version</TableHead>
<TableHead className="border-b px-4 py-2">
Download Link
</TableHead>
<TableHead className="border-b px-4 py-2">File Size</TableHead>
<TableHead className="border-b px-4 py-2">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{downloads
.slice()
.reverse()
.map((download) => (
<TableRow key={download._id}>
<TableCell className="border-b px-4 py-2">
{download.fileName}
</TableCell>
<TableCell className="border-b px-4 py-2">
{download.version}
</TableCell>
<TableCell className="border-b px-4 py-2">
<a
href={download.downloadLink}
target="_blank"
rel="noopener noreferrer"
>
{download.downloadLink}
</a>
</TableCell>
<TableCell className="border-b px-4 py-2">
{download.fileSize}
</TableCell>
<TableCell className="border-b px-4 py-2">
<Button
variant={"destructive"}
onClick={() => deleteDownload(download._id)}
>
Delete
</Button>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</section>
2024-07-10 08:10:55 +02:00
</section>
);
2024-06-20 17:37:45 +02:00
};
2024-07-10 08:10:55 +02:00
export default DownloadsPage;