Compare commits
No commits in common. "0d2a73b508f91f17151fd62995a217dbbe6ba48b" and "558cb3a54e13133fc3927c135916f22cc6eb44c9" have entirely different histories.
0d2a73b508
...
558cb3a54e
|
@ -2,7 +2,7 @@ import { Button } from "~/components/ui/button";
|
||||||
import logoPng from "~/images/lume-logo.png?url";
|
import logoPng from "~/images/lume-logo.png?url";
|
||||||
import lumeColorLogoPng from "~/images/lume-color-logo.png?url";
|
import lumeColorLogoPng from "~/images/lume-color-logo.png?url";
|
||||||
import discordLogoPng from "~/images/discord-logo.png?url";
|
import discordLogoPng from "~/images/discord-logo.png?url";
|
||||||
import { Form, Link, useLocation } from "@remix-run/react";
|
import { Link, useLocation } from "@remix-run/react";
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
|
@ -46,10 +46,6 @@ import {
|
||||||
TooltipProvider,
|
TooltipProvider,
|
||||||
} from "./ui/tooltip";
|
} from "./ui/tooltip";
|
||||||
import filesize from "./lib/filesize";
|
import filesize from "./lib/filesize";
|
||||||
import { z } from "zod";
|
|
||||||
import { getFormProps, useForm, useInputControl } from "@conform-to/react";
|
|
||||||
import { getZodConstraint, parseWithZod } from "@conform-to/zod";
|
|
||||||
import { ErrorList } from "./forms";
|
|
||||||
|
|
||||||
export const GeneralLayout = ({ children }: React.PropsWithChildren) => {
|
export const GeneralLayout = ({ children }: React.PropsWithChildren) => {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
@ -175,62 +171,30 @@ export const GeneralLayout = ({ children }: React.PropsWithChildren) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const UploadFormSchema = z.object({
|
|
||||||
uppyFiles: z.array(z.any()).min(1, {
|
|
||||||
message: "At least one file must be uploaded",
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
|
|
||||||
const UploadFileForm = () => {
|
const UploadFileForm = () => {
|
||||||
const {
|
const {
|
||||||
getRootProps,
|
getRootProps,
|
||||||
getInputProps,
|
getInputProps,
|
||||||
getFiles,
|
getFiles,
|
||||||
|
upload,
|
||||||
state,
|
state,
|
||||||
removeFile,
|
removeFile,
|
||||||
cancelAll,
|
cancelAll,
|
||||||
failedFiles,
|
failedFiles,
|
||||||
upload,
|
|
||||||
} = useUppy();
|
} = useUppy();
|
||||||
|
|
||||||
const [form, fields] = useForm({
|
|
||||||
constraint: getZodConstraint(UploadFormSchema),
|
|
||||||
shouldValidate: "onInput",
|
|
||||||
onValidate: ({ formData }) => {
|
|
||||||
const result = parseWithZod(formData, {
|
|
||||||
schema: UploadFormSchema,
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
},
|
|
||||||
onSubmit: (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
return upload();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const inputProps = getInputProps();
|
|
||||||
const files = useInputControl({
|
|
||||||
key: fields.uppyFiles.key,
|
|
||||||
name: fields.uppyFiles.name,
|
|
||||||
formId: form.id
|
|
||||||
});
|
|
||||||
|
|
||||||
const isUploading = state === "uploading";
|
const isUploading = state === "uploading";
|
||||||
const isCompleted = state === "completed";
|
const isCompleted = state === "completed";
|
||||||
const hasErrored = state === "error";
|
const hasErrored = state === "error";
|
||||||
const hasStarted = state !== "idle" && state !== "initializing";
|
const hasStarted = state !== "idle" && state !== "initializing";
|
||||||
const isValid = form.valid || getFiles().length > 0;
|
|
||||||
const getFailedState = (id: string) =>
|
const getFailedState = (id: string) =>
|
||||||
failedFiles.find((file) => file.id === id);
|
failedFiles.find((file) => file.id === id);
|
||||||
|
|
||||||
console.log({ files: getFiles() });
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<DialogHeader className="mb-6">
|
<DialogHeader className="mb-6">
|
||||||
<DialogTitle>Upload Files</DialogTitle>
|
<DialogTitle>Upload Files</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<Form {...getFormProps(form)} className="flex flex-col">
|
|
||||||
{!hasStarted ? (
|
{!hasStarted ? (
|
||||||
<div
|
<div
|
||||||
{...getRootProps()}
|
{...getRootProps()}
|
||||||
|
@ -238,15 +202,10 @@ const UploadFileForm = () => {
|
||||||
<input
|
<input
|
||||||
hidden
|
hidden
|
||||||
aria-hidden
|
aria-hidden
|
||||||
|
name="uppyFiles[]"
|
||||||
key={new Date().toISOString()}
|
key={new Date().toISOString()}
|
||||||
multiple
|
multiple
|
||||||
name={fields.uppyFiles.name}
|
{...getInputProps()}
|
||||||
{...inputProps}
|
|
||||||
value={files.value}
|
|
||||||
onChange={() => {
|
|
||||||
//@ts-expect-error -- conform has shitty typeinference for controls
|
|
||||||
files.change(getFiles());
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
<CloudUploadIcon className="w-24 h-24 stroke stroke-primary-dark" />
|
<CloudUploadIcon className="w-24 h-24 stroke stroke-primary-dark" />
|
||||||
<p>Drag & Drop Files or Browse</p>
|
<p>Drag & Drop Files or Browse</p>
|
||||||
|
@ -266,12 +225,11 @@ const UploadFileForm = () => {
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ErrorList
|
{hasErrored ? (
|
||||||
errors={[
|
<div className="text-red-500">
|
||||||
...(fields.uppyFiles.errors ?? []),
|
<p>An error occurred</p>
|
||||||
...(hasErrored ? ["An error occurred"] : []),
|
</div>
|
||||||
]}
|
) : null}
|
||||||
/>
|
|
||||||
|
|
||||||
{hasStarted && !hasErrored ? (
|
{hasStarted && !hasErrored ? (
|
||||||
<div className="flex flex-col items-center gap-y-2 w-full text-primary-1">
|
<div className="flex flex-col items-center gap-y-2 w-full text-primary-1">
|
||||||
|
@ -284,7 +242,7 @@ const UploadFileForm = () => {
|
||||||
|
|
||||||
{isUploading ? (
|
{isUploading ? (
|
||||||
<DialogClose asChild onClick={cancelAll}>
|
<DialogClose asChild onClick={cancelAll}>
|
||||||
<Button type="button" size={"lg"} className="mt-6">
|
<Button size={"lg"} className="mt-6">
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</DialogClose>
|
</DialogClose>
|
||||||
|
@ -292,22 +250,17 @@ const UploadFileForm = () => {
|
||||||
|
|
||||||
{isCompleted ? (
|
{isCompleted ? (
|
||||||
<DialogClose asChild>
|
<DialogClose asChild>
|
||||||
<Button type="button" size={"lg"} className="mt-6">
|
<Button size={"lg"} className="mt-6">
|
||||||
Close
|
Close
|
||||||
</Button>
|
</Button>
|
||||||
</DialogClose>
|
</DialogClose>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
{!hasStarted && !isCompleted && !isUploading ? (
|
{!hasStarted && !isCompleted && !isUploading ? (
|
||||||
<Button
|
<Button size={"lg"} className="mt-6" onClick={upload} disabled={getFiles().length === 0}>
|
||||||
type="submit"
|
|
||||||
size={"lg"}
|
|
||||||
className="mt-6"
|
|
||||||
disabled={!isValid}>
|
|
||||||
Upload
|
Upload
|
||||||
</Button>
|
</Button>
|
||||||
) : null}
|
) : null}
|
||||||
</Form>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -60,7 +60,7 @@ export class PinningProcess {
|
||||||
let allStatuses = Array.from(PinningProcess.instances.values());
|
let allStatuses = Array.from(PinningProcess.instances.values());
|
||||||
let inProgress = allStatuses.some((status) => {
|
let inProgress = allStatuses.some((status) => {
|
||||||
PinningProcess.checkStatus(status.id);
|
PinningProcess.checkStatus(status.id);
|
||||||
return status.status !== "processing";
|
return status.status !== "completed";
|
||||||
});
|
});
|
||||||
|
|
||||||
while (inProgress) {
|
while (inProgress) {
|
||||||
|
|
|
@ -63,7 +63,6 @@ export const usePinning = () => {
|
||||||
return {
|
return {
|
||||||
progressStatus: context.query.status,
|
progressStatus: context.query.status,
|
||||||
progressData: context.query.data,
|
progressData: context.query.data,
|
||||||
fetchProgress: context.query.refetch,
|
|
||||||
pinStatus,
|
pinStatus,
|
||||||
pinData,
|
pinData,
|
||||||
unpinStatus,
|
unpinStatus,
|
||||||
|
|
|
@ -33,7 +33,7 @@ export const PinningProvider = ({ children }: React.PropsWithChildren) => {
|
||||||
const queryResult = useQuery({
|
const queryResult = useQuery({
|
||||||
queryKey: ["pin-progress"],
|
queryKey: ["pin-progress"],
|
||||||
refetchInterval: (query) => {
|
refetchInterval: (query) => {
|
||||||
if (!query.state.data?.items || query.state.data.items.length === 0) {
|
if (!query.state.data || !query.state.data.items.length) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -53,10 +53,6 @@ export const columns: ColumnDef<FileItem>[] = [
|
||||||
// enableSorting: false,
|
// enableSorting: false,
|
||||||
// enableHiding: false,
|
// enableHiding: false,
|
||||||
// },
|
// },
|
||||||
{
|
|
||||||
accessorKey: "name",
|
|
||||||
header: () => null,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
accessorKey: "cid",
|
accessorKey: "cid",
|
||||||
header: "CID",
|
header: "CID",
|
||||||
|
|
|
@ -113,7 +113,7 @@ const PinFilesSchema = z.object({
|
||||||
});
|
});
|
||||||
|
|
||||||
const PinFilesForm = ({ close }: { close: () => void }) => {
|
const PinFilesForm = ({ close }: { close: () => void }) => {
|
||||||
const { bulkPin, pinStatus, fetchProgress } = usePinning();
|
const { bulkPin, pinStatus, pinData } = usePinning();
|
||||||
const [form, fields] = useForm({
|
const [form, fields] = useForm({
|
||||||
id: "pin-files",
|
id: "pin-files",
|
||||||
constraint: getZodConstraint(PinFilesSchema),
|
constraint: getZodConstraint(PinFilesSchema),
|
||||||
|
@ -131,12 +131,13 @@ const PinFilesForm = ({ close }: { close: () => void }) => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
console.log({pinStatus, pinData})
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (pinStatus === "success") {
|
if (pinStatus === "success") {
|
||||||
fetchProgress();
|
|
||||||
close();
|
close();
|
||||||
}
|
}
|
||||||
}, [pinStatus, fetchProgress, close]);
|
}, [pinStatus, close]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -153,8 +154,8 @@ const PinFilesForm = ({ close }: { close: () => void }) => {
|
||||||
errors={fields.cids.errors || pinStatus === "error" ? ["An error occurred, please try again"] : []}
|
errors={fields.cids.errors || pinStatus === "error" ? ["An error occurred, please try again"] : []}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button type="submit" className="w-full" disabled={pinStatus === "pending"}>
|
<Button type="submit" className="w-full">
|
||||||
{pinStatus === "pending" ? "Processing..." : "Pin Content"}
|
Pin Content
|
||||||
</Button>
|
</Button>
|
||||||
</form>
|
</form>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in New Issue