feat: make new reply display first
This commit is contained in:
parent
fccf9ee080
commit
8df3b7d464
|
@ -263,7 +263,7 @@ extension ThreadViewModel {
|
||||||
) -> LeafNode? {
|
) -> LeafNode? {
|
||||||
guard let object = objectDict[statusID] else { return nil }
|
guard let object = objectDict[statusID] else { return nil }
|
||||||
let replies = (object.replyFrom ?? Set()).sorted(
|
let replies = (object.replyFrom ?? Set()).sorted(
|
||||||
by: { $0.repliesCount?.intValue ?? 0 < $1.repliesCount?.intValue ?? 0 }
|
by: { $0.createdAt > $1.createdAt } // order by date
|
||||||
)
|
)
|
||||||
let children = replies.compactMap { node(of: $0.id, objectDict: objectDict) }
|
let children = replies.compactMap { node(of: $0.id, objectDict: objectDict) }
|
||||||
return LeafNode(
|
return LeafNode(
|
||||||
|
|
Loading…
Reference in New Issue