2019-01-25 13:20:42 +00:00
|
|
|
import { reduce, filter } from 'lodash'
|
2016-11-24 17:17:09 +00:00
|
|
|
import Status from '../status/status.vue'
|
|
|
|
|
2019-01-24 21:49:37 +00:00
|
|
|
const sortById = (a, b) => {
|
2019-01-25 13:20:42 +00:00
|
|
|
const seqA = Number(a.id)
|
|
|
|
const seqB = Number(b.id)
|
2019-01-24 22:39:19 +00:00
|
|
|
const isSeqA = !Number.isNaN(seqA)
|
|
|
|
const isSeqB = !Number.isNaN(seqB)
|
2019-01-24 21:49:37 +00:00
|
|
|
if (isSeqA && isSeqB) {
|
2019-01-25 14:55:56 +00:00
|
|
|
return seqA < seqB ? -1 : 1
|
2019-01-24 21:49:37 +00:00
|
|
|
} else if (isSeqA && !isSeqB) {
|
|
|
|
return -1
|
2019-02-13 22:11:11 +00:00
|
|
|
} else if (!isSeqA && isSeqB) {
|
|
|
|
return 1
|
2019-01-24 21:49:37 +00:00
|
|
|
} else {
|
2019-01-25 14:55:56 +00:00
|
|
|
return a.id < b.id ? -1 : 1
|
2019-01-24 21:49:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-28 17:01:23 +00:00
|
|
|
const sortAndFilterConversation = (conversation) => {
|
2019-01-13 19:07:55 +00:00
|
|
|
conversation = filter(conversation, (status) => status.type !== 'retweet')
|
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-09 16:33:49 +00:00
|
|
|
highlight: null,
|
|
|
|
relevantIds: []
|
2017-04-12 15:25:19 +00:00
|
|
|
}
|
|
|
|
},
|
2017-02-04 12:52:26 +00:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
|
|
|
'collapsable'
|
|
|
|
],
|
2016-11-24 17:17:09 +00:00
|
|
|
computed: {
|
2019-01-13 19:07:55 +00:00
|
|
|
status () {
|
|
|
|
return this.statusoid
|
|
|
|
},
|
2019-02-12 15:35:54 +00:00
|
|
|
statusId () {
|
2019-02-12 10:10:27 +00:00
|
|
|
if (this.statusoid.retweeted_status) {
|
|
|
|
return this.statusoid.retweeted_status.id
|
|
|
|
} else {
|
|
|
|
return this.statusoid.id
|
|
|
|
}
|
|
|
|
},
|
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-09 16:33:49 +00:00
|
|
|
const statusesObject = this.$store.state.statuses.allStatusesObject
|
|
|
|
const conversation = this.relevantIds.reduce((acc, id) => {
|
|
|
|
acc.push(statusesObject[id])
|
|
|
|
return acc
|
|
|
|
}, [])
|
2017-06-05 10:15:30 +00:00
|
|
|
return sortAndFilterConversation(conversation)
|
2017-07-29 16:53:49 +00:00
|
|
|
},
|
|
|
|
replies () {
|
2017-07-29 17:10:09 +00:00
|
|
|
let i = 1
|
2017-07-29 16:53:49 +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
|
|
|
|
}, {})
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
Status
|
|
|
|
},
|
|
|
|
created () {
|
|
|
|
this.fetchConversation()
|
|
|
|
},
|
2016-11-28 12:36:19 +00:00
|
|
|
watch: {
|
|
|
|
'$route': 'fetchConversation'
|
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
methods: {
|
|
|
|
fetchConversation () {
|
|
|
|
if (this.status) {
|
2019-03-09 16:33:49 +00:00
|
|
|
const conversationId = this.status.id
|
2016-11-26 17:57:08 +00:00
|
|
|
this.$store.state.api.backendInteractor.fetchConversation({id: conversationId})
|
2019-03-09 16:33:49 +00:00
|
|
|
.then((statuses) => {
|
|
|
|
this.$store.dispatch('addNewStatuses', { statuses })
|
|
|
|
statuses.forEach(status => this.relevantIds.push(status.id))
|
|
|
|
})
|
2019-02-12 15:35:54 +00:00
|
|
|
.then(() => this.setHighlight(this.statusId))
|
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-02-12 15:35:54 +00:00
|
|
|
return id === this.statusId
|
2017-04-12 15:25:19 +00:00
|
|
|
},
|
2017-04-12 16:07:55 +00:00
|
|
|
setHighlight (id) {
|
2019-01-17 20:08:44 +00:00
|
|
|
this.highlight = id
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default conversation
|