2022-01-24 05:59:36 +00:00
|
|
|
import React, { useEffect, useState, useRef } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import type mapboxgl from "mapbox-gl";
|
2022-01-25 05:52:52 +00:00
|
|
|
import MiniSearch, { SearchResult } from "minisearch";
|
2022-01-25 05:31:25 +00:00
|
|
|
import useSWRImmutable from "swr/immutable";
|
2022-01-24 05:59:36 +00:00
|
|
|
|
|
|
|
import styles from "../styles/SearchBar.module.css";
|
2022-01-25 05:31:25 +00:00
|
|
|
import { join } from "path/posix";
|
2022-01-30 21:55:50 +00:00
|
|
|
import { countReset } from "console";
|
2022-01-24 05:59:36 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
clearSelectedCell: () => void;
|
|
|
|
map: React.MutableRefObject<mapboxgl.Map>;
|
2022-01-30 21:55:50 +00:00
|
|
|
counts: Record<number, [number, number, number]> | null;
|
2022-01-24 05:59:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
interface Mod {
|
2022-01-25 05:31:25 +00:00
|
|
|
name: string;
|
|
|
|
id: number;
|
2022-01-24 05:59:36 +00:00
|
|
|
}
|
|
|
|
|
2022-01-25 05:31:25 +00:00
|
|
|
const jsonFetcher = async (url: string): Promise<Mod | null> => {
|
|
|
|
const res = await fetch(url);
|
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
if (res.status === 404) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const error = new Error("An error occurred while fetching the data.");
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
return res.json();
|
|
|
|
};
|
2022-01-24 05:59:36 +00:00
|
|
|
|
2022-01-30 21:55:50 +00:00
|
|
|
const SearchBar: React.FC<Props> = ({ clearSelectedCell, counts, map }) => {
|
2022-01-24 05:59:36 +00:00
|
|
|
const router = useRouter();
|
2022-01-25 05:31:25 +00:00
|
|
|
|
2022-01-25 05:52:52 +00:00
|
|
|
const searchEngine = useRef<MiniSearch<Mod> | null>(
|
|
|
|
null
|
|
|
|
) as React.MutableRefObject<MiniSearch<Mod>>;
|
2022-01-25 05:31:25 +00:00
|
|
|
|
|
|
|
const { data, error } = useSWRImmutable(
|
|
|
|
`https://mods.modmapper.com/mod_search_index.json`,
|
|
|
|
jsonFetcher
|
|
|
|
);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2022-01-25 05:52:52 +00:00
|
|
|
if (data && !searchEngine.current) {
|
|
|
|
searchEngine.current = new MiniSearch({
|
|
|
|
fields: ["name"],
|
|
|
|
storeFields: ["name", "id"],
|
|
|
|
searchOptions: {
|
|
|
|
fields: ["name"],
|
|
|
|
fuzzy: 0.2,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
searchEngine.current.addAll(data as unknown as Mod[]);
|
2022-01-25 05:31:25 +00:00
|
|
|
}
|
|
|
|
}, [data]);
|
2022-01-24 05:59:36 +00:00
|
|
|
|
|
|
|
const searchInput = useRef<HTMLInputElement | null>(null);
|
|
|
|
const [search, setSearch] = useState<string>("");
|
|
|
|
const [searchFocused, setSearchFocused] = useState<boolean>(false);
|
|
|
|
const [clickingResult, setClickingResult] = useState<boolean>(false);
|
|
|
|
const [results, setResults] = useState<SearchResult[]>([]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (searchInput.current) {
|
|
|
|
if (
|
|
|
|
searchFocused &&
|
|
|
|
global.document.activeElement !== searchInput.current
|
|
|
|
) {
|
|
|
|
searchInput.current.focus();
|
|
|
|
} else if (
|
|
|
|
!searchFocused &&
|
|
|
|
global.document.activeElement === searchInput.current
|
|
|
|
) {
|
|
|
|
searchInput.current.blur();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, [searchFocused]);
|
|
|
|
|
|
|
|
const onChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
setSearch(e.target.value);
|
2022-01-25 05:52:52 +00:00
|
|
|
if (searchEngine.current) {
|
|
|
|
const results: SearchResult[] = searchEngine.current.search(
|
2022-01-25 05:31:25 +00:00
|
|
|
e.target.value
|
|
|
|
);
|
|
|
|
setResults(results);
|
|
|
|
}
|
2022-01-24 05:59:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const onChooseResult =
|
|
|
|
(item: Mod) =>
|
|
|
|
(e: React.MouseEvent<HTMLElement> | React.TouchEvent<HTMLElement>) => {
|
2022-01-25 05:31:25 +00:00
|
|
|
router.push({ query: { mod: item.id } });
|
2022-01-24 05:59:36 +00:00
|
|
|
setSearch("");
|
|
|
|
setResults([]);
|
|
|
|
setClickingResult(false);
|
|
|
|
setSearchFocused(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={`${styles["search-bar"]} ${
|
|
|
|
searchFocused ? styles["search-bar-focused"] : ""
|
|
|
|
}`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
placeholder="Search mods or cells…"
|
|
|
|
onChange={onChange}
|
|
|
|
onFocus={() => setSearchFocused(true)}
|
|
|
|
onBlur={() => {
|
|
|
|
if (!clickingResult) {
|
|
|
|
setSearch("");
|
|
|
|
setResults([]);
|
|
|
|
setSearchFocused(false);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
value={search}
|
|
|
|
ref={searchInput}
|
2022-01-25 05:31:25 +00:00
|
|
|
disabled={!data}
|
2022-01-24 05:59:36 +00:00
|
|
|
/>
|
|
|
|
{results.length > 0 && (
|
|
|
|
<ul className={styles["search-results"]}>
|
2022-01-30 21:55:50 +00:00
|
|
|
{results
|
|
|
|
.sort((resultA, resultB) => {
|
|
|
|
if (counts) {
|
|
|
|
const countA = counts[resultA.id];
|
|
|
|
const countB = counts[resultB.id];
|
|
|
|
if (countA && countB) return countB[2] - countA[2];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
})
|
|
|
|
.map((result) => (
|
|
|
|
<li
|
|
|
|
key={result.id}
|
|
|
|
onClick={onChooseResult({ id: result.id, name: result.name })}
|
|
|
|
onTouchStart={() => setClickingResult(true)}
|
|
|
|
onMouseDown={() => setClickingResult(true)}
|
|
|
|
>
|
|
|
|
{result.name}
|
|
|
|
</li>
|
|
|
|
))}
|
2022-01-24 05:59:36 +00:00
|
|
|
</ul>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SearchBar;
|