Clean up debug code for tree threading
This commit is contained in:
parent
2a510205c3
commit
cc5cff2038
2 changed files with 0 additions and 20 deletions
|
@ -15,9 +15,6 @@ library.add(
|
||||||
faChevronLeft
|
faChevronLeft
|
||||||
)
|
)
|
||||||
|
|
||||||
// const debug = console.log
|
|
||||||
const debug = () => {}
|
|
||||||
|
|
||||||
const sortById = (a, b) => {
|
const sortById = (a, b) => {
|
||||||
const idA = a.type === 'retweet' ? a.retweeted_status.id : a.id
|
const idA = a.type === 'retweet' ? a.retweeted_status.id : a.id
|
||||||
const idB = b.type === 'retweet' ? b.retweeted_status.id : b.id
|
const idB = b.type === 'retweet' ? b.retweeted_status.id : b.id
|
||||||
|
@ -165,8 +162,6 @@ const conversation = {
|
||||||
forest: {}
|
forest: {}
|
||||||
})
|
})
|
||||||
|
|
||||||
debug('threads = ', threads)
|
|
||||||
|
|
||||||
const walk = (forest, topLevel, depth = 0, processed = {}) => topLevel.map(id => {
|
const walk = (forest, topLevel, depth = 0, processed = {}) => topLevel.map(id => {
|
||||||
if (processed[id]) {
|
if (processed[id]) {
|
||||||
return []
|
return []
|
||||||
|
@ -192,7 +187,6 @@ const conversation = {
|
||||||
}, {})
|
}, {})
|
||||||
},
|
},
|
||||||
totalReplyCount () {
|
totalReplyCount () {
|
||||||
debug('replyIds=', this.replyIds)
|
|
||||||
const sizes = {}
|
const sizes = {}
|
||||||
const subTreeSizeFor = (id) => {
|
const subTreeSizeFor = (id) => {
|
||||||
if (sizes[id]) {
|
if (sizes[id]) {
|
||||||
|
@ -202,7 +196,6 @@ const conversation = {
|
||||||
return sizes[id]
|
return sizes[id]
|
||||||
}
|
}
|
||||||
this.conversation.map(k => k.id).map(subTreeSizeFor)
|
this.conversation.map(k => k.id).map(subTreeSizeFor)
|
||||||
debug('totalReplyCount=', sizes)
|
|
||||||
return Object.keys(sizes).reduce((res, id) => {
|
return Object.keys(sizes).reduce((res, id) => {
|
||||||
res[id] = sizes[id] - 1 // exclude itself
|
res[id] = sizes[id] - 1 // exclude itself
|
||||||
return res
|
return res
|
||||||
|
@ -224,7 +217,6 @@ const conversation = {
|
||||||
}, {})
|
}, {})
|
||||||
},
|
},
|
||||||
depths () {
|
depths () {
|
||||||
debug('threadTree', this.threadTree)
|
|
||||||
return this.threadTree.reduce((a, k) => {
|
return this.threadTree.reduce((a, k) => {
|
||||||
a[k.id] = k.depth
|
a[k.id] = k.depth
|
||||||
return a
|
return a
|
||||||
|
@ -233,7 +225,6 @@ const conversation = {
|
||||||
topLevel () {
|
topLevel () {
|
||||||
const topLevel = this.conversation.reduce((tl, cur) =>
|
const topLevel = this.conversation.reduce((tl, cur) =>
|
||||||
tl.filter(k => this.getReplies(cur.id).map(v => v.id).indexOf(k.id) === -1), this.conversation)
|
tl.filter(k => this.getReplies(cur.id).map(v => v.id).indexOf(k.id) === -1), this.conversation)
|
||||||
debug('toplevel =', topLevel)
|
|
||||||
return topLevel
|
return topLevel
|
||||||
},
|
},
|
||||||
otherTopLevelCount () {
|
otherTopLevelCount () {
|
||||||
|
@ -409,14 +400,8 @@ const conversation = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggleThreadDisplay (id) {
|
toggleThreadDisplay (id) {
|
||||||
const depth = this.depths[id]
|
|
||||||
debug('depth = ', depth)
|
|
||||||
debug(
|
|
||||||
'threadDisplayStatus = ', this.threadDisplayStatus,
|
|
||||||
'threadDisplayStatusObject = ', this.threadDisplayStatusObject)
|
|
||||||
const curStatus = this.threadDisplayStatus[id]
|
const curStatus = this.threadDisplayStatus[id]
|
||||||
const nextStatus = curStatus === 'showing' ? 'hidden' : 'showing'
|
const nextStatus = curStatus === 'showing' ? 'hidden' : 'showing'
|
||||||
debug('toggling', id, 'to', nextStatus)
|
|
||||||
this.setThreadDisplay(id, nextStatus)
|
this.setThreadDisplay(id, nextStatus)
|
||||||
},
|
},
|
||||||
setThreadDisplayRecursively (id, nextStatus) {
|
setThreadDisplayRecursively (id, nextStatus) {
|
||||||
|
|
|
@ -11,9 +11,6 @@ library.add(
|
||||||
faAngleDoubleRight
|
faAngleDoubleRight
|
||||||
)
|
)
|
||||||
|
|
||||||
// const debug = console.log
|
|
||||||
const debug = () => {}
|
|
||||||
|
|
||||||
const ThreadTree = {
|
const ThreadTree = {
|
||||||
components: {
|
components: {
|
||||||
Status
|
Status
|
||||||
|
@ -62,8 +59,6 @@ const ThreadTree = {
|
||||||
}, {})
|
}, {})
|
||||||
},
|
},
|
||||||
currentReplies () {
|
currentReplies () {
|
||||||
debug('status:', this.status)
|
|
||||||
debug('getReplies:', this.getReplies(this.status.id))
|
|
||||||
return this.getReplies(this.status.id).map(({ id }) => this.statusById(id))
|
return this.getReplies(this.status.id).map(({ id }) => this.statusById(id))
|
||||||
},
|
},
|
||||||
threadShowing () {
|
threadShowing () {
|
||||||
|
|
Loading…
Reference in a new issue