371 lines
14 KiB
TypeScript
371 lines
14 KiB
TypeScript
// Copyright (C) 2022-present Daniel31x13 <daniel31x13@gmail.com>
|
|
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import React, { useState } from "react";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import {
|
|
faClose,
|
|
faPenToSquare,
|
|
faPlus,
|
|
faTrashCan,
|
|
faUser,
|
|
faUserPlus,
|
|
} from "@fortawesome/free-solid-svg-icons";
|
|
import useCollectionStore from "@/store/collections";
|
|
import { CollectionIncludingMembers, Member } from "@/types/global";
|
|
import { useSession } from "next-auth/react";
|
|
import Modal from "@/components/Modal";
|
|
import DeleteCollection from "@/components/Modal/DeleteCollection";
|
|
import RequiredBadge from "../RequiredBadge";
|
|
import addMemberToCollection from "@/lib/client/addMemberToCollection";
|
|
import ImageWithFallback from "../ImageWithFallback";
|
|
import Checkbox from "../Checkbox";
|
|
|
|
type Props = {
|
|
toggleCollectionModal: Function;
|
|
activeCollection: CollectionIncludingMembers;
|
|
method: "CREATE" | "UPDATE";
|
|
};
|
|
|
|
export default function CollectionModal({
|
|
toggleCollectionModal,
|
|
activeCollection,
|
|
method,
|
|
}: Props) {
|
|
const [collection, setCollection] =
|
|
useState<CollectionIncludingMembers>(activeCollection);
|
|
|
|
const [member, setMember] = useState<Member>({
|
|
canCreate: false,
|
|
canUpdate: false,
|
|
canDelete: false,
|
|
user: {
|
|
name: "",
|
|
email: "",
|
|
},
|
|
});
|
|
|
|
const { updateCollection, addCollection } = useCollectionStore();
|
|
|
|
const [deleteCollectionModal, setDeleteCollectionModal] = useState(false);
|
|
|
|
const toggleDeleteCollectionModal = () => {
|
|
setDeleteCollectionModal(!deleteCollectionModal);
|
|
};
|
|
|
|
const session = useSession();
|
|
|
|
const setMemberState = (newMember: Member) => {
|
|
if (!collection) return null;
|
|
|
|
setCollection({
|
|
...collection,
|
|
members: [...collection.members, newMember],
|
|
});
|
|
|
|
setMember({
|
|
canCreate: false,
|
|
canUpdate: false,
|
|
canDelete: false,
|
|
user: {
|
|
name: "",
|
|
email: "",
|
|
},
|
|
});
|
|
};
|
|
|
|
const submit = async () => {
|
|
if (!collection) return null;
|
|
|
|
let response = null;
|
|
|
|
if (method === "CREATE") response = await addCollection(collection);
|
|
else if (method === "UPDATE") response = await updateCollection(collection);
|
|
else console.log("Unknown method.");
|
|
|
|
if (response) toggleCollectionModal();
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col gap-3 sm:w-[35rem] w-80">
|
|
<p className="text-xl text-sky-500 mb-2 text-center">
|
|
{method === "CREATE" ? "Add" : "Edit"} Collection
|
|
</p>
|
|
|
|
<div className="flex flex-col sm:flex-row gap-3">
|
|
<div className="w-full">
|
|
<p className="text-sm font-bold text-sky-300 mb-2">
|
|
Name
|
|
<RequiredBadge />
|
|
</p>
|
|
<input
|
|
value={collection.name}
|
|
onChange={(e) =>
|
|
setCollection({ ...collection, name: e.target.value })
|
|
}
|
|
type="text"
|
|
placeholder="e.g. Example Collection"
|
|
className="w-full rounded-md p-3 border-sky-100 border-solid border outline-none focus:border-sky-500 duration-100"
|
|
/>
|
|
</div>
|
|
|
|
<div className="w-full">
|
|
<p className="text-sm font-bold text-sky-300 mb-2">Description</p>
|
|
<input
|
|
value={collection.description}
|
|
onChange={(e) =>
|
|
setCollection({
|
|
...collection,
|
|
description: e.target.value,
|
|
})
|
|
}
|
|
type="text"
|
|
placeholder="Collection description"
|
|
className="w-full rounded-md p-3 border-sky-100 border-solid border outline-none focus:border-sky-500 duration-100"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<hr className="my-2" />
|
|
|
|
{/* <p className="text-sky-600">Sharing & Collaboration Settings</p>
|
|
|
|
<p className="text-sm font-bold text-sky-300">Collaboration</p>
|
|
|
|
<div className="w-fit">
|
|
<div className="border border-sky-100 rounded-md bg-white px-2 py-1 text-center select-none cursor-pointer text-sky-900 duration-100 hover:border-sky-500">
|
|
Manage Team
|
|
</div>
|
|
</div>
|
|
|
|
<Checkbox
|
|
label="Make this a public collection."
|
|
state={true}
|
|
onClick={() => console.log("Clicked!")}
|
|
/>
|
|
<p className="text-gray-500 text-sm">
|
|
This will let anyone to access this collection.
|
|
</p> */}
|
|
|
|
<div className="relative">
|
|
<input
|
|
value={member.user.email}
|
|
onChange={(e) => {
|
|
setMember({
|
|
...member,
|
|
user: { ...member.user, email: e.target.value },
|
|
});
|
|
}}
|
|
type="text"
|
|
placeholder="Email"
|
|
className="w-full rounded-md p-3 pr-12 border-sky-100 border-solid border outline-none focus:border-sky-500 duration-100"
|
|
/>
|
|
|
|
<div
|
|
onClick={() =>
|
|
addMemberToCollection(
|
|
session.data?.user.email as string,
|
|
member.user.email,
|
|
collection,
|
|
setMemberState
|
|
)
|
|
}
|
|
className="absolute flex items-center justify-center right-2 top-2 bottom-2 bg-sky-500 hover:bg-sky-400 duration-100 text-white w-9 rounded-md cursor-pointer"
|
|
>
|
|
<FontAwesomeIcon icon={faUserPlus} className="w-6 h-6" />
|
|
</div>
|
|
</div>
|
|
{collection?.members[0]?.user ? (
|
|
<>
|
|
<p className="text-center text-gray-500 text-xs sm:text-sm">
|
|
(All Members have <b>Read</b> access to this collection.)
|
|
</p>
|
|
|
|
<div className="h-36 overflow-auto flex flex-col gap-3 rounded-md shadow-inner">
|
|
{collection.members.map((e, i) => {
|
|
return (
|
|
<div
|
|
key={i}
|
|
className="relative border p-2 rounded-md border-sky-100 flex flex-col sm:flex-row sm:items-center gap-2 justify-between"
|
|
>
|
|
<FontAwesomeIcon
|
|
icon={faClose}
|
|
className="absolute right-2 top-2 text-gray-500 h-4 hover:text-red-500 duration-100 cursor-pointer"
|
|
title="Remove Member"
|
|
onClick={() => {
|
|
const updatedMembers = collection.members.filter(
|
|
(member) => {
|
|
return member.user.email !== e.user.email;
|
|
}
|
|
);
|
|
setCollection({
|
|
...collection,
|
|
members: updatedMembers,
|
|
});
|
|
}}
|
|
/>
|
|
<div className="flex items-center gap-2">
|
|
<ImageWithFallback
|
|
key={i}
|
|
src={`/api/avatar/${e.userId}`}
|
|
className="h-10 w-10 shadow rounded-full border-[3px] border-sky-100"
|
|
>
|
|
<div className="text-white bg-sky-500 h-10 w-10 shadow rounded-full border-[3px] border-sky-100 flex items-center justify-center">
|
|
<FontAwesomeIcon icon={faUser} className="w-5 h-5" />
|
|
</div>
|
|
</ImageWithFallback>
|
|
<div>
|
|
<p className="text-sm font-bold text-sky-500">
|
|
{e.user.name}
|
|
</p>
|
|
<p className="text-sky-900">{e.user.email}</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex sm:block items-center gap-5">
|
|
<div>
|
|
<p className="font-bold text-sm text-gray-500">
|
|
Permissions
|
|
</p>
|
|
<p className="text-xs text-gray-400 mb-2">
|
|
(Click to toggle.)
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="cursor-pointer mr-1">
|
|
<input
|
|
type="checkbox"
|
|
id="canCreate"
|
|
className="peer sr-only"
|
|
checked={e.canCreate}
|
|
onChange={() => {
|
|
const updatedMembers = collection.members.map(
|
|
(member) => {
|
|
if (member.user.email === e.user.email) {
|
|
return { ...member, canCreate: !e.canCreate };
|
|
}
|
|
return member;
|
|
}
|
|
);
|
|
setCollection({
|
|
...collection,
|
|
members: updatedMembers,
|
|
});
|
|
}}
|
|
/>
|
|
<span className="text-sky-900 peer-checked:bg-sky-500 text-sm hover:bg-sky-200 duration-75 peer-checked:text-white rounded p-1 select-none">
|
|
Create
|
|
</span>
|
|
</label>
|
|
|
|
<label className="cursor-pointer mr-1">
|
|
<input
|
|
type="checkbox"
|
|
id="canUpdate"
|
|
className="peer sr-only"
|
|
checked={e.canUpdate}
|
|
onChange={() => {
|
|
const updatedMembers = collection.members.map(
|
|
(member) => {
|
|
if (member.user.email === e.user.email) {
|
|
return { ...member, canUpdate: !e.canUpdate };
|
|
}
|
|
return member;
|
|
}
|
|
);
|
|
setCollection({
|
|
...collection,
|
|
members: updatedMembers,
|
|
});
|
|
}}
|
|
/>
|
|
<span className="text-sky-900 peer-checked:bg-sky-500 text-sm hover:bg-sky-200 duration-75 peer-checked:text-white rounded p-1 select-none">
|
|
Update
|
|
</span>
|
|
</label>
|
|
|
|
<label className="cursor-pointer mr-1">
|
|
<input
|
|
type="checkbox"
|
|
id="canDelete"
|
|
className="peer sr-only"
|
|
checked={e.canDelete}
|
|
onChange={() => {
|
|
const updatedMembers = collection.members.map(
|
|
(member) => {
|
|
if (member.user.email === e.user.email) {
|
|
return { ...member, canDelete: !e.canDelete };
|
|
}
|
|
return member;
|
|
}
|
|
);
|
|
setCollection({
|
|
...collection,
|
|
members: updatedMembers,
|
|
});
|
|
}}
|
|
/>
|
|
<span className="text-sky-900 peer-checked:bg-sky-500 text-sm hover:bg-sky-200 duration-75 peer-checked:text-white rounded p-1 select-none">
|
|
Delete
|
|
</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</>
|
|
) : null}
|
|
|
|
<div className="flex flex-col justify-center items-center gap-2 mt-2">
|
|
<div
|
|
className="bg-sky-500 text-white flex items-center gap-2 py-2 px-5 rounded-md select-none font-bold cursor-pointer duration-100 hover:bg-sky-400"
|
|
onClick={submit}
|
|
>
|
|
<FontAwesomeIcon
|
|
icon={method === "CREATE" ? faPlus : faPenToSquare}
|
|
className="h-5"
|
|
/>
|
|
{method === "CREATE" ? "Add Collection" : "Edit Collection"}
|
|
</div>
|
|
|
|
{method === "UPDATE" ? (
|
|
<>
|
|
<div className="flex items-center justify-center gap-2">
|
|
<hr className="w-16 border" />
|
|
|
|
<p className="text-gray-400 font-bold">OR</p>
|
|
|
|
<hr className="w-16 border" />
|
|
</div>
|
|
|
|
<div
|
|
onClick={() => {
|
|
toggleDeleteCollectionModal();
|
|
}}
|
|
className="w-fit inline-flex rounded-md cursor-pointer bg-red-500 hover:bg-red-400 duration-100 p-2"
|
|
>
|
|
<FontAwesomeIcon
|
|
icon={faTrashCan}
|
|
className="w-4 h-4 text-white"
|
|
/>
|
|
</div>
|
|
</>
|
|
) : null}
|
|
</div>
|
|
|
|
{deleteCollectionModal ? (
|
|
<Modal toggleModal={toggleDeleteCollectionModal}>
|
|
<DeleteCollection
|
|
collection={collection}
|
|
toggleDeleteCollectionModal={toggleDeleteCollectionModal}
|
|
/>
|
|
</Modal>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|