mirror of
https://github.com/Xevion/icons.git
synced 2025-12-06 05:15:26 -06:00
100 lines
3.9 KiB
TypeScript
100 lines
3.9 KiB
TypeScript
import {type NextPage} from "next";
|
|
import Head from "next/head";
|
|
// @ts-ignore
|
|
import iconList from "@utils/iconList";
|
|
import {useEffect, useMemo, useState} from "react";
|
|
import {useDebounce} from "usehooks-ts";
|
|
import {AiOutlineLoading3Quarters} from "react-icons/ai";
|
|
import IconCatalog from "@components/render/IconCatalog";
|
|
import NoSSR from 'react-no-ssr';
|
|
|
|
const icons = iconList as { id: string, setId: string }[];
|
|
|
|
const Home: NextPage = () => {
|
|
const [query, setQuery] = useState("");
|
|
const [showLoading, setShowLoading] = useState(false);
|
|
const [timing, setTiming] = useState<number>(0);
|
|
const debouncedQuery = useDebounce(query, 300);
|
|
|
|
useEffect(() => {
|
|
setShowLoading(query.length != 0);
|
|
}, [query]);
|
|
|
|
|
|
const filtered = useMemo(() => {
|
|
const start = new Date();
|
|
const results = icons.filter(({id}) => id.toLowerCase().indexOf(query) !== -1);
|
|
const end = new Date();
|
|
|
|
// const results = fuse.search(query, {limit: maximumResults});
|
|
setShowLoading(false);
|
|
setTiming(end.getTime() - start.getTime());
|
|
return results;
|
|
}, [debouncedQuery]);
|
|
|
|
const catalog = useMemo(() => {
|
|
return <IconCatalog icons={debouncedQuery.length === 0 ? [] : filtered.map(i => i).slice(0, 100)}/>;
|
|
}, [filtered]);
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Icons</title>
|
|
<meta name="description" content="Generated by create-t3-app"/>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
</Head>
|
|
<main className="flex flex-col items-center m-auto p-6 max-w-[100ch]">
|
|
<div className="flex max-w-[60ch] px-1 py-2 m-4">
|
|
<input
|
|
className="grow bg-transparent ring-0 outline-none text-xl"
|
|
placeholder="Search for an icon..."
|
|
onChange={({target: {value}}) => setQuery(value)}
|
|
value={query}
|
|
/>
|
|
<NoSSR>
|
|
<span className="shrink text-xl text-zinc-500">
|
|
{showLoading ? <AiOutlineLoading3Quarters className="animate-spin h-5 w-5"/>
|
|
: (query.length == 0
|
|
? icons.length
|
|
: filtered.length)}
|
|
</span>
|
|
{
|
|
timing !== 0
|
|
? <span className="ml-2 shrink text-lg text-zinc-400">{timing}ms</span>
|
|
: null
|
|
}
|
|
</NoSSR>
|
|
</div>
|
|
<div>
|
|
{catalog}
|
|
</div>
|
|
{/*<ul role="list" className="grid gap-4 p-0 link-card-grid"
|
|
style={{gridTemplateColumns: "repeat(auto-fit, minmax(24ch, 1fr))"}}>
|
|
<Card
|
|
href="https://docs.astro.build/"
|
|
title="Documentation"
|
|
body="Learn how Astro works and explore the official API docs."
|
|
/>
|
|
<Card
|
|
href="https://astro.build/integrations/"
|
|
title="Integrations"
|
|
body="Supercharge your project with new frameworks and libraries."
|
|
/>
|
|
<Card
|
|
href="https://astro.build/themes/"
|
|
title="Themes"
|
|
body="Explore a galaxy of community-built starter themes."
|
|
/>
|
|
<Card
|
|
href="https://astro.build/chat/"
|
|
title="Community"
|
|
body="Come say hi to our amazing Discord community. ❤️"
|
|
/>
|
|
</ul>*/}
|
|
</main>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Home;
|