diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-06-11 11:30:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 11:30:38 -0700 |
commit | 46e12c6d34897fab77e039b1acb13b88a4b97a80 (patch) | |
tree | 819a9dfd019202087c9c1794fc674413eaf4e8e1 /src/state/queries/post-thread.ts | |
parent | 4b6609d48b41cdc5be6fb957ea396e8aba18b1b6 (diff) | |
download | voidsky-46e12c6d34897fab77e039b1acb13b88a4b97a80.tar.zst |
Improve thread loading (#4402)
* Increase the number of posts loaded when a self-thread is present * Increase depth to 10, detect cutoffs on self-threads and show continue link * Stacky the avis
Diffstat (limited to 'src/state/queries/post-thread.ts')
-rw-r--r-- | src/state/queries/post-thread.ts | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/src/state/queries/post-thread.ts b/src/state/queries/post-thread.ts index f7d21a427..727eff253 100644 --- a/src/state/queries/post-thread.ts +++ b/src/state/queries/post-thread.ts @@ -41,6 +41,8 @@ export interface ThreadCtx { hasMore?: boolean isParentLoading?: boolean isChildLoading?: boolean + isSelfThread?: boolean + hasMoreSelfThread?: boolean } export type ThreadPost = { @@ -88,9 +90,12 @@ export function usePostThreadQuery(uri: string | undefined) { gcTime: 0, queryKey: RQKEY(uri || ''), async queryFn() { - const res = await agent.getPostThread({uri: uri!}) + const res = await agent.getPostThread({uri: uri!, depth: 10}) if (res.success) { - return responseToThreadNodes(res.data.thread) + const thread = responseToThreadNodes(res.data.thread) + annotateSelfThread(thread) + console.log(thread) + return thread } return {type: 'unknown', uri: uri!} }, @@ -234,6 +239,8 @@ function responseToThreadNodes( isHighlightedPost: depth === 0, hasMore: direction === 'down' && !node.replies?.length && !!node.replyCount, + isSelfThread: false, // populated `annotateSelfThread` + hasMoreSelfThread: false, // populated in `annotateSelfThread` }, } } else if (AppBskyFeedDefs.isBlockedPost(node)) { @@ -245,6 +252,48 @@ function responseToThreadNodes( } } +function annotateSelfThread(thread: ThreadNode) { + if (thread.type !== 'post') { + return + } + const selfThreadNodes: ThreadPost[] = [thread] + + let parent: ThreadNode | undefined = thread.parent + while (parent) { + if ( + parent.type !== 'post' || + parent.post.author.did !== thread.post.author.did + ) { + // not a self-thread + return + } + selfThreadNodes.push(parent) + parent = parent.parent + } + + let node = thread + for (let i = 0; i < 10; i++) { + const reply = node.replies?.find( + r => r.type === 'post' && r.post.author.did === thread.post.author.did, + ) + if (reply?.type !== 'post') { + break + } + selfThreadNodes.push(reply) + node = reply + } + + if (selfThreadNodes.length > 1) { + for (const selfThreadNode of selfThreadNodes) { + selfThreadNode.ctx.isSelfThread = true + } + const last = selfThreadNodes.at(-1) + if (last && last.post.replyCount && !last.replies?.length) { + last.ctx.hasMoreSelfThread = true + } + } +} + function findPostInQueryData( queryClient: QueryClient, uri: string, |