aboutsummaryrefslogtreecommitdiff
path: root/src/app/web-series/components/seriesSearchFormatter.jsx
blob: 1480d847fc03907b817f8596fd392cdb4a9cfb82 (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
import { Card, CardHeader, CardBody } from "@nextui-org/react";
import Link from "next/link";
import Image from "next/image";

import styles from "../../page.module.css";

const SeriesSearchFormatter = async (data) => {
	return (
		<section
			className={`mb-2 flex items-center overflow-auto pb-2 ${styles.ScrollBarAdjuster}`}
		>
			{data &&
				data.results.map((item, index) => {
					if (item.poster_path) {
						return (
							<Link
								key={index}
								href={`/web-series/${item.id}`}
								aria-label="anime redirection links"
								className="mx-1 flex flex-col items-center"
							>
								<Card
									className="overflow-hidden"
									isPressable
									isHoverable
									shadow="sm"
								>
									<CardBody>
										<Image
											alt="Searched Movie Poster"
											src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=https://image.tmdb.org/t/p/original${item.poster_path}`}
											width={190}
											height={120}
											className="h-64 rounded-md"
											priority
										/>
									</CardBody>
									<CardHeader>
										<h4
											className={`w-44 overflow-hidden text-ellipsis whitespace-nowrap text-center text-small uppercase antialiased`}
										>
											{item.name}
										</h4>
									</CardHeader>
								</Card>
							</Link>
						);
					}
				})}
		</section>
	);
};

export default SeriesSearchFormatter;