Fix highlighted post calc

This commit is contained in:
Eric Bailey
2025-05-23 09:33:35 -05:00
parent 2183de7452
commit 9e9ab55027
3 changed files with 19 additions and 13 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ export function usePostThread({
async queryFn() {
const {data} = await agent.app.bsky.unspecced.getPostThreadV2({
anchor: uri!,
branchingFactor: params.view === 'linear' ? 1 : 10,
branchingFactor: params.view === 'linear' ? 1 : 100,
below: 10,
sorting: mapSortOptionsToSortID(params.sort),
})
+16 -10
View File
@@ -60,11 +60,21 @@ export function flatten(
const item = flattened[i]
// TODO should not insert if not found post etc
if (item.type === 'threadPost' && item.depth === 0) {
flattened.splice(i + 1, 0, {
type: 'replyComposer',
key: 'replyComposer',
})
if (item.type === 'threadPost') {
if (item.ui.isAnchor) {
flattened.splice(i + 1, 0, {
type: 'replyComposer',
key: 'replyComposer',
})
}
if (
item.value.post.replyCount &&
item.value.post.replyCount > 0 &&
!item.ui.showChildReplyLine
) {
console.log('insert more link')
}
}
}
}
@@ -178,11 +188,7 @@ export function sort(
i = branch.end
continue traversal
} else if (AppBskyUnspeccedGetPostThreadV2.isThreadItemPost(item.value)) {
const lastSlice = items[items.length - 1]
const isFirstReply =
lastSlice.type === 'replyComposer' ||
(lastSlice.type === 'threadPost' && lastSlice.depth === 0)
const oneUp = isFirstReply ? undefined : thread.at(i - 1)
const oneUp = thread.at(i - 1)
const oneDown = thread.at(i + 1)
const post = views.threadPost({
uri: item.uri,
+2 -2
View File
@@ -94,8 +94,8 @@ export function threadPost({
moderation: moderatePost(value.post, moderationOpts),
ui: {
isAnchor: depth === 0,
showParentReplyLine: !!oneUp && oneUp.depth < depth,
showChildReplyLine: !!oneDown && oneDown.depth > depth,
showParentReplyLine: !!oneUp && oneUp.depth !== 0 && oneUp.depth < depth,
showChildReplyLine: !!oneDown && depth !== 0 && oneDown.depth > depth,
},
}
}