feat: Implement parallel multi-page fetching from each search source and introduce client-side load more pagination for aggregated results.

This commit is contained in:
kuekhaoyang
2026-02-16 11:32:20 +08:00
parent d54039663a
commit bc25be5b05
11 changed files with 184 additions and 23 deletions
+3 -1
View File
@@ -20,7 +20,7 @@ export function SearchResults({
availableSources,
loading,
isPremium = false,
latencies = {}
latencies = {},
}: SearchResultsProps) {
// Source badges hook - filters by video source
const {
@@ -77,3 +77,5 @@ export function SearchResults({
</div>
);
}