blob: ce5ca34547c76ac0131b1e8e5652b7a95686c1f0 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
import { Card, CardHeader, CardBody, Link } from "@nextui-org/react";
import Image from "next/image";
import styles from "../page.module.css";
import { top_airing, recent, popular } from "./data-fetch/request";
import SearchBar from "./components/search";
import { preFetchAnimeInfo } from "./components/cacher";
const AnimeHomepage = async () => {
const popular_data = await popular();
const recent_data = await recent();
const airing_data = await top_airing();
const dataToBeLoaded = [popular_data, recent_data, airing_data];
for (let item of dataToBeLoaded) {
preFetchAnimeInfo(item);
}
const header = (title) => (
<>
<p className={`antialiased font-bold text-sky-400 text-2xl my-1`}>
{title}
</p>
</>
);
const format = (data) => (
<>
{data &&
data.results.map((item, index) => (
<Link
key={index}
href={`/anime/${item.id}`}
aria-label="anime redirection links"
className="flex flex-col items-center mx-1 "
>
<Card className="overflow-visible " isPressable>
<CardBody>
<Image
alt="Anime Poster"
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
width={270}
height={160}
className="h-60 rounded-md overflow-hidden"
priority
/>
</CardBody>
<CardHeader>
<h4
className={`antialiased text-small text-center uppercase w-44 overflow-hidden whitespace-nowrap text-ellipsis `}
>
{item.title}
</h4>
</CardHeader>
</Card>
</Link>
))}
</>
);
return (
<section className="pt-12">
<div className="mx-2">
<SearchBar />
</div>
<div className="mx-2">
{header("Popular Animes")}
<div
className={`flex overflow-auto overflow-y-hidden pb-3 ${styles.ScrollBarAdjuster}`}
>
{format(popular_data)}
</div>
</div>
<div className="mx-2">
{header("Recent Animes")}
<div
className={`flex overflow-auto overflow-y-hidden pb-3 ${styles.ScrollBarAdjuster}`}
>
{format(recent_data)}
</div>
</div>
<div className="mx-2">
{header("Top Airing Animes")}
<div
className={`flex overflow-x-auto overflow-y-hidden pb-3 ${styles.ScrollBarAdjuster}`}
>
{format(airing_data)}
</div>
</div>
<br />
<br />
</section>
);
};
export default AnimeHomepage;
|