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

157 lines
4.0 KiB
JavaScript
Raw Normal View History

2019-08-15 17:16:55 +00:00
import { reduce, filter, findIndex, clone } from 'lodash'
import Status from '../status/status.vue'
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: [
'statusoid',
2019-03-25 14:50:09 +00:00
'collapsable',
'isPage',
2019-08-15 17:16:55 +00:00
'pinnedStatusIdsObject'
],
created () {
if (this.isPage) {
this.fetchConversation()
}
},
computed: {
status () {
return this.statusoid
},
2019-02-12 15:35:54 +00:00
statusId () {
if (this.statusoid.retweeted_status) {
return this.statusoid.retweeted_status.id
} else {
return this.statusoid.id
}
},
conversationId () {
if (this.statusoid.retweeted_status) {
return this.statusoid.retweeted_status.statusnet_conversation_id
} else {
return this.statusoid.statusnet_conversation_id
}
},
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-03-11 20:24:37 +00:00
const statusIndex = findIndex(conversation, { id: this.statusId })
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
},
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 () {
return this.expanded || this.isPage
}
},
components: {
Status
},
watch: {
2019-08-23 17:49:39 +00:00
status: 'fetchConversation',
2019-03-11 20:24:37 +00:00
expanded (value) {
if (value) {
this.fetchConversation()
}
}
},
methods: {
fetchConversation () {
if (this.status) {
2019-07-05 07:02:14 +00:00
this.$store.state.api.backendInteractor.fetchConversation({ id: this.status.id })
.then(({ ancestors, descendants }) => {
this.$store.dispatch('addNewStatuses', { statuses: ancestors })
this.$store.dispatch('addNewStatuses', { statuses: descendants })
})
2019-02-12 15:35:54 +00:00
.then(() => this.setHighlight(this.statusId))
} else {
const id = this.$route.params.id
2019-07-05 07:02:14 +00:00
this.$store.state.api.backendInteractor.fetchStatus({ id })
.then((status) => this.$store.dispatch('addNewStatuses', { statuses: [status] }))
.then(() => 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-03-25 20:09:40 +00:00
return (this.isExpanded) && id === this.status.id
},
2017-04-12 16:07:55 +00:00
setHighlight (id) {
if (!id) return
this.highlight = id
this.$store.dispatch('fetchFavsAndRepeats', 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
}
}
}
export default conversation