289 lines
9.9 KiB
TypeScript
289 lines
9.9 KiB
TypeScript
import useLinkStore from "@/store/links";
|
|
import useCollectionStore from "@/store/collections";
|
|
import useTagStore from "@/store/tags";
|
|
import MainLayout from "@/layouts/MainLayout";
|
|
import LinkCard from "@/components/LinkCard";
|
|
import { useEffect, useState } from "react";
|
|
import useLinks from "@/hooks/useLinks";
|
|
import Link from "next/link";
|
|
import useWindowDimensions from "@/hooks/useWindowDimensions";
|
|
import React from "react";
|
|
import useModalStore from "@/store/modals";
|
|
import { toast } from "react-hot-toast";
|
|
import { MigrationFormat, MigrationRequest } from "@/types/global";
|
|
import DashboardItem from "@/components/DashboardItem";
|
|
import NewLinkModal from "@/components/ModalContent/NewLinkModal";
|
|
import PageHeader from "@/components/PageHeader";
|
|
|
|
export default function Dashboard() {
|
|
const { collections } = useCollectionStore();
|
|
const { links } = useLinkStore();
|
|
const { tags } = useTagStore();
|
|
|
|
const { setModal } = useModalStore();
|
|
|
|
const [numberOfLinks, setNumberOfLinks] = useState(0);
|
|
|
|
const [showLinks, setShowLinks] = useState(3);
|
|
|
|
useLinks({ pinnedOnly: true, sort: 0 });
|
|
|
|
useEffect(() => {
|
|
setNumberOfLinks(
|
|
collections.reduce(
|
|
(accumulator, collection) =>
|
|
accumulator + (collection._count as any).links,
|
|
0,
|
|
),
|
|
);
|
|
}, [collections]);
|
|
|
|
const handleNumberOfLinksToShow = () => {
|
|
if (window.innerWidth > 1535) {
|
|
setShowLinks(6);
|
|
} else if (window.innerWidth > 1295) {
|
|
setShowLinks(4);
|
|
} else setShowLinks(3);
|
|
};
|
|
|
|
const { width } = useWindowDimensions();
|
|
|
|
useEffect(() => {
|
|
handleNumberOfLinksToShow();
|
|
}, [width]);
|
|
|
|
const importBookmarks = async (e: any, format: MigrationFormat) => {
|
|
const file: File = e.target.files[0];
|
|
|
|
if (file) {
|
|
var reader = new FileReader();
|
|
reader.readAsText(file, "UTF-8");
|
|
reader.onload = async function (e) {
|
|
const load = toast.loading("Importing...");
|
|
|
|
const request: string = e.target?.result as string;
|
|
|
|
const body: MigrationRequest = {
|
|
format,
|
|
data: request,
|
|
};
|
|
|
|
const response = await fetch("/api/v1/migration", {
|
|
method: "POST",
|
|
body: JSON.stringify(body),
|
|
});
|
|
|
|
const data = await response.json();
|
|
|
|
toast.dismiss(load);
|
|
|
|
toast.success("Imported the Bookmarks! Reloading the page...");
|
|
|
|
setTimeout(() => {
|
|
location.reload();
|
|
}, 2000);
|
|
};
|
|
reader.onerror = function (e) {
|
|
console.log("Error:", e);
|
|
};
|
|
}
|
|
};
|
|
|
|
const [newLinkModal, setNewLinkModal] = useState(false);
|
|
|
|
return (
|
|
<MainLayout>
|
|
<div style={{ flex: "1 1 auto" }} className="p-5 flex flex-col gap-5">
|
|
<PageHeader icon={'bi-house '} title={'Dashboard'} description={"A brief overview of your data"} />
|
|
|
|
<div>
|
|
<div className="flex justify-evenly flex-col md:flex-row md:items-center gap-2 md:w-full h-full rounded-2xl p-8 border border-neutral-content bg-base-200">
|
|
<DashboardItem
|
|
name={numberOfLinks === 1 ? "Link" : "Links"}
|
|
value={numberOfLinks}
|
|
icon={"bi-link-45deg"}
|
|
/>
|
|
|
|
<div className="divider md:divider-horizontal"></div>
|
|
|
|
<DashboardItem
|
|
name={collections.length === 1 ? "Collection" : "Collections"}
|
|
value={collections.length}
|
|
icon={"bi-folder"}
|
|
/>
|
|
|
|
<div className="divider md:divider-horizontal"></div>
|
|
|
|
<DashboardItem
|
|
name={tags.length === 1 ? "Tag" : "Tags"}
|
|
value={tags.length}
|
|
icon={"bi-hash"}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex justify-between items-center">
|
|
<div className="flex gap-2 items-center">
|
|
<i className="bi-clock-history text-primary text-2xl drop-shadow"></i>
|
|
<p className="text-2xl">Recent</p>
|
|
</div>
|
|
<Link
|
|
href="/links"
|
|
className="flex items-center text-sm text-black/75 dark:text-white/75 gap-2 cursor-pointer"
|
|
>
|
|
View All
|
|
<i className="bi-chevron-right text-sm "></i>
|
|
</Link>
|
|
</div>
|
|
|
|
<div
|
|
style={{ flex: "0 1 auto" }}
|
|
className="flex flex-col 2xl:flex-row items-start 2xl:gap-2"
|
|
>
|
|
{false && links[0] ? (
|
|
<div className="w-full">
|
|
<div
|
|
className={`grid 2xl:grid-cols-3 xl:grid-cols-2 grid-cols-1 gap-5 w-full`}
|
|
>
|
|
{links.slice(0, showLinks).map((e, i) => (
|
|
<LinkCard key={i} link={e} count={i} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div
|
|
style={{ flex: "1 1 auto" }}
|
|
className="sky-shadow flex flex-col justify-center h-full border border-solid border-neutral-content w-full mx-auto p-10 rounded-2xl bg-base-200"
|
|
>
|
|
<p className="text-center text-2xl">
|
|
View Your Recently Added Links Here!
|
|
</p>
|
|
<p className="text-center mx-auto max-w-96 w-fit text-neutral text-sm mt-2">
|
|
This section will view your latest added Links across every
|
|
Collections you have access to.
|
|
</p>
|
|
|
|
<div className="text-center w-full mt-4 flex flex-wrap gap-4 justify-center">
|
|
<div
|
|
onClick={() => {
|
|
setNewLinkModal(true);
|
|
}}
|
|
className="inline-flex items-center gap-2 text-sm btn btn-accent dark:border-accent text-white"
|
|
>
|
|
<i className="bi-plus text-xl duration-100"></i>
|
|
<span className="group-hover:opacity-0 text-right duration-100">
|
|
Add New Link
|
|
</span>
|
|
</div>
|
|
|
|
<div className="dropdown dropdown-bottom">
|
|
<div
|
|
tabIndex={0}
|
|
role="button"
|
|
className="inline-flex items-center gap-2 text-sm btn btn-outline btn-neutral"
|
|
id="import-dropdown"
|
|
>
|
|
<i className="bi-cloud-upload text-xl duration-100"></i>
|
|
<p>Import From</p>
|
|
</div>
|
|
<ul className="shadow menu dropdown-content z-[1] bg-base-200 border border-neutral-content rounded-box mt-1 w-60">
|
|
<li>
|
|
<label
|
|
tabIndex={0}
|
|
role="button"
|
|
htmlFor="import-linkwarden-file"
|
|
title="JSON File"
|
|
>
|
|
From Linkwarden
|
|
<input
|
|
type="file"
|
|
name="photo"
|
|
id="import-linkwarden-file"
|
|
accept=".json"
|
|
className="hidden"
|
|
onChange={(e) =>
|
|
importBookmarks(e, MigrationFormat.linkwarden)
|
|
}
|
|
/>
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label
|
|
tabIndex={0}
|
|
role="button"
|
|
htmlFor="import-html-file"
|
|
title="HTML File"
|
|
>
|
|
From Bookmarks HTML file
|
|
<input
|
|
type="file"
|
|
name="photo"
|
|
id="import-html-file"
|
|
accept=".html"
|
|
className="hidden"
|
|
onChange={(e) =>
|
|
importBookmarks(e, MigrationFormat.htmlFile)
|
|
}
|
|
/>
|
|
</label>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex justify-between items-center">
|
|
<div className="flex gap-2 items-center">
|
|
<i className="bi-pin-angle text-primary text-2xl drop-shadow"></i>
|
|
<p className="text-2xl">Pinned</p>
|
|
</div>
|
|
<Link
|
|
href="/links/pinned"
|
|
className="flex items-center text-sm text-black/75 dark:text-white/75 gap-2 cursor-pointer"
|
|
>
|
|
View All
|
|
<i className="bi-chevron-right text-sm "></i>
|
|
</Link>
|
|
</div>
|
|
|
|
<div
|
|
style={{ flex: "1 1 auto" }}
|
|
className="flex flex-col 2xl:flex-row items-start 2xl:gap-2"
|
|
>
|
|
{links.some((e) => e.pinnedBy && e.pinnedBy[0]) ? (
|
|
<div className="w-full">
|
|
<div
|
|
className={`grid 2xl:grid-cols-3 xl:grid-cols-2 grid-cols-1 gap-5 w-full`}
|
|
>
|
|
{links
|
|
.filter((e) => e.pinnedBy && e.pinnedBy[0])
|
|
.map((e, i) => <LinkCard key={i} link={e} count={i} />)
|
|
.slice(0, showLinks)}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div
|
|
style={{ flex: "1 1 auto" }}
|
|
className="sky-shadow flex flex-col justify-center h-full border border-solid border-neutral-content w-full mx-auto p-10 rounded-2xl bg-base-200"
|
|
>
|
|
<p className="text-center text-2xl">
|
|
Pin Your Favorite Links Here!
|
|
</p>
|
|
<p className="text-center mx-auto max-w-96 w-fit text-neutral text-sm mt-2">
|
|
You can Pin your favorite Links by clicking on the three dots on
|
|
each Link and clicking{" "}
|
|
<span className="font-semibold">Pin to Dashboard</span>.
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
{newLinkModal ? (
|
|
<NewLinkModal onClose={() => setNewLinkModal(false)} />
|
|
) : undefined}
|
|
</MainLayout>
|
|
);
|
|
}
|