2019-08-30 16:58:48 +00:00
|
|
|
import { reduce, filter, findIndex, clone, get } from 'lodash'
|
2016-11-24 17:17:09 +00:00
|
|
|
import Status from '../status/status.vue'
|
2021-08-07 00:18:27 +00:00
|
|
|
import ThreadTree from '../thread_tree/thread_tree.vue'
|
|
|
|
|
2021-08-07 15:59:10 +00:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import {
|
|
|
|
faAngleDoubleDown,
|
2021-08-07 18:11:34 +00:00
|
|
|
faAngleDoubleLeft,
|
|
|
|
faChevronLeft
|
2021-08-07 15:59:10 +00:00
|
|
|
} from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faAngleDoubleDown,
|
2021-08-07 18:11:34 +00:00
|
|
|
faAngleDoubleLeft,
|
|
|
|
faChevronLeft
|
2021-08-07 15:59:10 +00:00
|
|
|
)
|
|
|
|
|
2021-08-07 14:28:45 +00:00
|
|
|
// const debug = console.log
|
|
|
|
const debug = () => {}
|
2016-11-24 17:17:09 +00:00
|
|
|
|
2019-01-24 21:49:37 +00:00
|
|
|
const sortById = (a, b) => {
|
2019-03-27 20:00:54 +00:00
|
|
|
const idA = a.type === 'retweet' ? a.retweeted_status.id : a.id
|
|
|
|
const idB = b.type === 'retweet' ? b.retweeted_status.id : b.id
|
2019-03-28 14:02:33 +00:00
|
|
|
const seqA = Number(idA)
|
|
|
|
const seqB = Number(idB)
|
|
|
|
const isSeqA = !Number.isNaN(seqA)
|
|
|
|
const isSeqB = !Number.isNaN(seqB)
|
|
|
|
if (isSeqA && isSeqB) {
|
|
|
|
return seqA < seqB ? -1 : 1
|
|
|
|
} else if (isSeqA && !isSeqB) {
|
|
|
|
return -1
|
|
|
|
} else if (!isSeqA && isSeqB) {
|
|
|
|
return 1
|
|
|
|
} else {
|
|
|
|
return idA < idB ? -1 : 1
|
|
|
|
}
|
2019-01-24 21:49:37 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 20:09:40 +00:00
|
|
|
const sortAndFilterConversation = (conversation, statusoid) => {
|
|
|
|
if (statusoid.type === 'retweet') {
|
|
|
|
conversation = filter(
|
|
|
|
conversation,
|
|
|
|
(status) => (status.type === 'retweet' || status.id !== statusoid.retweeted_status.id)
|
|
|
|
)
|
2019-03-27 20:00:54 +00:00
|
|
|
} else {
|
|
|
|
conversation = filter(conversation, (status) => status.type !== 'retweet')
|
2019-03-25 20:09:40 +00:00
|
|
|
}
|
2019-01-25 13:20:42 +00:00
|
|
|
return conversation.filter(_ => _).sort(sortById)
|
2016-11-28 17:01:23 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 17:17:09 +00:00
|
|
|
const conversation = {
|
2017-04-12 16:07:55 +00:00
|
|
|
data () {
|
2017-04-12 15:25:19 +00:00
|
|
|
return {
|
2019-03-11 20:24:37 +00:00
|
|
|
highlight: null,
|
2021-08-07 04:33:06 +00:00
|
|
|
expanded: false,
|
2021-08-07 14:28:45 +00:00
|
|
|
threadDisplayStatusObject: {}, // id => 'showing' | 'hidden'
|
2021-08-07 15:59:10 +00:00
|
|
|
statusContentPropertiesObject: {},
|
2021-08-07 18:11:34 +00:00
|
|
|
diveHistory: []
|
2017-04-12 15:25:19 +00:00
|
|
|
}
|
|
|
|
},
|
2017-02-04 12:52:26 +00:00
|
|
|
props: [
|
2019-09-03 17:19:14 +00:00
|
|
|
'statusId',
|
2019-03-25 14:50:09 +00:00
|
|
|
'collapsable',
|
2019-04-30 15:06:22 +00:00
|
|
|
'isPage',
|
2019-09-13 19:34:17 +00:00
|
|
|
'pinnedStatusIdsObject',
|
2019-11-25 17:25:01 +00:00
|
|
|
'inProfile',
|
2020-09-29 10:18:37 +00:00
|
|
|
'profileUserId',
|
|
|
|
'virtualHidden'
|
2017-02-04 12:52:26 +00:00
|
|
|
],
|
2019-03-25 18:55:58 +00:00
|
|
|
created () {
|
|
|
|
if (this.isPage) {
|
|
|
|
this.fetchConversation()
|
|
|
|
}
|
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
computed: {
|
2021-08-07 04:33:06 +00:00
|
|
|
maxDepthToShowByDefault () {
|
|
|
|
return 4
|
|
|
|
},
|
2021-08-07 00:18:27 +00:00
|
|
|
displayStyle () {
|
|
|
|
return this.$store.state.config.conversationDisplay
|
|
|
|
},
|
|
|
|
isTreeView () {
|
|
|
|
return this.displayStyle === 'tree'
|
|
|
|
},
|
|
|
|
isLinearView () {
|
|
|
|
return this.displayStyle === 'linear'
|
|
|
|
},
|
2020-09-29 10:18:37 +00:00
|
|
|
hideStatus () {
|
|
|
|
if (this.$refs.statusComponent && this.$refs.statusComponent[0]) {
|
|
|
|
return this.virtualHidden && this.$refs.statusComponent[0].suspendable
|
|
|
|
} else {
|
|
|
|
return this.virtualHidden
|
|
|
|
}
|
|
|
|
},
|
2019-01-13 19:07:55 +00:00
|
|
|
status () {
|
2019-09-03 17:19:14 +00:00
|
|
|
return this.$store.state.statuses.allStatusesObject[this.statusId]
|
2019-01-13 19:07:55 +00:00
|
|
|
},
|
2019-09-03 17:19:14 +00:00
|
|
|
originalStatusId () {
|
2019-08-30 15:47:15 +00:00
|
|
|
if (this.status.retweeted_status) {
|
|
|
|
return this.status.retweeted_status.id
|
2019-02-12 10:10:27 +00:00
|
|
|
} else {
|
2019-09-03 17:19:14 +00:00
|
|
|
return this.statusId
|
2019-02-12 10:10:27 +00:00
|
|
|
}
|
|
|
|
},
|
2019-04-09 15:08:39 +00:00
|
|
|
conversationId () {
|
2019-09-03 17:19:14 +00:00
|
|
|
return this.getConversationId(this.statusId)
|
2019-04-09 15:08:39 +00:00
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
conversation () {
|
|
|
|
if (!this.status) {
|
2019-01-13 19:07:55 +00:00
|
|
|
return []
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 20:09:40 +00:00
|
|
|
if (!this.isExpanded) {
|
2019-03-11 20:24:37 +00:00
|
|
|
return [this.status]
|
|
|
|
}
|
|
|
|
|
2019-04-11 16:46:06 +00:00
|
|
|
const conversation = clone(this.$store.state.statuses.conversationsObject[this.conversationId])
|
2019-09-03 17:19:14 +00:00
|
|
|
const statusIndex = findIndex(conversation, { id: this.originalStatusId })
|
2019-03-11 20:24:37 +00:00
|
|
|
if (statusIndex !== -1) {
|
|
|
|
conversation[statusIndex] = this.status
|
|
|
|
}
|
2019-03-25 18:47:54 +00:00
|
|
|
|
2019-03-25 20:09:40 +00:00
|
|
|
return sortAndFilterConversation(conversation, this.status)
|
2017-07-29 16:53:49 +00:00
|
|
|
},
|
2021-08-07 18:11:34 +00:00
|
|
|
conversationDive () {
|
|
|
|
},
|
|
|
|
statusMap () {
|
|
|
|
return this.conversation.reduce((res, s) => {
|
|
|
|
res[s.id] = s
|
|
|
|
return res
|
|
|
|
}, {})
|
|
|
|
},
|
2021-08-07 00:18:27 +00:00
|
|
|
threadTree () {
|
|
|
|
const reverseLookupTable = this.conversation.reduce((table, status, index) => {
|
|
|
|
table[status.id] = index
|
|
|
|
return table
|
|
|
|
}, {})
|
|
|
|
|
|
|
|
const threads = this.conversation.reduce((a, cur) => {
|
|
|
|
const id = cur.id
|
|
|
|
a.forest[id] = this.getReplies(id)
|
|
|
|
.map(s => s.id)
|
|
|
|
|
|
|
|
return a
|
|
|
|
}, {
|
|
|
|
forest: {},
|
|
|
|
})
|
|
|
|
|
2021-08-07 04:33:06 +00:00
|
|
|
debug('threads = ', threads)
|
|
|
|
|
2021-08-07 00:18:27 +00:00
|
|
|
const walk = (forest, topLevel, depth = 0, processed = {}) => topLevel.map(id => {
|
|
|
|
if (processed[id]) {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
|
|
|
processed[id] = true
|
|
|
|
return [{
|
|
|
|
status: this.conversation[reverseLookupTable[id]],
|
|
|
|
id,
|
|
|
|
depth
|
2021-08-07 04:33:06 +00:00
|
|
|
}, walk(forest, forest[id], depth + 1, processed)].reduce((a, b) => a.concat(b), [])
|
2021-08-07 00:18:27 +00:00
|
|
|
}).reduce((a, b) => a.concat(b), [])
|
|
|
|
|
2021-08-07 04:33:06 +00:00
|
|
|
const linearized = walk(threads.forest, this.topLevel.map(k => k.id))
|
2021-08-07 00:18:27 +00:00
|
|
|
|
|
|
|
return linearized
|
|
|
|
},
|
2021-08-07 04:33:06 +00:00
|
|
|
replyIds () {
|
|
|
|
return this.conversation.map(k => k.id)
|
|
|
|
.reduce((res, id) => {
|
|
|
|
res[id] = (this.replies[id] || []).map(k => k.id)
|
|
|
|
return res
|
|
|
|
}, {})
|
|
|
|
},
|
|
|
|
totalReplyCount () {
|
|
|
|
debug('replyIds=', this.replyIds)
|
|
|
|
const sizes = {}
|
|
|
|
const subTreeSizeFor = (id) => {
|
|
|
|
if (sizes[id]) {
|
|
|
|
return sizes[id]
|
|
|
|
}
|
|
|
|
sizes[id] = 1 + this.replyIds[id].map(cid => subTreeSizeFor(cid)).reduce((a, b) => a + b, 0)
|
|
|
|
return sizes[id]
|
|
|
|
}
|
|
|
|
this.conversation.map(k => k.id).map(subTreeSizeFor)
|
|
|
|
debug('totalReplyCount=', sizes)
|
|
|
|
return Object.keys(sizes).reduce((res, id) => {
|
|
|
|
res[id] = sizes[id] - 1 // exclude itself
|
|
|
|
return res
|
|
|
|
}, {})
|
|
|
|
},
|
|
|
|
totalReplyDepth () {
|
|
|
|
const depths = {}
|
|
|
|
const subTreeDepthFor = (id) => {
|
|
|
|
if (depths[id]) {
|
|
|
|
return depths[id]
|
|
|
|
}
|
|
|
|
depths[id] = 1 + this.replyIds[id].map(cid => subTreeDepthFor(cid)).reduce((a, b) => a > b ? a : b, 0)
|
|
|
|
return depths[id]
|
|
|
|
}
|
|
|
|
this.conversation.map(k => k.id).map(subTreeDepthFor)
|
|
|
|
return Object.keys(depths).reduce((res, id) => {
|
|
|
|
res[id] = depths[id] - 1 // exclude itself
|
|
|
|
return res
|
|
|
|
}, {})
|
|
|
|
},
|
|
|
|
depths () {
|
|
|
|
debug('threadTree', this.threadTree)
|
|
|
|
return this.threadTree.reduce((a, k) => {
|
|
|
|
a[k.id] = k.depth
|
|
|
|
return a
|
|
|
|
}, {})
|
|
|
|
},
|
2021-08-07 00:18:27 +00:00
|
|
|
topLevel () {
|
|
|
|
const topLevel = this.conversation.reduce((tl, cur) =>
|
|
|
|
tl.filter(k => this.getReplies(cur.id).map(v => v.id).indexOf(k.id) === -1), this.conversation)
|
|
|
|
debug("toplevel =", topLevel)
|
|
|
|
return topLevel
|
|
|
|
},
|
2021-08-07 15:59:10 +00:00
|
|
|
showingTopLevel () {
|
2021-08-07 18:11:34 +00:00
|
|
|
if (this.canDive && this.diveRoot) {
|
|
|
|
return [this.statusMap[this.diveRoot]]
|
2021-08-07 15:59:10 +00:00
|
|
|
}
|
|
|
|
return this.topLevel
|
|
|
|
},
|
2021-08-07 18:11:34 +00:00
|
|
|
diveRoot () {
|
|
|
|
return this.diveHistory[this.diveHistory.length - 1]
|
|
|
|
},
|
2021-08-07 15:59:10 +00:00
|
|
|
diveDepth () {
|
2021-08-07 18:11:34 +00:00
|
|
|
return this.canDive && this.diveRoot ? this.depths[this.diveRoot] : 0
|
2021-08-07 15:59:10 +00:00
|
|
|
},
|
|
|
|
diveMode () {
|
2021-08-07 18:11:34 +00:00
|
|
|
return this.canDive && !!this.diveRoot
|
2021-08-07 15:59:10 +00:00
|
|
|
},
|
2017-07-29 16:53:49 +00:00
|
|
|
replies () {
|
2017-07-29 17:10:09 +00:00
|
|
|
let i = 1
|
2019-07-06 21:54:17 +00:00
|
|
|
// eslint-disable-next-line camelcase
|
2019-07-05 07:02:14 +00:00
|
|
|
return reduce(this.conversation, (result, { id, in_reply_to_status_id }) => {
|
2019-01-17 20:08:44 +00:00
|
|
|
/* eslint-disable camelcase */
|
|
|
|
const irid = in_reply_to_status_id
|
|
|
|
/* eslint-enable camelcase */
|
2017-07-29 16:53:49 +00:00
|
|
|
if (irid) {
|
|
|
|
result[irid] = result[irid] || []
|
|
|
|
result[irid].push({
|
2017-07-29 17:10:09 +00:00
|
|
|
name: `#${i}`,
|
2017-07-29 16:53:49 +00:00
|
|
|
id: id
|
|
|
|
})
|
|
|
|
}
|
2017-07-29 17:10:09 +00:00
|
|
|
i++
|
2017-07-29 16:53:49 +00:00
|
|
|
return result
|
|
|
|
}, {})
|
2019-03-25 14:50:09 +00:00
|
|
|
},
|
|
|
|
isExpanded () {
|
2021-08-07 00:18:27 +00:00
|
|
|
return !!(this.expanded || this.isPage)
|
2020-09-29 10:18:37 +00:00
|
|
|
},
|
|
|
|
hiddenStyle () {
|
|
|
|
const height = (this.status && this.status.virtualHeight) || '120px'
|
|
|
|
return this.virtualHidden ? { height } : {}
|
2021-08-07 04:33:06 +00:00
|
|
|
},
|
|
|
|
threadDisplayStatus () {
|
|
|
|
return this.conversation.reduce((a, k) => {
|
|
|
|
const id = k.id
|
|
|
|
const depth = this.depths[id]
|
|
|
|
const status = (() => {
|
|
|
|
if (this.threadDisplayStatusObject[id]) {
|
|
|
|
return this.threadDisplayStatusObject[id]
|
|
|
|
}
|
2021-08-07 18:11:34 +00:00
|
|
|
if ((depth - this.diveDepth) <= this.maxDepthToShowByDefault) {
|
2021-08-07 04:33:06 +00:00
|
|
|
return 'showing'
|
|
|
|
} else {
|
|
|
|
return 'hidden'
|
|
|
|
}
|
|
|
|
})()
|
|
|
|
|
|
|
|
a[id] = status
|
|
|
|
return a
|
|
|
|
}, {})
|
2021-08-07 14:28:45 +00:00
|
|
|
},
|
|
|
|
statusContentProperties () {
|
|
|
|
return this.conversation.reduce((a, k) => {
|
|
|
|
const id = k.id
|
|
|
|
const depth = this.depths[id]
|
|
|
|
const props = (() => {
|
|
|
|
if (this.statusContentPropertiesObject[id]) {
|
|
|
|
return this.statusContentPropertiesObject[id]
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
showingTall: false,
|
|
|
|
expandingSubject: false,
|
|
|
|
showingLongSubject: false,
|
|
|
|
}
|
|
|
|
})()
|
|
|
|
|
|
|
|
a[id] = props
|
|
|
|
return a
|
|
|
|
}, {})
|
2021-08-07 18:11:34 +00:00
|
|
|
},
|
|
|
|
canDive () {
|
|
|
|
return this.isTreeView && this.isExpanded
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
2021-08-07 00:18:27 +00:00
|
|
|
Status,
|
|
|
|
ThreadTree
|
2016-11-24 17:17:09 +00:00
|
|
|
},
|
2016-11-28 12:36:19 +00:00
|
|
|
watch: {
|
2019-09-03 17:19:14 +00:00
|
|
|
statusId (newVal, oldVal) {
|
2019-08-30 16:58:48 +00:00
|
|
|
const newConversationId = this.getConversationId(newVal)
|
|
|
|
const oldConversationId = this.getConversationId(oldVal)
|
|
|
|
if (newConversationId && oldConversationId && newConversationId === oldConversationId) {
|
2019-09-03 17:19:14 +00:00
|
|
|
this.setHighlight(this.originalStatusId)
|
2019-08-30 16:58:48 +00:00
|
|
|
} else {
|
|
|
|
this.fetchConversation()
|
|
|
|
}
|
|
|
|
},
|
2019-03-11 20:24:37 +00:00
|
|
|
expanded (value) {
|
|
|
|
if (value) {
|
|
|
|
this.fetchConversation()
|
|
|
|
}
|
2020-09-29 10:18:37 +00:00
|
|
|
},
|
|
|
|
virtualHidden (value) {
|
|
|
|
this.$store.dispatch(
|
|
|
|
'setVirtualHeight',
|
|
|
|
{ statusId: this.statusId, height: `${this.$el.clientHeight}px` }
|
|
|
|
)
|
2019-03-11 20:24:37 +00:00
|
|
|
}
|
2016-11-28 12:36:19 +00:00
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
methods: {
|
2021-08-07 18:11:34 +00:00
|
|
|
conversationFetched () {
|
|
|
|
if (!this.isExpanded) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._diven) {
|
|
|
|
if (!this.threadDisplayStatus[this.statusId]) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this._diven = true
|
|
|
|
const parentOrSelf = this.parentOrSelf(this.originalStatusId)
|
|
|
|
console.log(
|
|
|
|
'this.threadDisplayStatus ', this.threadDisplayStatus,
|
|
|
|
'this.statusId', this.statusId)
|
|
|
|
if (this.threadDisplayStatus[this.statusId] === 'hidden') {
|
|
|
|
this.diveIntoStatus(parentOrSelf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
fetchConversation () {
|
|
|
|
if (this.status) {
|
2019-09-03 17:19:14 +00:00
|
|
|
this.$store.state.api.backendInteractor.fetchConversation({ id: this.statusId })
|
2019-07-05 07:02:14 +00:00
|
|
|
.then(({ ancestors, descendants }) => {
|
2019-03-21 21:45:18 +00:00
|
|
|
this.$store.dispatch('addNewStatuses', { statuses: ancestors })
|
|
|
|
this.$store.dispatch('addNewStatuses', { statuses: descendants })
|
2019-09-03 17:19:14 +00:00
|
|
|
this.setHighlight(this.originalStatusId)
|
2019-03-09 16:33:49 +00:00
|
|
|
})
|
2021-08-07 18:11:34 +00:00
|
|
|
.then(this.conversationFetched)
|
2016-11-24 17:17:09 +00:00
|
|
|
} else {
|
2019-09-03 17:19:14 +00:00
|
|
|
this.$store.state.api.backendInteractor.fetchStatus({ id: this.statusId })
|
2019-08-30 16:11:59 +00:00
|
|
|
.then((status) => {
|
|
|
|
this.$store.dispatch('addNewStatuses', { statuses: [status] })
|
|
|
|
this.fetchConversation()
|
|
|
|
})
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
2017-03-05 15:31:01 +00:00
|
|
|
},
|
2017-07-28 13:52:05 +00:00
|
|
|
getReplies (id) {
|
2017-07-29 16:53:49 +00:00
|
|
|
return this.replies[id] || []
|
2017-07-28 13:52:05 +00:00
|
|
|
},
|
2017-06-04 20:58:15 +00:00
|
|
|
focused (id) {
|
2019-09-03 17:19:14 +00:00
|
|
|
return (this.isExpanded) && id === this.statusId
|
2017-04-12 15:25:19 +00:00
|
|
|
},
|
2017-04-12 16:07:55 +00:00
|
|
|
setHighlight (id) {
|
2019-06-18 16:31:20 +00:00
|
|
|
if (!id) return
|
2019-01-17 20:08:44 +00:00
|
|
|
this.highlight = id
|
2019-04-09 15:45:33 +00:00
|
|
|
this.$store.dispatch('fetchFavsAndRepeats', id)
|
2020-01-26 13:45:12 +00:00
|
|
|
this.$store.dispatch('fetchEmojiReactionsBy', id)
|
2019-03-11 14:52:28 +00:00
|
|
|
},
|
2019-03-11 20:24:37 +00:00
|
|
|
getHighlight () {
|
2019-03-25 18:55:58 +00:00
|
|
|
return this.isExpanded ? this.highlight : null
|
2019-03-11 20:24:37 +00:00
|
|
|
},
|
|
|
|
toggleExpanded () {
|
|
|
|
this.expanded = !this.expanded
|
2019-08-30 16:58:48 +00:00
|
|
|
},
|
|
|
|
getConversationId (statusId) {
|
|
|
|
const status = this.$store.state.statuses.allStatusesObject[statusId]
|
|
|
|
return get(status, 'retweeted_status.statusnet_conversation_id', get(status, 'statusnet_conversation_id'))
|
2021-08-07 04:33:06 +00:00
|
|
|
},
|
|
|
|
setThreadDisplay (id, nextStatus) {
|
|
|
|
this.threadDisplayStatusObject = {
|
|
|
|
...this.threadDisplayStatusObject,
|
|
|
|
[id]: nextStatus
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleThreadDisplay (id) {
|
|
|
|
const depth = this.depths[id]
|
|
|
|
debug('depth = ', depth)
|
|
|
|
debug(
|
|
|
|
'threadDisplayStatus = ', this.threadDisplayStatus,
|
|
|
|
'threadDisplayStatusObject = ', this.threadDisplayStatusObject)
|
|
|
|
const curStatus = this.threadDisplayStatus[id]
|
|
|
|
const nextStatus = curStatus === 'showing' ? 'hidden' : 'showing'
|
|
|
|
debug('toggling', id, 'to', nextStatus)
|
|
|
|
this.setThreadDisplay(id, nextStatus)
|
|
|
|
},
|
|
|
|
setThreadDisplayRecursively (id, nextStatus) {
|
|
|
|
this.setThreadDisplay(id, nextStatus)
|
|
|
|
this.getReplies(id).map(k => k.id).map(id => this.setThreadDisplayRecursively(id, nextStatus))
|
|
|
|
},
|
|
|
|
showThreadRecursively (id) {
|
|
|
|
this.setThreadDisplayRecursively(id, 'showing')
|
2021-08-07 14:28:45 +00:00
|
|
|
},
|
|
|
|
setStatusContentProperty (id, name, value) {
|
|
|
|
this.statusContentPropertiesObject = {
|
|
|
|
...this.statusContentPropertiesObject,
|
|
|
|
[id]: {
|
|
|
|
...this.statusContentPropertiesObject[id],
|
|
|
|
[name]: value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleStatusContentProperty (id, name) {
|
|
|
|
this.setStatusContentProperty(id, name, !this.statusContentProperties[id][name])
|
2021-08-07 15:59:10 +00:00
|
|
|
},
|
|
|
|
diveIntoStatus (id) {
|
2021-08-07 18:11:34 +00:00
|
|
|
this.diveHistory = [...this.diveHistory, id]
|
|
|
|
},
|
|
|
|
diveBack () {
|
|
|
|
this.diveHistory = [...this.diveHistory.slice(0, this.diveHistory.length - 1)]
|
2021-08-07 15:59:10 +00:00
|
|
|
},
|
|
|
|
undive () {
|
2021-08-07 18:11:34 +00:00
|
|
|
this.diveHistory = []
|
|
|
|
},
|
|
|
|
statusById (id) {
|
|
|
|
return this.statusMap[id]
|
|
|
|
},
|
|
|
|
parentOf (id) {
|
|
|
|
const { in_reply_to_status_id: parentId } = this.statusById(id)
|
|
|
|
return parentId
|
|
|
|
},
|
|
|
|
parentOrSelf (id) {
|
|
|
|
return this.parentOf(id) || id
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default conversation
|