81 lines
3.7 KiB
TypeScript
81 lines
3.7 KiB
TypeScript
"use client";
|
|
|
|
import { atom, useRecoilValue } from "recoil";
|
|
import { settingsState } from "../state/settings";
|
|
import { useTranslations } from "next-intl";
|
|
import { useState } from "react";
|
|
import { normalizeURL } from "@/lib/normalizeURL";
|
|
export default function Search(props: { onFocus: () => void }) {
|
|
const settings: settings = useRecoilValue(settingsState);
|
|
const t = useTranslations("Search");
|
|
const [query, setQuery] = useState("");
|
|
|
|
let style = "default";
|
|
|
|
function handleKeydown(e: any) {
|
|
let URL = "";
|
|
let url_re =
|
|
/^https?:\/\/([\w-]+\.)+[\w-]+(\/[\w-./?%&=]*)?:?[0-9]{0,5}\/?[-a-zA-Z0-9_.~!*'();:@&=+$,/?#\[\]%]*$/;
|
|
let domain_re =
|
|
/^[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\.[a-zA-Z][-a-zA-Z]{0,62})+\.?:?[0-9]{0,5}\/?[-a-zA-Z0-9_.~!*'();:@&=+$,/?#\[\]%]*$/;
|
|
let ip_re =
|
|
/^((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}:?[0-9]{0,5}\/?[-a-zA-Z0-9_.~!*'();:@&=+$,/?#\[\]%]*$/;
|
|
if (url_re.test(query) || domain_re.test(query) || ip_re.test(query)) {
|
|
URL = normalizeURL(query);
|
|
} else {
|
|
URL = settings.searchEngines[settings.currentSearchEngine];
|
|
URL = URL.replace("%s", query);
|
|
}
|
|
if (e.key == "Enter") {
|
|
location.href=URL;
|
|
}
|
|
}
|
|
|
|
if (style === "default") {
|
|
return (
|
|
// 祖传样式,勿动
|
|
<div className="absolute w-full top-[8.5rem] lg:top-56 short:top-24 z-1 left-1/2 translate-x-[-50%] ">
|
|
<input
|
|
className="absolute z-1 w-11/12 sm:w-[700px] h-10 rounded-lg left-1/2 translate-x-[-50%]
|
|
text-center outline-none border-[1px] focus:border-2 duration-200 pr-2 shadow-md focus:shadow-none dark:shadow-zinc-800 dark:shadow-md bg-white dark:bg-[rgb(23,25,29)]
|
|
dark:border-neutral-500 dark:focus:border-neutral-300 placeholder:text-slate-500
|
|
dark:placeholder:text-slate-400 text-slate-900 dark:text-white"
|
|
id="searchBox"
|
|
type="text"
|
|
placeholder={t("placeholder")}
|
|
onFocus={props.onFocus}
|
|
onKeyDown={handleKeydown}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
autoComplete="off"
|
|
autoCorrect="off"
|
|
autoCapitalize="off"
|
|
spellCheck="false"
|
|
value={query}
|
|
/>
|
|
</div>
|
|
);
|
|
} else if (style == "image") {
|
|
return (
|
|
// 祖传样式,勿动
|
|
<div className="absolute w-full top-[8.5rem] lg:top-56 short:top-24 z-1 left-1/2 translate-x-[-50%] ">
|
|
<input
|
|
className={
|
|
`absolute z-1 w-2/3 sm:w-80 md:w-[400px] focus:w-11/12 focus:sm:w-[700px] hover:w-11/12
|
|
hover:sm:w-[700px] h-10 rounded-3xl left-1/2 translate-x-[-50%] text-center outline-none
|
|
border-solid border-0 duration-200 pr-2 shadow-md focus:shadow-none` +
|
|
(settings.bgBlur
|
|
? `bg-[rgba(255,255,255,0.5)] dark:bg-[rgba(24,24,24,0.75)] backdrop-blur-xl
|
|
placeholder:text-slate-500 dark:placeholder:text-slate-400 text-slate-900 dark:text-white`
|
|
: `bg-[rgba(235,235,235,0.9)] dark:bg-[rgba(20,20,20,0.9)] placeholder:text-slate-500
|
|
text-slate-800 dark:text-white`)
|
|
}
|
|
id="searchBox"
|
|
type="text"
|
|
placeholder={t("placeholder")}
|
|
onFocus={props.onFocus}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|