import { SetCollections, SetFiles } 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, getLocalFiles } from 'services/fileService'; import { Collection, getLocalCollections, getNonEmptyCollections, } from 'services/collectionService'; import { Bbox, parseHumanDate, searchLocation } from 'services/searchService'; import { getFilesWithCreationDay, getFilesInsideBbox, getFormattedDate, } from 'utils/search'; import constants from 'utils/strings/constants'; import LocationIcon from './LocationIcon'; import DateIcon from './DateIcon'; import SearchIcon from './SearchIcon'; const Wrapper = styled.div` background-color: #111; color: #fff; min-height: 64px; align-items: center; box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); margin-bottom: 10px; position: fixed; top: 0; width: 100%; display: flex; align-items: center; justify-content: center; z-index: 200; padding: 0 20%; `; enum SuggestionType { DATE, LOCATION, } interface Suggestion { type: SuggestionType; label: string; value: Bbox | Date; } interface Props { isOpen: boolean; setOpen: (value) => void; loadingBar: any; setFiles: SetFiles; setCollections: SetCollections; } export default function SearchBar(props: Props) { const [allFiles, setAllFiles] = useState([]); const [allCollections, setAllCollections] = useState([]); useEffect(() => { const main = async () => { setAllFiles(await getLocalFiles()); setAllCollections(await getLocalCollections()); }; main(); }, [props.isOpen]); const getAutoCompleteSuggestion = async (searchPhrase: string) => { let option = new Array(); 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.placeName, } as Suggestion) ) ); return option; }; const getOptions = debounce(getAutoCompleteSuggestion, 250); const filterFiles = (selectedOption: Suggestion) => { if (!selectedOption) { resetSearch(); return; } let resultFiles: File[] = []; switch (selectedOption.type) { case SuggestionType.DATE: const searchedDate = selectedOption.value as Date; const filesWithSameDate = getFilesWithCreationDay( allFiles, searchedDate ); resultFiles = filesWithSameDate; break; case SuggestionType.LOCATION: const bbox = selectedOption.value as Bbox; const filesTakenAtLocation = getFilesInsideBbox(allFiles, bbox); resultFiles = filesTakenAtLocation; } props.setOpen(true); props.setFiles(resultFiles); props.setCollections( getNonEmptyCollections(allCollections, resultFiles) ); }; const resetSearch = () => { props.setOpen(false); props.setFiles(allFiles); props.setCollections(allCollections); }; const getIconByType = (type: SuggestionType) => type === SuggestionType.DATE ? : ; const LabelWithIcon = (props: { type: SuggestionType; label: string }) => (
{getIconByType(props.type)} {props.label}
); const { Option, SingleValue, Control } = components; const SingleValueWithIcon = (props) => ( ); const OptionWithIcon = (props) => ( ); const ControlWithIcon = (props) => ( {props.children} ); const customStyles = { control: (provided, { isFocused }) => ({ ...provided, backgroundColor: '#282828', color: '#d1d1d1', borderColor: isFocused ? '#2dc262' : '#444', boxShadow: isFocused && '0 0 3px #2dc262', ':hover': { borderColor: '#2dc262', }, }), input: (provided) => ({ ...provided, color: '#d1d1d1', }), menu: (provided) => ({ ...provided, marginTop: '10px', backgroundColor: '#282828', }), option: (provided, { isFocused }) => ({ ...provided, backgroundColor: isFocused && '#343434', }), dropdownIndicator: (provided) => ({ ...provided, display: 'none', }), indicatorSeparator: (provided) => ({ ...provided, display: 'none', }), clearIndicator: (provided) => ({ ...provided, ':hover': { color: '#d2d2d2' }, }), singleValue: (provided, state) => ({ ...provided, backgroundColor: '#282828', color: '#d1d1d1', }), }; return ( <>
null} />
); }