2021-07-24 03:21:15 +00:00
|
|
|
import React, { useState, useRef, useContext } from "react";
|
2021-07-01 18:21:40 +00:00
|
|
|
import { Link, useHistory } from "react-router-dom";
|
2021-09-01 09:33:42 +00:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
import { faQrcode } from "@fortawesome/free-solid-svg-icons/faQrcode";
|
2021-07-01 18:21:40 +00:00
|
|
|
import useKeyboardShortcut from "use-keyboard-shortcut";
|
2021-07-13 21:12:49 +00:00
|
|
|
import PriceBox from "./PriceBox";
|
2021-09-01 20:40:42 +00:00
|
|
|
import CameraScanner from "./search/CameraScanner";
|
2021-07-24 03:21:15 +00:00
|
|
|
import { RuntimeContext } from "./useRuntime";
|
2021-07-01 18:21:40 +00:00
|
|
|
|
|
|
|
const Title: React.FC = () => {
|
2021-07-24 03:21:15 +00:00
|
|
|
const { provider } = useContext(RuntimeContext);
|
2021-07-01 18:21:40 +00:00
|
|
|
const [search, setSearch] = useState<string>();
|
|
|
|
const [canSubmit, setCanSubmit] = useState<boolean>(false);
|
|
|
|
const history = useHistory();
|
|
|
|
|
|
|
|
const handleChange: React.ChangeEventHandler<HTMLInputElement> = (e) => {
|
|
|
|
setCanSubmit(e.target.value.trim().length > 0);
|
|
|
|
setSearch(e.target.value.trim());
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleSubmit: React.FormEventHandler<HTMLFormElement> = (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
if (!canSubmit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
history.push(`/search?q=${search}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
const searchRef = useRef<HTMLInputElement>(null);
|
|
|
|
useKeyboardShortcut(["/"], () => {
|
|
|
|
searchRef.current?.focus();
|
|
|
|
});
|
|
|
|
|
2021-09-01 20:07:51 +00:00
|
|
|
const [isScanning, setScanning] = useState<boolean>(false);
|
2021-09-01 09:33:42 +00:00
|
|
|
|
2021-07-01 18:21:40 +00:00
|
|
|
return (
|
2021-09-01 20:07:51 +00:00
|
|
|
<>
|
2021-09-01 20:40:42 +00:00
|
|
|
{isScanning && <CameraScanner turnOffScan={() => setScanning(false)} />}
|
2021-09-01 20:07:51 +00:00
|
|
|
<div className="px-9 py-2 flex justify-between items-baseline">
|
|
|
|
<Link className="self-center" to="/">
|
|
|
|
<div className="text-2xl text-link-blue font-title font-bold flex items-center space-x-2">
|
|
|
|
<img
|
|
|
|
className="rounded-full"
|
|
|
|
src="/otter.jpg"
|
|
|
|
width={32}
|
|
|
|
height={32}
|
|
|
|
alt="An otter scanning"
|
|
|
|
title="An otter scanning"
|
|
|
|
/>
|
|
|
|
<span>Otterscan</span>
|
|
|
|
</div>
|
|
|
|
</Link>
|
|
|
|
<div className="flex items-baseline space-x-3">
|
|
|
|
{provider?.network.chainId === 1 && <PriceBox />}
|
|
|
|
<form
|
|
|
|
className="flex"
|
|
|
|
onSubmit={handleSubmit}
|
|
|
|
autoComplete="off"
|
|
|
|
spellCheck={false}
|
2021-07-13 21:12:49 +00:00
|
|
|
>
|
2021-09-01 20:07:51 +00:00
|
|
|
<input
|
|
|
|
className="w-full border-t border-b border-l rounded-l focus:outline-none px-2 py-1 text-sm"
|
|
|
|
type="text"
|
|
|
|
size={60}
|
|
|
|
placeholder='Type "/" to search by address / txn hash / block number / ENS name'
|
|
|
|
onChange={handleChange}
|
|
|
|
ref={searchRef}
|
|
|
|
/>
|
|
|
|
<button
|
2021-09-01 21:12:35 +00:00
|
|
|
className="border bg-skin-button-fill hover:bg-skin-button-hover-fill focus:outline-none px-2 py-1 text-sm text-skin-button"
|
2021-09-01 20:07:51 +00:00
|
|
|
type="button"
|
2021-09-01 20:40:42 +00:00
|
|
|
onClick={() => setScanning(true)}
|
|
|
|
title="Scan an ETH address using your camera"
|
2021-09-01 20:07:51 +00:00
|
|
|
>
|
|
|
|
<FontAwesomeIcon icon={faQrcode} />
|
|
|
|
</button>
|
|
|
|
<button
|
2021-09-01 21:12:35 +00:00
|
|
|
className="rounded-r border-t border-b border-r bg-skin-button-fill hover:bg-skin-button-hover-fill focus:outline-none px-2 py-1 text-sm text-skin-button"
|
2021-09-01 20:07:51 +00:00
|
|
|
type="submit"
|
|
|
|
>
|
|
|
|
Search
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2021-07-13 21:12:49 +00:00
|
|
|
</div>
|
2021-09-01 20:07:51 +00:00
|
|
|
</>
|
2021-07-01 18:21:40 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default React.memo(Title);
|