blob: 4c9d00c3e41e6ea0c728795002127f13bcdd59f5 (
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
|
"use client";
import styles from "../styles/search.module.css";
import { useState } from "react";
import { FaSearch } from "react-icons/fa";
import FetchSearchTitle from "./searchQuery";
import Image from "next/image";
import Link from "next/link";
export default function DramaSearch() {
const [title, setTitle] = useState("");
const [infoTitle, setInfoTitle] = useState(null);
async function getSearchResults(title) {
const data = await FetchSearchTitle(title);
setInfoTitle(data);
}
return (
<div className={styles.SearchContainer}>
<div className={styles.Search}>
<FaSearch color="white" size={16} />
<input
placeholder="Search for drama"
onChange={(event) => setTitle(event.target.value)}
onKeyDown={async (e) => {
if ((e.key === "Enter" || e.code === 13) && title) {
await getSearchResults(e.target.value);
}
}}
></input>
</div>
<div className={styles.SearchResults}>
{infoTitle &&
infoTitle.results.map((item, index) => (
<Link
href={`/kdrama/${encodeURIComponent(item.id)}`}
style={{ textDecoration: "none" }}
key={index}
>
<div className={styles.SearchEntry}>
<p>{item.title}</p>
<Image
src={item.image}
width={110}
height={180}
alt="Drama Poster"
/>
</div>
</Link>
))}
</div>
</div>
);
}
|