import { GeneralLayout } from "~/components/general-layout"; import { FileCard, FileCardList, FileTypes } from "~/components/file-card"; import { DataTable } from "~/components/data-table"; import { columns } from "./columns"; import { Input } from "~/components/ui/input"; import { Button } from "~/components/ui/button"; import { AddIcon } from "~/components/icons"; import { Authenticated } from "@refinedev/core"; import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger, } from "~/components/ui/dialog"; import { TextareaField } from "~/components/forms"; import { z } from "zod"; import { getFormProps, useForm } from "@conform-to/react"; import { getZodConstraint, parseWithZod } from "@conform-to/zod"; import { usePinning } from "~/hooks/usePinning"; import { CID } from "@lumeweb/libs5"; import { useEffect, useState } from "react"; export default function FileManager() { const [open, setOpen] = useState(false); const closeModal = () => setOpen(false); return (

File Manager

Files

} placeholder="Search files by name or CID" className="border-ring font-medium w-full grow h-12 flex-1 bg-primary-2/10" /> {/* We dont yet have any functionality for selecting so im commenting this out */} {/* */}
); } const PinFilesSchema = z.object({ cids: z .string() .transform((value) => value.split(",")) .refine( (value) => { return value.every((cid) => { try { CID.decode(cid); } catch (e) { return false; } return true; }); }, (val) => ({ message: `${val} is not a valid CID`, }), ), }); const PinFilesForm = ({ close }: { close: () => void }) => { const { bulkPin, pinStatus, pinData } = usePinning(); const [form, fields] = useForm({ id: "pin-files", constraint: getZodConstraint(PinFilesSchema), onValidate({ formData }) { return parseWithZod(formData, { schema: PinFilesSchema }); }, shouldValidate: "onSubmit", onSubmit(e, { submission }) { e.preventDefault(); if (submission?.status === "success") { const value = submission.value; bulkPin(value.cids); } }, }); console.log({pinStatus, pinData}) useEffect(() => { if (pinStatus === "success") { close(); } }, [pinStatus, close]); return ( <> Pin Content
); };