blob: 66c491a1887416a6cc49b38ecd7bf8e0dd64316d (
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
|
"use client";
import { FaSearch } from "react-icons/fa";
import { useState } from "react";
import Link from "next/link";
import styles from "../styles/search.module.css";
import SearchResults from "./search_results";
const SearcBar = () => {
const [title, setTitle] = useState("");
const [searchResults, setSearchResults] = useState(null);
const [loading, setLoading] = useState(false);
const handleSearchInput = async (title) => {
setSearchResults(null);
setLoading(true);
setSearchResults(await SearchResults(title));
setLoading(false);
};
return (
<main>
<section className={styles.SearchBarContainer}>
<div className={styles.SearchInputContainer}>
<FaSearch color="white" />
<input
placeholder="Enter anime title"
name="Anime Title"
type="text"
onChange={(event) => {
if (event.target.value.trim() != "") {
setTitle(event.target.value);
}
}}
autoComplete="off"
onKeyDown={async (event) => {
if (
event.code === "Enter" ||
event.key === "Enter" ||
event.code === 13
) {
await handleSearchInput(title);
}
}}
></input>
</div>
<Link shallow href={"/anime/continueWatching"}>
<button className={styles.animeHistoryButton}>
History
</button>
</Link>
</section>
{loading && (
<p className={styles.SearchLoading}>
Please wait while we crunch up all the data.....
</p>
)}
{searchResults}
</main>
);
};
export default SearcBar;
|