diff options
author | dan <dan.abramov@gmail.com> | 2023-11-30 21:35:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 13:35:58 -0800 |
commit | 46b63accb8e73997f2a1bee24cfda220d29e048b (patch) | |
tree | 748de65b464e98d8241cc6fd8d11a9c17d9ec05c /src/state/queries/notifications/feed.ts | |
parent | 143fc80951d3a0620c0a5e55f46229f2fc743758 (diff) | |
download | voidsky-46b63accb8e73997f2a1bee24cfda220d29e048b.tar.zst |
Rewrite the shadow logic to look inside the cache (#2045)
* Reset * Associate shadows with the cache * Use colocated helpers * Fix types * Reorder for clarity * More types * Copy paste logic for profile * Hook up profile query * Hook up suggested follows * Hook up other profile things * Fix shape * Pass setShadow into the effect deps * Include reply posts in the shadow cache search --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/state/queries/notifications/feed.ts')
-rw-r--r-- | src/state/queries/notifications/feed.ts | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index 5c519d045..0fd9a2fef 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -86,6 +86,19 @@ export function findPostInQueryData( queryClient: QueryClient, uri: string, ): AppBskyFeedDefs.PostView | undefined { + const generator = findAllPostsInQueryData(queryClient, uri) + const result = generator.next() + if (result.done) { + return undefined + } else { + return result.value + } +} + +export function* findAllPostsInQueryData( + queryClient: QueryClient, + uri: string, +): Generator<AppBskyFeedDefs.PostView, void> { const queryDatas = queryClient.getQueriesData<InfiniteData<FeedPage>>({ queryKey: ['notification-feed'], }) @@ -96,10 +109,9 @@ export function findPostInQueryData( for (const page of queryData?.pages) { for (const item of page.items) { if (item.subject?.uri === uri) { - return item.subject + yield item.subject } } } } - return undefined } |