275 lines
8.3 KiB
TypeScript
275 lines
8.3 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import CollectionSelection from "@/components/InputSelect/CollectionSelection";
|
|
import TagSelection from "@/components/InputSelect/TagSelection";
|
|
import { LinkIncludingShortenedCollectionAndTags } from "@/types/global";
|
|
import { faPenToSquare } from "@fortawesome/free-regular-svg-icons";
|
|
import useLinkStore from "@/store/links";
|
|
import { faLink, faPlus } from "@fortawesome/free-solid-svg-icons";
|
|
import { useSession } from "next-auth/react";
|
|
import useCollectionStore from "@/store/collections";
|
|
import { useRouter } from "next/router";
|
|
import SubmitButton from "../../SubmitButton";
|
|
import { toast } from "react-hot-toast";
|
|
import Link from "next/link";
|
|
import TextInput from "@/components/TextInput";
|
|
import unescapeString from "@/lib/client/unescapeString";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
type Props =
|
|
| {
|
|
toggleLinkModal: Function;
|
|
method: "CREATE";
|
|
activeLink?: LinkIncludingShortenedCollectionAndTags;
|
|
}
|
|
| {
|
|
toggleLinkModal: Function;
|
|
method: "UPDATE";
|
|
activeLink: LinkIncludingShortenedCollectionAndTags;
|
|
};
|
|
|
|
export default function AddOrEditLink({
|
|
toggleLinkModal,
|
|
method,
|
|
activeLink,
|
|
}: Props) {
|
|
const [submitLoader, setSubmitLoader] = useState(false);
|
|
|
|
const [optionsExpanded, setOptionsExpanded] = useState(
|
|
method === "UPDATE" ? true : false
|
|
);
|
|
|
|
const { data } = useSession();
|
|
|
|
const [link, setLink] = useState<LinkIncludingShortenedCollectionAndTags>(
|
|
activeLink || {
|
|
name: "",
|
|
url: "",
|
|
type: "",
|
|
description: "",
|
|
tags: [],
|
|
screenshotPath: "",
|
|
pdfPath: "",
|
|
readabilityPath: "",
|
|
textContent: "",
|
|
collection: {
|
|
name: "",
|
|
ownerId: data?.user.id as number,
|
|
},
|
|
}
|
|
);
|
|
|
|
const { updateLink, addLink } = useLinkStore();
|
|
|
|
const router = useRouter();
|
|
const { collections } = useCollectionStore();
|
|
|
|
useEffect(() => {
|
|
if (method === "CREATE") {
|
|
if (router.query.id) {
|
|
const currentCollection = collections.find(
|
|
(e) => e.id == Number(router.query.id)
|
|
);
|
|
|
|
if (
|
|
currentCollection &&
|
|
currentCollection.ownerId &&
|
|
router.asPath.startsWith("/collections/")
|
|
)
|
|
setLink({
|
|
...link,
|
|
collection: {
|
|
id: currentCollection.id,
|
|
name: currentCollection.name,
|
|
ownerId: currentCollection.ownerId,
|
|
},
|
|
});
|
|
} else
|
|
setLink({
|
|
...link,
|
|
collection: {
|
|
// id: ,
|
|
name: "Unorganized",
|
|
ownerId: data?.user.id as number,
|
|
},
|
|
});
|
|
}
|
|
}, []);
|
|
|
|
const setTags = (e: any) => {
|
|
const tagNames = e.map((e: any) => {
|
|
return { name: e.label };
|
|
});
|
|
|
|
setLink({ ...link, tags: tagNames });
|
|
};
|
|
|
|
const setCollection = (e: any) => {
|
|
if (e?.__isNew__) e.value = null;
|
|
|
|
setLink({
|
|
...link,
|
|
collection: { id: e?.value, name: e?.label, ownerId: e?.ownerId },
|
|
});
|
|
};
|
|
|
|
const submit = async () => {
|
|
setSubmitLoader(true);
|
|
|
|
let response;
|
|
const load = toast.loading(
|
|
method === "UPDATE" ? "Applying..." : "Creating..."
|
|
);
|
|
|
|
if (method === "UPDATE") response = await updateLink(link);
|
|
else response = await addLink(link);
|
|
|
|
toast.dismiss(load);
|
|
|
|
if (response.ok) {
|
|
toast.success(`Link ${method === "UPDATE" ? "Saved!" : "Created!"}`);
|
|
toggleLinkModal();
|
|
} else toast.error(response.data as string);
|
|
|
|
setSubmitLoader(false);
|
|
|
|
return response;
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col gap-3 sm:w-[35rem] w-80">
|
|
{method === "UPDATE" ? (
|
|
<div
|
|
className="text-neutral break-all w-full flex gap-2"
|
|
title={link.url || ""}
|
|
>
|
|
<FontAwesomeIcon icon={faLink} className="w-6 h-6" />
|
|
<Link href={link.url || ""} target="_blank" className="w-full">
|
|
{link.url}
|
|
</Link>
|
|
</div>
|
|
) : null}
|
|
|
|
{method === "CREATE" ? (
|
|
<div className="grid grid-flow-row-dense sm:grid-cols-5 gap-3">
|
|
<div className="sm:col-span-3 col-span-5">
|
|
<p className="mb-2">Address (URL)</p>
|
|
<TextInput
|
|
value={link.url || ""}
|
|
onChange={(e) => setLink({ ...link, url: e.target.value })}
|
|
placeholder="e.g. http://example.com/"
|
|
className="bg-base-200"
|
|
/>
|
|
</div>
|
|
<div className="sm:col-span-2 col-span-5">
|
|
<p className="mb-2">Collection</p>
|
|
{link.collection.name ? (
|
|
<CollectionSelection
|
|
onChange={setCollection}
|
|
// defaultValue={{
|
|
// label: link.collection.name,
|
|
// value: link.collection.id,
|
|
// }}
|
|
defaultValue={
|
|
link.collection.id
|
|
? {
|
|
value: link.collection.id,
|
|
label: link.collection.name,
|
|
}
|
|
: {
|
|
value: null as unknown as number,
|
|
label: "Unorganized",
|
|
}
|
|
}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
) : undefined}
|
|
|
|
{optionsExpanded ? (
|
|
<div>
|
|
{/* <hr className="mb-3 border border-neutral-content" /> */}
|
|
<div className="grid sm:grid-cols-2 gap-3">
|
|
<div className={`${method === "UPDATE" ? "sm:col-span-2" : ""}`}>
|
|
<p className="mb-2">Name</p>
|
|
<TextInput
|
|
value={link.name}
|
|
onChange={(e) => setLink({ ...link, name: e.target.value })}
|
|
placeholder="e.g. Example Link"
|
|
className="bg-base-200"
|
|
/>
|
|
</div>
|
|
|
|
{method === "UPDATE" ? (
|
|
<div>
|
|
<p className="mb-2">Collection</p>
|
|
{link.collection.name ? (
|
|
<CollectionSelection
|
|
onChange={setCollection}
|
|
defaultValue={
|
|
link.collection.name && link.collection.id
|
|
? {
|
|
value: link.collection.id,
|
|
label: link.collection.name,
|
|
}
|
|
: {
|
|
value: null as unknown as number,
|
|
label: "Unorganized",
|
|
}
|
|
}
|
|
/>
|
|
) : undefined}
|
|
</div>
|
|
) : undefined}
|
|
|
|
<div>
|
|
<p className="mb-2">Tags</p>
|
|
<TagSelection
|
|
onChange={setTags}
|
|
defaultValue={link.tags.map((e) => {
|
|
return { label: e.name, value: e.id };
|
|
})}
|
|
/>
|
|
</div>
|
|
|
|
<div className="sm:col-span-2">
|
|
<p className="mb-2">Description</p>
|
|
<textarea
|
|
value={unescapeString(link.description) as string}
|
|
onChange={(e) =>
|
|
setLink({ ...link, description: e.target.value })
|
|
}
|
|
placeholder={
|
|
method === "CREATE"
|
|
? "Will be auto generated if nothing is provided."
|
|
: ""
|
|
}
|
|
className="resize-none w-full rounded-md p-2 border-neutral-content bg-base-200 focus:border-sky-300 dark:focus:border-sky-600 border-solid border outline-none duration-100"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
) : undefined}
|
|
|
|
<div className="flex justify-between items-stretch mt-2">
|
|
<div
|
|
onClick={() => setOptionsExpanded(!optionsExpanded)}
|
|
className={`${
|
|
method === "UPDATE" ? "hidden" : ""
|
|
} rounded-md cursor-pointer btn btn-ghost duration-100 flex items-center px-2 w-fit text-sm`}
|
|
>
|
|
<p>{optionsExpanded ? "Hide" : "More"} Options</p>
|
|
</div>
|
|
|
|
<SubmitButton
|
|
onClick={submit}
|
|
label={method === "CREATE" ? "Add" : "Save"}
|
|
icon={method === "CREATE" ? faPlus : faPenToSquare}
|
|
loading={submitLoader}
|
|
className={`${method === "CREATE" ? "" : "mx-auto"}`}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|