fix(dashboard): combobox initial item cache (#12522)

This commit is contained in:
Frane Polić
2025-05-28 09:32:01 +02:00
committed by GitHub
parent 9b3218885c
commit 341a8bb7ee
3 changed files with 74 additions and 11 deletions
@@ -28,6 +28,7 @@ export const useComboboxData = <
getOptions,
defaultValue,
defaultValueKey,
selectedValue,
pageSize = 10,
enabled = true,
}: {
@@ -36,6 +37,7 @@ export const useComboboxData = <
getOptions: (data: TResponse) => { label: string; value: string }[]
defaultValueKey?: keyof TParams
defaultValue?: string | string[]
selectedValue?: string
pageSize?: number
enabled?: boolean
}) => {
@@ -43,7 +45,7 @@ export const useComboboxData = <
const queryInitialDataBy = defaultValueKey || "id"
const { data: initialData } = useQuery({
queryKey: queryKey,
queryKey: [...queryKey, defaultValue].filter(Boolean) as QueryKey,
queryFn: async () => {
return queryFn({
[queryInitialDataBy]: defaultValue,
@@ -53,8 +55,21 @@ export const useComboboxData = <
enabled: !!defaultValue && enabled,
})
// always load selected value in case current data dosn't contain the value
const { data: selectedData } = useQuery({
queryKey: [...queryKey, selectedValue].filter(Boolean) as QueryKey,
queryFn: async () => {
return queryFn({
id: selectedValue,
limit: 1,
} as TParams)
},
enabled: !!selectedValue && enabled,
})
const { data, ...rest } = useInfiniteQuery({
queryKey: [...queryKey, query],
// prevent infinite query response shape beeing stored under regualr list reponse QKs
queryKey: [...queryKey, "_cbx_", query].filter(Boolean) as QueryKey,
queryFn: async ({ pageParam = 0 }) => {
return await queryFn({
q: query,
@@ -73,7 +88,7 @@ export const useComboboxData = <
const options = data?.pages.flatMap((page) => getOptions(page)) ?? []
const defaultOptions = initialData ? getOptions(initialData) : []
const selectedOptions = selectedData ? getOptions(selectedData) : []
/**
* If there are no options and the query is empty, then the combobox should be disabled,
* as there is no data to search for.
@@ -90,6 +105,14 @@ export const useComboboxData = <
})
}
if (selectedValue && selectedOptions.length) {
selectedOptions.forEach((option) => {
if (!options.find((o) => o.value === option.value)) {
options.unshift(option)
}
})
}
return {
options,
searchValue,