163 lines
5.0 KiB
TypeScript
163 lines
5.0 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import TextInput from "@/components/TextInput";
|
|
import useCollectionStore from "@/store/collections";
|
|
import toast, { Toaster } from "react-hot-toast";
|
|
import { faFolder } from "@fortawesome/free-solid-svg-icons";
|
|
import { HexColorPicker } from "react-colorful";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { CollectionIncludingMembersAndLinkCount } from "@/types/global";
|
|
|
|
type Props = {
|
|
modalId: string;
|
|
isOpen: boolean;
|
|
onClose: Function;
|
|
activeCollection: CollectionIncludingMembersAndLinkCount;
|
|
};
|
|
|
|
export default function EditCollectionModal({
|
|
modalId,
|
|
isOpen,
|
|
onClose,
|
|
activeCollection,
|
|
}: Props) {
|
|
const modal = document.getElementById(modalId);
|
|
|
|
useEffect(() => {
|
|
modal?.scrollTo(0, 0);
|
|
setCollection(activeCollection);
|
|
|
|
modal?.addEventListener("close", () => {
|
|
onClose();
|
|
});
|
|
|
|
return () => {
|
|
modal?.addEventListener("close", () => {
|
|
onClose();
|
|
});
|
|
};
|
|
}, [isOpen]);
|
|
|
|
const [collection, setCollection] =
|
|
useState<CollectionIncludingMembersAndLinkCount>(activeCollection);
|
|
|
|
const [submitLoader, setSubmitLoader] = useState(false);
|
|
const { updateCollection } = useCollectionStore();
|
|
|
|
const submit = async () => {
|
|
if (!submitLoader) {
|
|
setSubmitLoader(true);
|
|
if (!collection) return null;
|
|
|
|
setSubmitLoader(true);
|
|
|
|
const load = toast.loading("Updating...");
|
|
|
|
let response;
|
|
|
|
response = await updateCollection(collection as any);
|
|
|
|
toast.dismiss(load);
|
|
|
|
if (response.ok) {
|
|
toast.success(`Updated!`);
|
|
(document.getElementById(modalId) as any).close();
|
|
} else toast.error(response.data as string);
|
|
|
|
setSubmitLoader(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<dialog
|
|
id={modalId}
|
|
className="modal backdrop-blur-sm overflow-y-auto p-5"
|
|
open={isOpen}
|
|
>
|
|
<Toaster
|
|
position="top-center"
|
|
reverseOrder={false}
|
|
toastOptions={{
|
|
className:
|
|
"border border-sky-100 dark:border-neutral-700 dark:bg-neutral-900 dark:text-white",
|
|
}}
|
|
/>
|
|
<div className="modal-box max-h-full overflow-y-visible border border-neutral-content w-11/12 max-w-2xl">
|
|
<form method="dialog">
|
|
<button className="btn btn-sm outline-none btn-circle btn-ghost absolute right-3 top-3">
|
|
✕
|
|
</button>
|
|
</form>
|
|
|
|
<p className="text-xl mb-5 font-thin">Edit Collection Info</p>
|
|
|
|
<div className="flex flex-col gap-3">
|
|
<div className="flex flex-col sm:flex-row gap-3">
|
|
<div className="w-full">
|
|
<p className="mb-2">Name</p>
|
|
<div className="flex flex-col gap-3">
|
|
<TextInput
|
|
className="bg-base-200"
|
|
value={collection.name}
|
|
placeholder="e.g. Example Collection"
|
|
onChange={(e) =>
|
|
setCollection({ ...collection, name: e.target.value })
|
|
}
|
|
/>
|
|
<div>
|
|
<p className="w-full mb-2">Color</p>
|
|
<div className="color-picker flex justify-between">
|
|
<div className="flex flex-col gap-2 items-center w-32">
|
|
<div style={{ color: collection.color }}>
|
|
<FontAwesomeIcon
|
|
icon={faFolder}
|
|
className="w-12 h-12 drop-shadow"
|
|
/>
|
|
</div>
|
|
<div
|
|
className="btn btn-ghost btn-xs"
|
|
onClick={() =>
|
|
setCollection({ ...collection, color: "#0ea5e9" })
|
|
}
|
|
>
|
|
Reset
|
|
</div>
|
|
</div>
|
|
<HexColorPicker
|
|
color={collection.color}
|
|
onChange={(e) =>
|
|
setCollection({ ...collection, color: e })
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="w-full">
|
|
<p className="mb-2">Description</p>
|
|
<textarea
|
|
className="w-full h-[13rem] resize-none border rounded-md duration-100 bg-base-200 p-2 outline-none border-neutral-content focus:border-primary"
|
|
placeholder="The purpose of this Collection..."
|
|
value={collection.description}
|
|
onChange={(e) =>
|
|
setCollection({
|
|
...collection,
|
|
description: e.target.value,
|
|
})
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<button className="btn btn-accent w-fit ml-auto" onClick={submit}>
|
|
Save
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<form method="dialog" className="modal-backdrop">
|
|
<button>close</button>
|
|
</form>
|
|
</dialog>
|
|
);
|
|
}
|