Files
AnythingYouWant/src/components/SearchInput.js
nospeedlimitindonesia 459c703fb8 working on search page
2024-07-27 19:51:34 +00:00

116 lines
3.2 KiB
JavaScript

import React, { useState, useEffect, useRef } from "react";
import { useNavigate, useSearchParams } from "react-router-dom";
import styled from "styled-components";
// Styled components
const SearchBox = styled.div`
display: flex;
align-items: center;
padding: 5px;
`;
const SearchContainer = styled.div`
position: relative;
display: flex;
align-items: center;
flex-grow: 1;
margin: 0px 10px;
`;
const Searchinput = styled.input`
flex-grow: 1;
border: none;
border-radius: 25px;
padding: 12px 40px;
font-size: 16px;
outline: none;
background-color: white;
border: 1px solid #ccc;
transition:
background-color 0.3s ease,
border-color 0.3s ease;
&:focus {
background-color: lightgray;
}
`;
const SearchIcon = styled.svg`
position: absolute;
left: 10px;
fill: #888;
width: 20px;
height: 20px;
pointer-events: none;
`;
export default function SearchInput({ shopId, autofocus, onSearchChange }) {
const [songName, setSongName] = useState("");
const [debouncedSongName, setDebouncedSongName] = useState("");
const navigate = useNavigate();
const [searchParams, setSearchParams] = useSearchParams();
const inputRef = useRef(null);
const [siteLoaded, setSiteLoaded] = useState(false);
// Initialize the input field with the query parameter from the URL
useEffect(() => {
setTimeout(function () {
setSiteLoaded(true);
}, 5000);
}, []);
useEffect(() => {
const query = searchParams.get("query") || "";
if (autofocus) setSongName(query);
setSiteLoaded(true);
}, [searchParams]);
useEffect(() => {
if (siteLoaded) {
//Start the timer
if (autofocus)
navigate(`/${shopId}/search?query=${encodeURIComponent(songName)}`);
else if (songName != "")
navigate(`/${shopId}/search?query=${encodeURIComponent(songName)}`);
if (autofocus) {
if (songName == "") {
navigate(`/${shopId}`);
}
}
if (onSearchChange) onSearchChange(songName);
}
}, [songName]);
const handleChange = (event) => {
setSongName(event.target.value);
};
// Navigate only when the debouncedSongName changes
useEffect(() => {}, [debouncedSongName, navigate]);
// Handle input change
// Focus input when component mounts
useEffect(() => {
if (autofocus) if (inputRef.current) inputRef.current.focus();
}, []);
return (
<SearchBox>
<SearchContainer>
<Searchinput
ref={inputRef}
type="text"
placeholder="Search..."
value={songName}
onChange={handleChange}
/>
<SearchIcon xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M20.8333 18.3333H19.5167L19.05 17.8833C20.6833 15.9833 21.6667 13.5167 21.6667 10.8333C21.6667 4.85 16.8167 0 10.8333 0C4.85 0 0 4.85 0 10.8333C0 16.8167 4.85 21.6667 10.8333 21.6667C13.5167 21.6667 15.9833 20.6833 17.8833 19.05L18.3333 19.5167V20.8333L26.6667 29.15L29.15 26.6667L20.8333 18.3333ZM10.8333 18.3333C6.68333 18.3333 3.33333 14.9833 3.33333 10.8333C3.33333 6.68333 6.68333 3.33333 10.8333 3.33333C14.9833 3.33333 18.3333 6.68333 18.3333 10.8333C18.3333 14.9833 14.9833 18.3333 10.8333 18.3333Z" />
</SearchIcon>
</SearchContainer>
</SearchBox>
);
}