all repos — honk @ adca61ad3ac48e64e7bffe3adad91ad6b06ed5bc

my fork of honk

this does a better job on broken threads
Ted Unangst tedu@tedunangst.com
Tue, 13 Jun 2023 23:31:52 -0400
commit

adca61ad3ac48e64e7bffe3adad91ad6b06ed5bc

parent

71d6f8c3f29dad75924d1d241a189cf74b4831f8

1 files changed, 4 insertions(+), 7 deletions(-)

jump to
M web.goweb.go

@@ -1019,13 +1019,13 @@ }

} func threadsort(honks []*Honk) []*Honk { + sort.Slice(honks, func(i, j int) bool { + return honks[i].Date.Before(honks[j].Date) + }) honkx := make(map[string]*Honk) kids := make(map[string][]*Honk) for _, h := range honks { honkx[h.XID] = h - if h.RID == "" { - honkx[""] = h - } rid := h.RID kids[rid] = append(kids[rid], h) }

@@ -1035,7 +1035,7 @@ var nextlevel func(p *Honk)

level := 0 nextlevel = func(p *Honk) { levelup := level < 4 - if pp := honkx[p.RID]; pp != nil && p.Honker == pp.Honker { + if pp := honkx[p.RID]; p.RID == "" || (pp != nil && p.Honker == pp.Honker) { levelup = false } if levelup {

@@ -1043,9 +1043,6 @@ level++

} p.Style += fmt.Sprintf(" level%d", level) childs := kids[p.XID] - sort.Slice(childs, func(i, j int) bool { - return childs[i].Date.Before(childs[j].Date) - }) for _, h := range childs { done[h] = true thread = append(thread, h)