forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseRecaps.ts
More file actions
288 lines (253 loc) · 8.4 KB
/
Copy pathuseRecaps.ts
File metadata and controls
288 lines (253 loc) · 8.4 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
'use client';
import { useState, useEffect, useCallback, useRef, useMemo } from 'react';
import type { DailySummary, GroupedDailySummaries } from '@/types/recap';
import {
getDailySummaries,
getDailySummary,
deleteDailySummary,
generateTestDailySummary,
} from '@/lib/api';
import { getCache, setCache, updateCache, CACHE_TTL } from '@/lib/cache';
export interface UseRecapsOptions {
limit?: number;
}
export interface UseRecapsReturn {
recaps: DailySummary[];
groupedRecaps: GroupedDailySummaries;
loading: boolean;
error: string | null;
hasMore: boolean;
loadMore: () => Promise<void>;
refresh: () => Promise<void>;
removeRecap: (id: string) => Promise<boolean>;
generateForDate: (date: string) => Promise<DailySummary | null>;
getRecapDetail: (id: string) => Promise<DailySummary | null>;
}
// Cache key for recaps data - uses centralized cache system
const RECAPS_CACHE_KEY = 'recaps:list';
// Structure stored in centralized cache
interface RecapsCacheData {
recaps: DailySummary[];
offset: number;
hasMore: boolean;
}
function getFromCache(): { data: RecapsCacheData; isStale: boolean } | null {
return getCache<RecapsCacheData>(RECAPS_CACHE_KEY);
}
function setToCache(recaps: DailySummary[], offset: number, hasMore: boolean): void {
setCache<RecapsCacheData>(RECAPS_CACHE_KEY, { recaps, offset, hasMore }, CACHE_TTL.MEDIUM);
}
function updateCacheRecaps(updater: (recaps: DailySummary[]) => DailySummary[]): void {
updateCache<RecapsCacheData>(RECAPS_CACHE_KEY, (data) => ({
...data,
recaps: updater(data.recaps),
}));
}
// Parse YYYY-MM-DD as local date (not UTC)
function parseLocalDate(dateString: string): Date {
const [year, month, day] = dateString.split('-').map(Number);
return new Date(year, month - 1, day);
}
// Group recaps by month (e.g., "January 2025")
function groupByMonth(recaps: DailySummary[]): GroupedDailySummaries {
if (!Array.isArray(recaps) || recaps.length === 0) {
return {};
}
return recaps.reduce((groups, recap) => {
const date = parseLocalDate(recap.date);
const monthKey = date.toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
});
if (!groups[monthKey]) {
groups[monthKey] = [];
}
groups[monthKey].push(recap);
return groups;
}, {} as GroupedDailySummaries);
}
// Safely extract array from API response
function normalizeRecapsResponse(response: unknown): DailySummary[] {
if (Array.isArray(response)) {
return response;
}
// Handle wrapped response like { daily_summaries: [...] }
if (response && typeof response === 'object') {
const obj = response as Record<string, unknown>;
if (Array.isArray(obj.daily_summaries)) {
return obj.daily_summaries;
}
if (Array.isArray(obj.summaries)) {
return obj.summaries;
}
if (Array.isArray(obj.data)) {
return obj.data;
}
}
return [];
}
export function useRecaps(options: UseRecapsOptions = {}): UseRecapsReturn {
const { limit = 30 } = options;
const cachedEntry = getFromCache();
// Initialize state from cache if available
const [recaps, setRecaps] = useState<DailySummary[]>(cachedEntry?.data.recaps || []);
const [loading, setLoading] = useState(!cachedEntry);
const [error, setError] = useState<string | null>(null);
const [hasMore, setHasMore] = useState(cachedEntry?.data.hasMore ?? true);
// Use ref for offset to avoid dependency issues
const offsetRef = useRef(cachedEntry?.data.offset || 0);
// Track if a fetch is in progress to prevent concurrent fetches
const fetchingRef = useRef(false);
// Track if initial fetch is done
const initializedRef = useRef(false);
// Compute grouped recaps
const groupedRecaps = useMemo(() => groupByMonth(recaps), [recaps]);
// Core fetch function
const doFetch = useCallback(async (currentOffset: number): Promise<DailySummary[]> => {
const result = await getDailySummaries({
limit,
offset: currentOffset,
});
return normalizeRecapsResponse(result);
}, [limit]);
// Initial load
useEffect(() => {
if (initializedRef.current) return;
initializedRef.current = true;
const cached = getFromCache();
// If we have fresh cache, use it and skip fetch
if (cached && !cached.isStale) {
setRecaps(cached.data.recaps);
setHasMore(cached.data.hasMore);
offsetRef.current = cached.data.offset;
setLoading(false);
return;
}
// If we have stale cache, show it but refresh in background
if (cached) {
setRecaps(cached.data.recaps);
setHasMore(cached.data.hasMore);
offsetRef.current = cached.data.offset;
setLoading(false);
}
const loadInitial = async () => {
if (fetchingRef.current) return;
fetchingRef.current = true;
if (!cached) {
setLoading(true);
}
setError(null);
try {
const result = await doFetch(0);
setRecaps(result);
offsetRef.current = result.length;
setHasMore(result.length >= limit);
setToCache(result, result.length, result.length >= limit);
} catch (err) {
if (!cached) {
setError(err instanceof Error ? err.message : 'Failed to load recaps');
}
} finally {
setLoading(false);
fetchingRef.current = false;
}
};
loadInitial();
}, [doFetch, limit]);
// Load more (pagination)
const loadMore = useCallback(async () => {
if (fetchingRef.current || !hasMore) return;
fetchingRef.current = true;
setLoading(true);
try {
const result = await doFetch(offsetRef.current);
setRecaps((prev) => {
// Deduplicate
const existingIds = new Set(prev.map((r) => r.id));
const newRecaps = result.filter((r) => !existingIds.has(r.id));
const updated = [...prev, ...newRecaps];
const newOffset = offsetRef.current + result.length;
const newHasMore = result.length >= limit;
setToCache(updated, newOffset, newHasMore);
return updated;
});
offsetRef.current += result.length;
setHasMore(result.length >= limit);
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to load more recaps');
} finally {
setLoading(false);
fetchingRef.current = false;
}
}, [doFetch, hasMore, limit]);
// Refresh
const refresh = useCallback(async () => {
if (fetchingRef.current) return;
fetchingRef.current = true;
setLoading(true);
setError(null);
try {
const result = await doFetch(0);
setRecaps(result);
offsetRef.current = result.length;
setHasMore(result.length >= limit);
setToCache(result, result.length, result.length >= limit);
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to refresh recaps');
} finally {
setLoading(false);
fetchingRef.current = false;
}
}, [doFetch, limit]);
// Remove recap
const removeRecap = useCallback(async (id: string): Promise<boolean> => {
try {
await deleteDailySummary(id);
const updater = (prev: DailySummary[]) => prev.filter((r) => r.id !== id);
setRecaps(updater);
updateCacheRecaps(updater);
return true;
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to delete recap');
return false;
}
}, []);
// Generate recap for a specific date
const generateForDate = useCallback(async (date: string): Promise<DailySummary | null> => {
try {
const newRecap = await generateTestDailySummary(date);
setRecaps((prev) => {
// Add to beginning and sort by date descending
const updated = [newRecap, ...prev.filter((r) => r.id !== newRecap.id)];
updated.sort((a, b) => parseLocalDate(b.date).getTime() - parseLocalDate(a.date).getTime());
updateCacheRecaps(() => updated);
return updated;
});
return newRecap;
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to generate recap');
return null;
}
}, []);
// Get single recap detail
const getRecapDetail = useCallback(async (id: string): Promise<DailySummary | null> => {
try {
return await getDailySummary(id);
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to load recap detail');
return null;
}
}, []);
return {
recaps,
groupedRecaps,
loading,
error,
hasMore,
loadMore,
refresh,
removeRecap,
generateForDate,
getRecapDetail,
};
}