From a21a0d29884dfa5a21f15a8a3684c48ecdf90b40 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 28 Sep 2022 15:03:16 -0500 Subject: Improve thread rendering (show reply lines) --- src/state/models/post-thread-view.ts | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'src/state/models/post-thread-view.ts') diff --git a/src/state/models/post-thread-view.ts b/src/state/models/post-thread-view.ts index fab0eb895..923562c5a 100644 --- a/src/state/models/post-thread-view.ts +++ b/src/state/models/post-thread-view.ts @@ -43,6 +43,9 @@ export class PostThreadViewPostModel implements GetPostThread.Post { indexedAt: string = '' myState = new PostThreadViewPostMyStateModel() + // added data + replyingToAuthor?: string + constructor( public rootStore: RootStoreModel, reactKey: string, @@ -58,9 +61,14 @@ export class PostThreadViewPostModel implements GetPostThread.Post { } } - assignTreeModels(keyGen: Generator, v: GetPostThread.Post) { + assignTreeModels( + keyGen: Generator, + v: GetPostThread.Post, + includeParent = true, + includeChildren = true, + ) { // parents - if (v.parent) { + if (includeParent && v.parent) { // TODO: validate .record const parentModel = new PostThreadViewPostModel( this.rootStore, @@ -69,12 +77,15 @@ export class PostThreadViewPostModel implements GetPostThread.Post { ) parentModel._depth = this._depth - 1 if (v.parent.parent) { - parentModel.assignTreeModels(keyGen, v.parent) + parentModel.assignTreeModels(keyGen, v.parent, true, false) } this.parent = parentModel } + if (v.parent?.author.name) { + this.replyingToAuthor = v.parent.author.name + } // replies - if (v.replies) { + if (includeChildren && v.replies) { const replies = [] for (const item of v.replies) { // TODO: validate .record @@ -85,7 +96,7 @@ export class PostThreadViewPostModel implements GetPostThread.Post { ) itemModel._depth = this._depth + 1 if (item.replies) { - itemModel.assignTreeModels(keyGen, item) + itemModel.assignTreeModels(keyGen, item, false, true) } replies.push(itemModel) } -- cgit 1.4.1