added dashboard + sorting functionality done partially
This commit is contained in:
parent
d5c9e7aaf3
commit
9010627997
|
@ -5,10 +5,12 @@
|
||||||
|
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { faChevronRight } from "@fortawesome/free-solid-svg-icons";
|
import { faChevronRight } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { Collection } from "@prisma/client";
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
import { ExtendedCollection } from "@/types/global";
|
||||||
|
import useLinkStore from "@/store/links";
|
||||||
|
|
||||||
export default function ({ collection }: { collection: Collection }) {
|
export default function ({ collection }: { collection: ExtendedCollection }) {
|
||||||
|
const { links } = useLinkStore();
|
||||||
const formattedDate = new Date(collection.createdAt).toLocaleString("en-US", {
|
const formattedDate = new Date(collection.createdAt).toLocaleString("en-US", {
|
||||||
year: "numeric",
|
year: "numeric",
|
||||||
month: "short",
|
month: "short",
|
||||||
|
@ -17,20 +19,37 @@ export default function ({ collection }: { collection: Collection }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Link href={`/collections/${collection.id}`}>
|
<Link href={`/collections/${collection.id}`}>
|
||||||
<div className="p-5 bg-gray-100 h-40 w-60 rounded-md border-sky-100 border-solid border flex flex-col justify-between cursor-pointer hover:bg-gray-50 duration-100">
|
<div className="p-5 bg-gray-100 min-h-[10rem] w-72 rounded-md border-sky-100 border-solid border flex flex-col gap-2 justify-between cursor-pointer hover:bg-gray-50 duration-100">
|
||||||
<div>
|
<div>
|
||||||
<div className="flex justify-between text-sky-900 items-center">
|
<div className="flex justify-between text-sky-900 items-center">
|
||||||
<p className="text-lg w-max">{collection.name}</p>
|
<p className="text-lg w-max font-bold">{collection.name}</p>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
icon={faChevronRight}
|
icon={faChevronRight}
|
||||||
className="w-3 h-3 text-gray-500"
|
className="w-3 h-3 text-gray-500"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-sm font-bold text-gray-500">
|
<p className="text-sky-400">{collection.description}</p>
|
||||||
{collection.description}
|
</div>
|
||||||
|
<div className="text-sky-400 flex gap-1 flex-wrap">
|
||||||
|
<p>Members:</p>
|
||||||
|
{collection.members.map((e, i) => {
|
||||||
|
return (
|
||||||
|
<p
|
||||||
|
className="text-sky-500 font-semibold"
|
||||||
|
title={e.user.email}
|
||||||
|
key={i}
|
||||||
|
>
|
||||||
|
{e.user.name}
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2 items-baseline">
|
||||||
|
<p className="text-sky-300 font-bold text-sm">{formattedDate}</p>
|
||||||
|
<p className="text-sky-500 font-bold">
|
||||||
|
{links.filter((e) => e.collectionId === collection.id).length} Links
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-sm text-sky-300 font-bold">{formattedDate}</p>
|
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
|
|
|
@ -0,0 +1,59 @@
|
||||||
|
// 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 { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { faChevronRight } from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { ExtendedCollection } from "@/types/global";
|
||||||
|
import useLinkStore from "@/store/links";
|
||||||
|
|
||||||
|
export default function ({ collection }: { collection: ExtendedCollection }) {
|
||||||
|
const { links } = useLinkStore();
|
||||||
|
const formattedDate = new Date(collection.createdAt).toLocaleString("en-US", {
|
||||||
|
year: "numeric",
|
||||||
|
month: "short",
|
||||||
|
day: "numeric",
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Link href={`/collections/${collection.id}`}>
|
||||||
|
<div className="p-5 bg-white rounded-md flex flex-col gap-2 justify-between cursor-pointer hover:bg-gray-50 duration-100">
|
||||||
|
<div>
|
||||||
|
<div className="flex justify-between text-sky-900 items-center">
|
||||||
|
<div className="flex items-baseline gap-1">
|
||||||
|
<p className="text-lg w-max font-bold">{collection.name}</p>
|
||||||
|
<p className="text-sky-400">{collection.description}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faChevronRight}
|
||||||
|
className="w-3 h-3 text-gray-500"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-sky-400 flex gap-1 flex-wrap">
|
||||||
|
<p>Members:</p>
|
||||||
|
{collection.members.map((e, i) => {
|
||||||
|
return (
|
||||||
|
<p
|
||||||
|
className="text-sky-500 font-semibold"
|
||||||
|
title={e.user.email}
|
||||||
|
key={i}
|
||||||
|
>
|
||||||
|
{e.user.name}
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2 items-baseline">
|
||||||
|
<p className="text-sky-300 font-bold text-sm">{formattedDate}</p>
|
||||||
|
<p className="text-sky-500 font-bold">
|
||||||
|
{links.filter((e) => e.collectionId === collection.id).length} Links
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
}
|
|
@ -0,0 +1,131 @@
|
||||||
|
// 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 { ExtendedLink } from "@/types/global";
|
||||||
|
import {
|
||||||
|
faFolder,
|
||||||
|
faArrowUpRightFromSquare,
|
||||||
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import { faFileImage, faFilePdf } from "@fortawesome/free-regular-svg-icons";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { useState } from "react";
|
||||||
|
import Image from "next/image";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
export default function ({
|
||||||
|
link,
|
||||||
|
count,
|
||||||
|
}: {
|
||||||
|
link: ExtendedLink;
|
||||||
|
count: number;
|
||||||
|
}) {
|
||||||
|
const [editModal, setEditModal] = useState(false);
|
||||||
|
|
||||||
|
const url = new URL(link.url);
|
||||||
|
const formattedDate = new Date(link.createdAt).toLocaleString("en-US", {
|
||||||
|
year: "numeric",
|
||||||
|
month: "short",
|
||||||
|
day: "numeric",
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="bg-white p-5 rounded-md flex items-start relative gap-5 sm:gap-14 group/item">
|
||||||
|
<Image
|
||||||
|
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${url.origin}&size=32`}
|
||||||
|
width={32}
|
||||||
|
height={32}
|
||||||
|
alt=""
|
||||||
|
className="select-none mt-3 z-10 rounded-md"
|
||||||
|
draggable="false"
|
||||||
|
onError={(e) => {
|
||||||
|
const target = e.target as HTMLElement;
|
||||||
|
target.style.opacity = "0";
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<Image
|
||||||
|
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${url.origin}&size=32`}
|
||||||
|
width={80}
|
||||||
|
height={80}
|
||||||
|
alt=""
|
||||||
|
className="blur-sm absolute left-2 opacity-40 select-none hidden sm:block"
|
||||||
|
draggable="false"
|
||||||
|
onError={(e) => {
|
||||||
|
const target = e.target as HTMLElement;
|
||||||
|
target.style.opacity = "0";
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<div className="flex justify-between gap-5 w-full z-0">
|
||||||
|
<div>
|
||||||
|
<div className="flex items-baseline gap-1">
|
||||||
|
<p className="text-sm text-sky-300 font-bold">{count + 1}.</p>
|
||||||
|
<p className="text-lg text-sky-600">{link.name}</p>
|
||||||
|
</div>
|
||||||
|
<p className="text-sky-400 text-sm font-medium">{link.title}</p>
|
||||||
|
<div className="flex gap-3 items-center flex-wrap my-3">
|
||||||
|
<Link href={`/collections/${link.collection.id}`}>
|
||||||
|
<div className="flex items-center gap-1 cursor-pointer hover:opacity-60 duration-100">
|
||||||
|
<FontAwesomeIcon icon={faFolder} className="w-4 text-sky-300" />
|
||||||
|
<p className="text-sky-900">{link.collection.name}</p>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<div className="flex gap-1 items-center flex-wrap">
|
||||||
|
{link.tags.map((e, i) => (
|
||||||
|
<Link key={i} href={`/tags/${e.id}`}>
|
||||||
|
<p className="px-2 py-1 bg-sky-200 text-sky-700 text-xs rounded-3xl cursor-pointer hover:bg-sky-100 duration-100">
|
||||||
|
# {e.name}
|
||||||
|
</p>
|
||||||
|
</Link>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2 items-center flex-wrap">
|
||||||
|
<p className="text-gray-500">{formattedDate}</p>
|
||||||
|
<a href={link.url} target="_blank" className="group/url">
|
||||||
|
<div className="text-gray-500 font-bold flex items-center gap-1">
|
||||||
|
<p>{url.host}</p>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faArrowUpRightFromSquare}
|
||||||
|
className="w-3 opacity-0 group-hover/url:opacity-100 duration-75"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex flex-col justify-between items-end relative">
|
||||||
|
<a
|
||||||
|
href={`/api/archives/${link.collectionId}/${encodeURIComponent(
|
||||||
|
link.screenshotPath
|
||||||
|
)}`}
|
||||||
|
target="_blank"
|
||||||
|
title="Screenshot"
|
||||||
|
>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faFileImage}
|
||||||
|
className="w-8 h-8 text-sky-600 cursor-pointer hover:text-sky-500 duration-100"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href={`/api/archives/${link.collectionId}/${encodeURIComponent(
|
||||||
|
link.pdfPath
|
||||||
|
)}`}
|
||||||
|
target="_blank"
|
||||||
|
title="PDF"
|
||||||
|
>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faFilePdf}
|
||||||
|
className="w-8 h-8 text-sky-600 cursor-pointer hover:text-sky-500 duration-100"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faArrowUpRightFromSquare}
|
||||||
|
className="w-8 h-8 text-sky-600 cursor-pointer hover:text-sky-500 duration-100"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
|
@ -144,6 +144,7 @@ export default function ({
|
||||||
)}`}
|
)}`}
|
||||||
onMouseEnter={() => setArchiveLabel("Screenshot")}
|
onMouseEnter={() => setArchiveLabel("Screenshot")}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
title="Screenshot"
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
icon={faFileImage}
|
icon={faFileImage}
|
||||||
|
@ -156,6 +157,7 @@ export default function ({
|
||||||
)}`}
|
)}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
onMouseEnter={() => setArchiveLabel("PDF")}
|
onMouseEnter={() => setArchiveLabel("PDF")}
|
||||||
|
title="PDF"
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
icon={faFilePdf}
|
icon={faFilePdf}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { faMagnifyingGlass } from "@fortawesome/free-solid-svg-icons";
|
import { faMagnifyingGlass } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import ClickAwayHandler from "./ClickAwayHandler";
|
import ClickAwayHandler from "./ClickAwayHandler";
|
||||||
import useSearchSettingsStore from "@/store/search";
|
import useSearchSettingsStore from "@/store/search";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
|
@ -15,6 +15,10 @@ export default function Search() {
|
||||||
const { searchSettings, toggleCheckbox, setSearchQuery } =
|
const { searchSettings, toggleCheckbox, setSearchQuery } =
|
||||||
useSearchSettingsStore();
|
useSearchSettingsStore();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (router.pathname !== "/search") setSearchQuery("");
|
||||||
|
}, [router]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ClickAwayHandler onClickOutside={() => setSearchBox(false)}>
|
<ClickAwayHandler onClickOutside={() => setSearchBox(false)}>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -10,6 +10,7 @@ import {
|
||||||
faBox,
|
faBox,
|
||||||
faHashtag,
|
faHashtag,
|
||||||
faBookmark,
|
faBookmark,
|
||||||
|
faChartSimple,
|
||||||
} from "@fortawesome/free-solid-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
import SidebarItem from "./SidebarItem";
|
import SidebarItem from "./SidebarItem";
|
||||||
import useTagStore from "@/store/tags";
|
import useTagStore from "@/store/tags";
|
||||||
|
@ -35,6 +36,30 @@ export default function () {
|
||||||
Linkwarden
|
Linkwarden
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<Link href="/dashboard">
|
||||||
|
<div
|
||||||
|
className={`${
|
||||||
|
active === "/dashboard"
|
||||||
|
? "bg-sky-500"
|
||||||
|
: "hover:bg-gray-50 hover:outline bg-gray-100"
|
||||||
|
} outline-sky-100 outline-1 duration-100 rounded-md my-1 p-2 cursor-pointer flex items-center gap-2`}
|
||||||
|
>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faChartSimple}
|
||||||
|
className={`w-4 ${
|
||||||
|
active === "/dashboard" ? "text-white" : "text-sky-300"
|
||||||
|
}`}
|
||||||
|
/>
|
||||||
|
<p
|
||||||
|
className={`${
|
||||||
|
active === "/dashboard" ? "text-white" : "text-sky-900"
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
Dashboard
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
<Link href="/links">
|
<Link href="/links">
|
||||||
<div
|
<div
|
||||||
className={`${
|
className={`${
|
||||||
|
|
|
@ -22,7 +22,7 @@ import {
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import Dashboard from "@/layouts/Dashboard";
|
import MainLayout from "@/layouts/MainLayout";
|
||||||
|
|
||||||
export default function () {
|
export default function () {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -62,7 +62,7 @@ export default function () {
|
||||||
}, [links, router, collections]);
|
}, [links, router, collections]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dashboard>
|
<MainLayout>
|
||||||
<div className="p-5 flex flex-col gap-5 w-full">
|
<div className="p-5 flex flex-col gap-5 w-full">
|
||||||
<div className="flex gap-3 items-center">
|
<div className="flex gap-3 items-center">
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
|
@ -146,6 +146,6 @@ export default function () {
|
||||||
return <LinkList key={i} link={e} count={i} />;
|
return <LinkList key={i} link={e} count={i} />;
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
</Dashboard>
|
</MainLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,75 +7,162 @@ import useCollectionStore from "@/store/collections";
|
||||||
import {
|
import {
|
||||||
faAdd,
|
faAdd,
|
||||||
faBox,
|
faBox,
|
||||||
|
faCheck,
|
||||||
faEllipsis,
|
faEllipsis,
|
||||||
faPlus,
|
faPlus,
|
||||||
|
faSort,
|
||||||
} from "@fortawesome/free-solid-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import CollectionCard from "@/components/CollectionCard";
|
import CollectionCard from "@/components/CollectionCard";
|
||||||
import Dropdown from "@/components/Dropdown";
|
import Dropdown from "@/components/Dropdown";
|
||||||
import { useState } from "react";
|
import { ChangeEvent, useState } from "react";
|
||||||
import Modal from "@/components/Modal";
|
import Modal from "@/components/Modal";
|
||||||
import AddCollection from "@/components/Modal/AddCollection";
|
import AddCollection from "@/components/Modal/AddCollection";
|
||||||
import Dashboard from "@/layouts/Dashboard";
|
import MainLayout from "@/layouts/MainLayout";
|
||||||
|
import ClickAwayHandler from "@/components/ClickAwayHandler";
|
||||||
|
|
||||||
export default function () {
|
export default function () {
|
||||||
const { collections } = useCollectionStore();
|
const { collections } = useCollectionStore();
|
||||||
const [expandDropdown, setExpandDropdown] = useState(false);
|
const [expandDropdown, setExpandDropdown] = useState(false);
|
||||||
|
const [sortDropdown, setSortDropdown] = useState(false);
|
||||||
|
|
||||||
const [linkModal, setLinkModal] = useState(false);
|
const [collectionModal, setCollectionModal] = useState(false);
|
||||||
|
|
||||||
const toggleCollectionModal = () => {
|
const toggleCollectionModal = () => {
|
||||||
setLinkModal(!linkModal);
|
setCollectionModal(!collectionModal);
|
||||||
|
};
|
||||||
|
|
||||||
|
const [sortBy, setSortBy] = useState("");
|
||||||
|
|
||||||
|
const handleSortChange = (event: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
setSortBy(event.target.value);
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
// ml-80
|
// ml-80
|
||||||
<Dashboard>
|
<MainLayout>
|
||||||
<div className="p-5">
|
<div className="p-5">
|
||||||
<div className="flex gap-3 items-center mb-5">
|
<div className="flex gap-3 items-center justify-between mb-5">
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-3 items-center">
|
||||||
<FontAwesomeIcon icon={faBox} className="w-5 h-5 text-sky-300" />
|
<div className="flex gap-2 items-center">
|
||||||
<p className="text-lg text-sky-900">All Collections</p>
|
<FontAwesomeIcon icon={faBox} className="w-5 h-5 text-sky-300" />
|
||||||
|
<p className="text-lg text-sky-900">All Collections</p>
|
||||||
|
</div>
|
||||||
|
<div className="relative">
|
||||||
|
<div
|
||||||
|
onClick={() => setExpandDropdown(!expandDropdown)}
|
||||||
|
id="edit-dropdown"
|
||||||
|
className="inline-flex rounded-md cursor-pointer hover:bg-white hover:border-sky-500 border-sky-100 border duration-100 p-1"
|
||||||
|
>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faEllipsis}
|
||||||
|
id="edit-dropdown"
|
||||||
|
className="w-5 h-5 text-gray-500"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{expandDropdown ? (
|
||||||
|
<Dropdown
|
||||||
|
items={[
|
||||||
|
{
|
||||||
|
name: "New",
|
||||||
|
icon: <FontAwesomeIcon icon={faAdd} />,
|
||||||
|
onClick: () => {
|
||||||
|
toggleCollectionModal();
|
||||||
|
setExpandDropdown(false);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
onClickOutside={(e: Event) => {
|
||||||
|
const target = e.target as HTMLInputElement;
|
||||||
|
if (target.id !== "edit-dropdown") setExpandDropdown(false);
|
||||||
|
}}
|
||||||
|
className="absolute top-8 left-0 w-36"
|
||||||
|
/>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="relative">
|
<div className="relative">
|
||||||
<div
|
<div
|
||||||
onClick={() => setExpandDropdown(!expandDropdown)}
|
onClick={() => setSortDropdown(!sortDropdown)}
|
||||||
id="edit-dropdown"
|
id="sort-dropdown"
|
||||||
className="inline-flex rounded-md cursor-pointer hover:bg-white hover:border-sky-500 border-sky-100 border duration-100 p-1"
|
className="inline-flex rounded-md cursor-pointer hover:bg-white hover:border-sky-500 border-sky-100 border duration-100 p-1"
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
icon={faEllipsis}
|
icon={faSort}
|
||||||
id="edit-dropdown"
|
id="sort-dropdown"
|
||||||
className="w-5 h-5 text-gray-500"
|
className="w-5 h-5 text-gray-500"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{expandDropdown ? (
|
|
||||||
<Dropdown
|
{sortDropdown ? (
|
||||||
items={[
|
<ClickAwayHandler
|
||||||
{
|
|
||||||
name: "New",
|
|
||||||
icon: <FontAwesomeIcon icon={faAdd} />,
|
|
||||||
onClick: () => {
|
|
||||||
toggleCollectionModal();
|
|
||||||
setExpandDropdown(false);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
onClickOutside={(e: Event) => {
|
onClickOutside={(e: Event) => {
|
||||||
const target = e.target as HTMLInputElement;
|
const target = e.target as HTMLInputElement;
|
||||||
if (target.id !== "edit-dropdown") setExpandDropdown(false);
|
if (target.id !== "sort-dropdown") setSortDropdown(false);
|
||||||
}}
|
}}
|
||||||
className="absolute top-8 left-0 w-36"
|
className="absolute top-8 right-0 shadow-md bg-gray-50 rounded-md p-2 z-10 border border-sky-100 w-36"
|
||||||
/>
|
>
|
||||||
|
<p className="mb-2 text-sky-900 text-sm text-center">Sort by</p>
|
||||||
|
<div className="flex flex-col gap-2">
|
||||||
|
<label className="cursor-pointer flex items-center gap-2">
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
name="Sort"
|
||||||
|
value="Name"
|
||||||
|
className="peer sr-only"
|
||||||
|
checked={sortBy === "Name"}
|
||||||
|
onChange={handleSortChange}
|
||||||
|
/>
|
||||||
|
<span className="text-sky-900 peer-checked:bg-sky-500 hover:bg-sky-200 duration-75 peer-checked:text-white rounded p-1 select-none">
|
||||||
|
Name
|
||||||
|
</span>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faCheck}
|
||||||
|
className="w-5 h-5 text-sky-500 peer-checked:block hidden"
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
<label className="cursor-pointer flex items-center gap-2">
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
name="Sort"
|
||||||
|
value="Description"
|
||||||
|
className="peer sr-only"
|
||||||
|
checked={sortBy === "Description"}
|
||||||
|
onChange={handleSortChange}
|
||||||
|
/>
|
||||||
|
<span className="text-sky-900 peer-checked:bg-sky-500 hover:bg-sky-200 duration-75 peer-checked:text-white rounded p-1 select-none">
|
||||||
|
Description
|
||||||
|
</span>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faCheck}
|
||||||
|
className="w-5 h-5 text-sky-500 peer-checked:block hidden"
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
<label className="cursor-pointer flex items-center gap-2">
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
name="Sort"
|
||||||
|
value="Date"
|
||||||
|
className="peer sr-only"
|
||||||
|
checked={sortBy === "Date"}
|
||||||
|
onChange={handleSortChange}
|
||||||
|
/>
|
||||||
|
<span className="text-sky-900 peer-checked:bg-sky-500 hover:bg-sky-200 duration-75 peer-checked:text-white rounded p-1 select-none">
|
||||||
|
Date
|
||||||
|
</span>
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faCheck}
|
||||||
|
className="w-5 h-5 text-sky-500 peer-checked:block hidden"
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</ClickAwayHandler>
|
||||||
) : null}
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{linkModal ? (
|
|
||||||
<Modal toggleModal={toggleCollectionModal}>
|
|
||||||
<AddCollection toggleCollectionModal={toggleCollectionModal} />
|
|
||||||
</Modal>
|
|
||||||
) : null}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-wrap gap-5">
|
<div className="flex flex-wrap gap-5">
|
||||||
{collections.map((e, i) => {
|
{collections.map((e, i) => {
|
||||||
return <CollectionCard key={i} collection={e} />;
|
return <CollectionCard key={i} collection={e} />;
|
||||||
|
@ -90,6 +177,12 @@ export default function () {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Dashboard>
|
|
||||||
|
{collectionModal ? (
|
||||||
|
<Modal toggleModal={toggleCollectionModal}>
|
||||||
|
<AddCollection toggleCollectionModal={toggleCollectionModal} />
|
||||||
|
</Modal>
|
||||||
|
) : null}
|
||||||
|
</MainLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,117 @@
|
||||||
|
// 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 useCollectionStore from "@/store/collections";
|
||||||
|
import { faArrowRight, faChartSimple } from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import MainLayout from "@/layouts/MainLayout";
|
||||||
|
import useLinkStore from "@/store/links";
|
||||||
|
import useTagStore from "@/store/tags";
|
||||||
|
import LinkItem from "@/components/Dashboard/LinkItem";
|
||||||
|
import Link from "next/link";
|
||||||
|
import CollectionItem from "@/components/Dashboard/CollectionItem";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
|
||||||
|
export default function () {
|
||||||
|
const { collections } = useCollectionStore();
|
||||||
|
const { links } = useLinkStore();
|
||||||
|
const { tags } = useTagStore();
|
||||||
|
|
||||||
|
const [sortedCollections, setSortedCollections] = useState([]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const collectionsWithLinkCount = collections.map((collection) => {
|
||||||
|
const linkCount = links.filter(
|
||||||
|
(link) => link.collectionId === collection.id
|
||||||
|
).length;
|
||||||
|
return { ...collection, linkCount };
|
||||||
|
});
|
||||||
|
|
||||||
|
setSortedCollections(
|
||||||
|
collectionsWithLinkCount.sort((a, b) => b.linkCount - a.linkCount) as any
|
||||||
|
);
|
||||||
|
}, [collections]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
// ml-80
|
||||||
|
<MainLayout>
|
||||||
|
<div className="p-5">
|
||||||
|
<div className="flex gap-3 items-center mb-5">
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faChartSimple}
|
||||||
|
className="w-5 h-5 text-sky-300"
|
||||||
|
/>
|
||||||
|
<p className="text-lg text-sky-900">Dashboard</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex flex-col md:flex-row md:items-center justify-evenly gap-2 mb-10">
|
||||||
|
<div className="flex items-baseline gap-2">
|
||||||
|
<p className="text-sky-500 font-bold text-6xl">{links.length}</p>
|
||||||
|
<p className="text-sky-900 text-xl">Links</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-baseline gap-2">
|
||||||
|
<p className="text-sky-500 font-bold text-6xl">
|
||||||
|
{collections.length}
|
||||||
|
</p>
|
||||||
|
<p className="text-sky-900 text-xl">Collections</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-baseline gap-2">
|
||||||
|
<p className="text-sky-500 font-bold text-6xl">{tags.length}</p>
|
||||||
|
<p className="text-sky-900 text-xl">Tags</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex flex-col md:flex-row items-start justify-evenly gap-5">
|
||||||
|
<div className="flex flex-col gap-2 p-2 bg-sky-50 rounded-md w-full">
|
||||||
|
<div className="flex justify-between gap-2 items-baseline">
|
||||||
|
<p className="text-sky-600 text-xl mb-2">Recently added Links</p>
|
||||||
|
<Link href="/links">
|
||||||
|
<div className="text-sky-600 flex items-center gap-1">
|
||||||
|
View All
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faArrowRight}
|
||||||
|
className="w-4 h-4 text-sky-300"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
{links
|
||||||
|
.sort(
|
||||||
|
(a, b) =>
|
||||||
|
new Date(b.createdAt).getTime() -
|
||||||
|
new Date(a.createdAt).getTime()
|
||||||
|
)
|
||||||
|
.slice(0, 5)
|
||||||
|
.map((e, i) => (
|
||||||
|
<LinkItem key={i} link={e} count={i} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex flex-col gap-2 p-2 bg-sky-50 rounded-md w-full">
|
||||||
|
<div className="flex justify-between gap-2 items-baseline">
|
||||||
|
<p className="text-sky-600 text-xl mb-2">Top Collections</p>
|
||||||
|
<Link href="/collections">
|
||||||
|
<div className="text-sky-600 flex items-center gap-1">
|
||||||
|
View All
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={faArrowRight}
|
||||||
|
className="w-4 h-4 text-sky-300"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
{sortedCollections.map((e, i) => (
|
||||||
|
<CollectionItem key={i} collection={e} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</MainLayout>
|
||||||
|
);
|
||||||
|
}
|
|
@ -10,6 +10,6 @@ export default function Home() {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
router.push("/collections");
|
router.push("/MainLayout");
|
||||||
}, []);
|
}, []);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// 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 LinkList from "@/components/LinkList";
|
import LinkList from "@/components/LinkList";
|
||||||
import Dashboard from "@/layouts/Dashboard";
|
import MainLayout from "@/layouts/MainLayout";
|
||||||
import useLinkStore from "@/store/links";
|
import useLinkStore from "@/store/links";
|
||||||
import { faBookmark } from "@fortawesome/free-solid-svg-icons";
|
import { faBookmark } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
@ -13,7 +13,7 @@ export default function Links() {
|
||||||
const { links } = useLinkStore();
|
const { links } = useLinkStore();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dashboard>
|
<MainLayout>
|
||||||
<div className="p-5 flex flex-col gap-5 w-full">
|
<div className="p-5 flex flex-col gap-5 w-full">
|
||||||
<div className="flex gap-3 items-center">
|
<div className="flex gap-3 items-center">
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
|
@ -28,6 +28,6 @@ export default function Links() {
|
||||||
return <LinkList key={i} link={e} count={i} />;
|
return <LinkList key={i} link={e} count={i} />;
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
</Dashboard>
|
</MainLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// 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 LinkList from "@/components/LinkList";
|
import LinkList from "@/components/LinkList";
|
||||||
import Dashboard from "@/layouts/Dashboard";
|
import MainLayout from "@/layouts/MainLayout";
|
||||||
import useLinkStore from "@/store/links";
|
import useLinkStore from "@/store/links";
|
||||||
import useSearchSettingsStore from "@/store/search";
|
import useSearchSettingsStore from "@/store/search";
|
||||||
import { ExtendedLink } from "@/types/global";
|
import { ExtendedLink } from "@/types/global";
|
||||||
|
@ -40,7 +40,7 @@ export default function Links() {
|
||||||
}, [searchSettings, links]);
|
}, [searchSettings, links]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dashboard>
|
<MainLayout>
|
||||||
<div className="p-5 flex flex-col gap-5 w-full">
|
<div className="p-5 flex flex-col gap-5 w-full">
|
||||||
<div className="flex gap-3 items-center">
|
<div className="flex gap-3 items-center">
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
|
@ -48,12 +48,19 @@ export default function Links() {
|
||||||
<p className="text-lg text-sky-900">Search Results</p>
|
<p className="text-lg text-sky-900">Search Results</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{filteredLinks[0]
|
{filteredLinks[0] ? (
|
||||||
? filteredLinks.map((e, i) => {
|
filteredLinks.map((e, i) => {
|
||||||
return <LinkList key={i} link={e} count={i} />;
|
return <LinkList key={i} link={e} count={i} />;
|
||||||
})
|
})
|
||||||
: "No results..."}
|
) : (
|
||||||
|
<p className="text-sky-900">
|
||||||
|
Nothing found.{" "}
|
||||||
|
<span className="text-sky-500 font-bold text-xl" title="Shruggie">
|
||||||
|
¯\_(ツ)_/¯
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</Dashboard>
|
</MainLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// 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.
|
// 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/>.
|
// 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 Dashboard from "@/layouts/Dashboard";
|
import MainLayout from "@/layouts/MainLayout";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
|
|
||||||
export default function () {
|
export default function () {
|
||||||
|
@ -12,8 +12,8 @@ export default function () {
|
||||||
const tagId = Number(router.query.id);
|
const tagId = Number(router.query.id);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dashboard>
|
<MainLayout>
|
||||||
<div>{"HI"}</div>
|
<div>{"HI"}</div>
|
||||||
</Dashboard>
|
</MainLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Ŝarĝante…
Reference in New Issue