Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | // src/hooks/queries/usePriceHistoryQuery.ts
import { useQuery } from '@tanstack/react-query';
import { fetchHistoricalPriceData } from '../../services/apiClient';
import { queryKeys } from '../../config/queryKeys';
import type { HistoricalPriceDataPoint } from '../../types';
/**
* Query hook for fetching historical price data for watched items.
*
* @param masterItemIds - Array of master item IDs to fetch history for
* @param enabled - Whether the query should run (default: true when IDs provided)
* @returns TanStack Query result with HistoricalPriceDataPoint array
*
* @example
* ```tsx
* const itemIds = watchedItems.map(item => item.master_grocery_item_id).filter(Boolean);
* const { data: priceHistory = [], isLoading, error } = usePriceHistoryQuery(itemIds);
* ```
*/
export const usePriceHistoryQuery = (masterItemIds: number[], enabled: boolean = true) => {
return useQuery({
queryKey: queryKeys.priceHistory(masterItemIds),
queryFn: async (): Promise<HistoricalPriceDataPoint[]> => {
if (masterItemIds.length === 0) {
return [];
}
const response = await fetchHistoricalPriceData(masterItemIds);
if (!response.ok) {
const error = await response.json().catch(() => ({
message: `Request failed with status ${response.status}`,
}));
throw new Error(error.message || 'Failed to fetch price history');
}
const json = await response.json();
// ADR-028: API returns { success: true, data: [...] }
// If success is false or data is not an array, return empty array to prevent .map() errors
if (!json.success || !Array.isArray(json.data)) {
return [];
}
return json.data;
},
enabled: enabled && masterItemIds.length > 0,
staleTime: 1000 * 60 * 10, // 10 minutes - historical data doesn't change frequently
});
};
|