aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/bookmarks/components/Bookmarks.tsx
blob: 6a9ffe1bfcdc2fe0be0a0219bb578b5f6f920e4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { redirect } from "next/navigation";
import BookmarksGrid from "./BookmarksGrid";
import { authOptions } from "@/lib/auth";
import { getServerSession } from "next-auth";
import { getBookmarks } from "@/lib/services/bookmarks";
import { ZGetBookmarksRequest } from "@/lib/types/api/bookmarks";

export default async function Bookmarks({
  favourited,
  archived,
  title,
}: ZGetBookmarksRequest & { title: string }) {
  const session = await getServerSession(authOptions);
  if (!session) {
    redirect("/");
  }
  const bookmarks = await getBookmarks(session.user.id, {
    favourited,
    archived,
  });

  if (bookmarks.length == 0) {
    // TODO: This needs to be polished
    return (
      <>
        <div className="container pb-4 text-2xl">{title}</div>
        <div className="container">No bookmarks</div>
      </>
    );
  }

  return (
    <>
      <div className="container pb-4 text-2xl">{title}</div>
      <BookmarksGrid bookmarks={bookmarks} />
    </>
  );
}