import { Search, SearchStats, SetCollections } from 'pages/gallery'; import React, { useEffect, useState, useRef } from 'react'; import styled from 'styled-components'; import AsyncSelect from 'react-select/async'; import { components } from 'react-select'; import debounce from 'debounce-promise'; import { File } from 'services/fileService'; import { Bbox, parseHumanDate, searchLocation } from 'services/searchService'; import { getFormattedDate, getDefaultSuggestions } from 'utils/search'; import constants from 'utils/strings/constants'; import LocationIcon from './LocationIcon'; import DateIcon from './DateIcon'; import SearchIcon from './SearchIcon'; import CrossIcon from './CrossIcon'; const Wrapper = styled.div<{ width: number }>` position: fixed; z-index: 1000; top: 0; left: ${(props) => `max(0px, 50% - min(360px,${props.width / 2}px))`}; width: 100%; max-width: 720px; display: flex; align-items: center; justify-content: center; padding: 0 5%; background-color: #111; color: #fff; min-height: 64px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); margin-bottom: 10px; `; const SearchButton = styled.div<{ disabled: boolean }>` top: 1px; z-index: 100; right: 80px; color: #fff; cursor: ${(props) => !props.disabled && 'pointer'}; min-height: 64px; position: fixed; display: flex; align-items: center; justify-content: center; `; const SearchStatsContainer = styled.div` display: flex; justify-content: center; align-items: center; color: #979797; margin-bottom: 8px; `; export enum SuggestionType { DATE, LOCATION, } export interface Suggestion { type: SuggestionType; label: string; value: Bbox | Date; } interface Props { isOpen: boolean; isFirstFetch: boolean; setOpen: (value) => void; loadingBar: any; setCollections: SetCollections; setSearch: (search: Search) => void; files: File[]; searchStats: SearchStats; } export default function SearchBar(props: Props) { const [windowWidth, setWindowWidth] = useState(window.innerWidth); const selectRef = useRef(null); useEffect(() => { if (props.isOpen) { setTimeout(() => { selectRef.current?.focus(); }, 250); } }, [props.isOpen]); useEffect(() => { window.addEventListener('resize', () => setWindowWidth(window.innerWidth) ); }); //========================== // Functionality //========================== const getAutoCompleteSuggestions = async (searchPhrase: string) => { let option = getDefaultSuggestions().filter((suggestion) => suggestion.label.toLowerCase().includes(searchPhrase.toLowerCase()) ); if (!searchPhrase?.length) { return option; } const searchedDate = parseHumanDate(searchPhrase); if (searchedDate != null) { option.push({ type: SuggestionType.DATE, value: searchedDate, label: getFormattedDate(searchedDate), }); } const searchResults = await searchLocation(searchPhrase); option.push( ...searchResults.map( (searchResult) => ({ type: SuggestionType.LOCATION, value: searchResult.bbox, label: searchResult.place, } as Suggestion) ) ); return option; }; const getOptions = debounce(getAutoCompleteSuggestions, 250); const filterFiles = (selectedOption: Suggestion) => { if (!selectedOption) { return; } // const startTime = Date.now(); props.setOpen(true); switch (selectedOption.type) { case SuggestionType.DATE: const searchedDate = selectedOption.value as Date; props.setSearch({ date: searchedDate, }); break; case SuggestionType.LOCATION: const bbox = selectedOption.value as Bbox; props.setSearch({ location: bbox, }); break; } }; const resetSearch = () => { if (props.isOpen) { selectRef.current.select.state.value = null; props.loadingBar.current?.continuousStart(); // props.setFiles(allFiles); props.setSearch({}); setTimeout(() => { props.loadingBar.current?.complete(); }, 10); props.setOpen(false); } }; //========================== // UI //========================== const getIconByType = (type: SuggestionType) => type === SuggestionType.DATE ? : ; const LabelWithIcon = (props: { type: SuggestionType; label: string }) => (
{getIconByType(props.type)} {props.label}
); const { Option, Control } = components; const OptionWithIcon = (props) => ( ); const ControlWithIcon = (props) => ( {props.getValue().length == 0 || props.menuIsOpen ? ( ) : props.getValue()[0].type == SuggestionType.DATE ? ( ) : ( )} {props.children} ); const customStyles = { control: (style, { isFocused }) => ({ ...style, backgroundColor: '#282828', color: '#d1d1d1', borderColor: isFocused ? '#2dc262' : '#444', boxShadow: isFocused && '0 0 3px #2dc262', ':hover': { borderColor: '#2dc262', cursor: 'text', '&>.icon': { color: '#2dc262' }, }, }), input: (style) => ({ ...style, color: '#d1d1d1', }), menu: (style) => ({ ...style, marginTop: '10px', backgroundColor: '#282828', }), option: (style, { isFocused }) => ({ ...style, backgroundColor: isFocused && '#343434', }), dropdownIndicator: (style) => ({ ...style, display: 'none', }), indicatorSeparator: (style) => ({ ...style, display: 'none', }), clearIndicator: (style) => ({ ...style, display: 'none', }), singleValue: (style, state) => ({ ...style, backgroundColor: '#282828', color: '#d1d1d1', display: state.selectProps.menuIsOpen ? 'none' : 'block', }), placeholder: (style) => ({ ...style, color: '#686868', wordSpacing: '2px', whiteSpace: 'nowrap', }), }; return ( <> {props.searchStats && ( {constants.SEARCH_STATS(props.searchStats)} )} {windowWidth > 1000 || props.isOpen ? (
null} />
{props.isOpen && (
)}
) : ( !props.isFirstFetch && props.setOpen(true)} > )} ); }