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