mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-14 23:25:25 +03:00
separate custom hook
This commit is contained in:
parent
59a2f2d696
commit
e106e44a9c
@ -2,10 +2,9 @@ import { useState, useRef, useEffect, useMemo, useCallback } from "react";
|
|||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { LuX, LuFilter, LuImage } from "react-icons/lu";
|
import { LuX, LuFilter, LuImage } from "react-icons/lu";
|
||||||
import { SearchFilter, SearchSource } from "@/types/search";
|
import { FilterType, SearchFilter, SearchSource } from "@/types/search";
|
||||||
import { DropdownMenuSeparator } from "../ui/dropdown-menu";
|
import { DropdownMenuSeparator } from "../ui/dropdown-menu";
|
||||||
|
import useSuggestions from "@/hooks/use-suggestions";
|
||||||
type FilterType = keyof SearchFilter;
|
|
||||||
|
|
||||||
const convertMMDDYYToTimestamp = (dateString: string): number => {
|
const convertMMDDYYToTimestamp = (dateString: string): number => {
|
||||||
const match = dateString.match(/^(\d{2})(\d{2})(\d{2})$/);
|
const match = dateString.match(/^(\d{2})(\d{2})(\d{2})$/);
|
||||||
@ -16,63 +15,6 @@ const convertMMDDYYToTimestamp = (dateString: string): number => {
|
|||||||
return date.getTime();
|
return date.getTime();
|
||||||
};
|
};
|
||||||
|
|
||||||
// Custom hook for managing suggestions
|
|
||||||
const useSuggestions = (
|
|
||||||
filters: SearchFilter,
|
|
||||||
allSuggestions: { [K in keyof SearchFilter]: string[] },
|
|
||||||
searchHistory: string[],
|
|
||||||
) => {
|
|
||||||
const [suggestions, setSuggestions] = useState<string[]>([]);
|
|
||||||
const [selectedSuggestionIndex, setSelectedSuggestionIndex] = useState(-1);
|
|
||||||
|
|
||||||
const updateSuggestions = useCallback(
|
|
||||||
(value: string, currentFilterType: FilterType | null) => {
|
|
||||||
if (currentFilterType && currentFilterType in allSuggestions) {
|
|
||||||
const filterValue = value.split(":").pop() || "";
|
|
||||||
const currentFilterValues = filters[currentFilterType] || [];
|
|
||||||
setSuggestions(
|
|
||||||
allSuggestions[currentFilterType]?.filter(
|
|
||||||
(item) =>
|
|
||||||
item.toLowerCase().startsWith(filterValue.toLowerCase()) &&
|
|
||||||
!(currentFilterValues as (string | number)[]).includes(item),
|
|
||||||
) ?? [],
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
const availableFilters = Object.keys(allSuggestions).filter(
|
|
||||||
(filter) => {
|
|
||||||
const filterKey = filter as FilterType;
|
|
||||||
const filterValues = filters[filterKey];
|
|
||||||
const suggestionValues = allSuggestions[filterKey];
|
|
||||||
|
|
||||||
if (!filterValues) return true;
|
|
||||||
if (
|
|
||||||
Array.isArray(filterValues) &&
|
|
||||||
Array.isArray(suggestionValues)
|
|
||||||
) {
|
|
||||||
return filterValues.length < suggestionValues.length;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
);
|
|
||||||
setSuggestions([
|
|
||||||
...searchHistory,
|
|
||||||
...availableFilters,
|
|
||||||
"before",
|
|
||||||
"after",
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[filters, allSuggestions, searchHistory],
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
suggestions,
|
|
||||||
selectedSuggestionIndex,
|
|
||||||
setSelectedSuggestionIndex,
|
|
||||||
updateSuggestions,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
type InputWithTagsProps = {
|
type InputWithTagsProps = {
|
||||||
filters: SearchFilter;
|
filters: SearchFilter;
|
||||||
setFilters: (filter: SearchFilter) => void;
|
setFilters: (filter: SearchFilter) => void;
|
||||||
|
|||||||
66
web/src/hooks/use-suggestions.ts
Normal file
66
web/src/hooks/use-suggestions.ts
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
import { FilterType, SearchFilter } from "@/types/search";
|
||||||
|
import { useCallback, useState } from "react";
|
||||||
|
|
||||||
|
// Custom hook for managing suggestions
|
||||||
|
export type UseSuggestionsType = (
|
||||||
|
filters: SearchFilter,
|
||||||
|
allSuggestions: { [K in keyof SearchFilter]: string[] },
|
||||||
|
searchHistory: string[],
|
||||||
|
) => ReturnType<typeof useSuggestions>;
|
||||||
|
|
||||||
|
// Define and export the useSuggestions hook
|
||||||
|
export default function useSuggestions(
|
||||||
|
filters: SearchFilter,
|
||||||
|
allSuggestions: { [K in keyof SearchFilter]: string[] },
|
||||||
|
searchHistory: string[],
|
||||||
|
) {
|
||||||
|
const [suggestions, setSuggestions] = useState<string[]>([]);
|
||||||
|
const [selectedSuggestionIndex, setSelectedSuggestionIndex] = useState(-1);
|
||||||
|
|
||||||
|
const updateSuggestions = useCallback(
|
||||||
|
(value: string, currentFilterType: FilterType | null) => {
|
||||||
|
if (currentFilterType && currentFilterType in allSuggestions) {
|
||||||
|
const filterValue = value.split(":").pop() || "";
|
||||||
|
const currentFilterValues = filters[currentFilterType] || [];
|
||||||
|
setSuggestions(
|
||||||
|
allSuggestions[currentFilterType]?.filter(
|
||||||
|
(item) =>
|
||||||
|
item.toLowerCase().startsWith(filterValue.toLowerCase()) &&
|
||||||
|
!(currentFilterValues as (string | number)[]).includes(item),
|
||||||
|
) ?? [],
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
const availableFilters = Object.keys(allSuggestions).filter(
|
||||||
|
(filter) => {
|
||||||
|
const filterKey = filter as FilterType;
|
||||||
|
const filterValues = filters[filterKey];
|
||||||
|
const suggestionValues = allSuggestions[filterKey];
|
||||||
|
|
||||||
|
if (!filterValues) return true;
|
||||||
|
if (
|
||||||
|
Array.isArray(filterValues) &&
|
||||||
|
Array.isArray(suggestionValues)
|
||||||
|
) {
|
||||||
|
return filterValues.length < suggestionValues.length;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
);
|
||||||
|
setSuggestions([
|
||||||
|
...searchHistory,
|
||||||
|
...availableFilters,
|
||||||
|
"before",
|
||||||
|
"after",
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[filters, allSuggestions, searchHistory],
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
suggestions,
|
||||||
|
selectedSuggestionIndex,
|
||||||
|
setSelectedSuggestionIndex,
|
||||||
|
updateSuggestions,
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -55,3 +55,4 @@ export type SearchQueryParams = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type SearchQuery = [string, SearchQueryParams] | null;
|
export type SearchQuery = [string, SearchQueryParams] | null;
|
||||||
|
export type FilterType = keyof SearchFilter;
|
||||||
Loading…
Reference in New Issue
Block a user