akkoma-fe/src/components/conversation/conversation.js

243 lines
6.8 KiB
JavaScript
Raw Normal View History

import { reduce, filter, findIndex, clone, get } from 'lodash'
import Status from '../status/status.vue'
2021-08-07 00:18:27 +00:00
import ThreadTree from '../thread_tree/thread_tree.vue'
const debug = console.log
const sortById = (a, b) => {
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-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)
)
} 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
}
const conversation = {
2017-04-12 16:07:55 +00:00
data () {
return {
2019-03-11 20:24:37 +00:00
highlight: null,
expanded: false
}
},
props: [
2019-09-03 17:19:14 +00:00
'statusId',
2019-03-25 14:50:09 +00:00
'collapsable',
'isPage',
'pinnedStatusIdsObject',
'inProfile',
2020-09-29 10:18:37 +00:00
'profileUserId',
'virtualHidden'
],
created () {
if (this.isPage) {
this.fetchConversation()
}
},
computed: {
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
}
},
status () {
2019-09-03 17:19:14 +00:00
return this.$store.state.statuses.allStatusesObject[this.statusId]
},
2019-09-03 17:19:14 +00:00
originalStatusId () {
if (this.status.retweeted_status) {
return this.status.retweeted_status.id
} else {
2019-09-03 17:19:14 +00:00
return this.statusId
}
},
conversationId () {
2019-09-03 17:19:14 +00:00
return this.getConversationId(this.statusId)
},
conversation () {
if (!this.status) {
return []
}
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 20:09:40 +00:00
return sortAndFilterConversation(conversation, this.status)
2017-07-29 16:53:49 +00:00
},
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)
.sort((a, b) => reverseLookupTable[a] - reverseLookupTable[b])
a.topLevel = a.topLevel.filter(k => a.forest[id].contains(k))
return a
}, {
forest: {},
topLevel: this.conversation.map(s => s.id)
})
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
}, walk(forest, forest[child], depth + 1, processed)].reduce((a, b) => a.concat(b), [])
}).reduce((a, b) => a.concat(b), [])
const linearized = walk(threads.forest, threads.topLevel)
return linearized
},
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)
debug("toplevel =", topLevel)
return topLevel
},
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 }) => {
/* 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 } : {}
}
},
components: {
2021-08-07 00:18:27 +00:00
Status,
ThreadTree
},
watch: {
2019-09-03 17:19:14 +00:00
statusId (newVal, oldVal) {
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)
} 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
}
},
methods: {
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 }) => {
this.$store.dispatch('addNewStatuses', { statuses: ancestors })
this.$store.dispatch('addNewStatuses', { statuses: descendants })
2019-09-03 17:19:14 +00:00
this.setHighlight(this.originalStatusId)
})
} 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()
})
}
2017-03-05 15:31:01 +00:00
},
getReplies (id) {
2017-07-29 16:53:49 +00:00
return this.replies[id] || []
},
focused (id) {
2019-09-03 17:19:14 +00:00
return (this.isExpanded) && id === this.statusId
},
2017-04-12 16:07:55 +00:00
setHighlight (id) {
if (!id) return
this.highlight = id
this.$store.dispatch('fetchFavsAndRepeats', id)
this.$store.dispatch('fetchEmojiReactionsBy', id)
2019-03-11 14:52:28 +00:00
},
2019-03-11 20:24:37 +00:00
getHighlight () {
return this.isExpanded ? this.highlight : null
2019-03-11 20:24:37 +00:00
},
toggleExpanded () {
this.expanded = !this.expanded
},
getConversationId (statusId) {
const status = this.$store.state.statuses.allStatusesObject[statusId]
return get(status, 'retweeted_status.statusnet_conversation_id', get(status, 'statusnet_conversation_id'))
}
}
}
export default conversation