2017-11-14 01:33:54 +11:00
|
|
|
import { reduce, filter, sortBy } from 'lodash'
|
2016-11-29 04:01:23 +11:00
|
|
|
import { statusType } from '../../modules/statuses.js'
|
2016-11-25 04:17:09 +11:00
|
|
|
import Status from '../status/status.vue'
|
|
|
|
|
2016-11-29 04:01:23 +11:00
|
|
|
const sortAndFilterConversation = (conversation) => {
|
|
|
|
conversation = filter(conversation, (status) => statusType(status) !== 'retweet')
|
|
|
|
return sortBy(conversation, 'id')
|
|
|
|
}
|
|
|
|
|
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 {
|
2017-11-14 01:33:54 +11:00
|
|
|
highlight: null
|
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: {
|
2017-02-04 23:52:26 +11:00
|
|
|
status () { return this.statusoid },
|
2016-11-25 04:17:09 +11:00
|
|
|
conversation () {
|
|
|
|
if (!this.status) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
const conversationId = this.status.statusnet_conversation_id
|
|
|
|
const statuses = this.$store.state.statuses.allStatuses
|
|
|
|
const conversation = filter(statuses, { statusnet_conversation_id: conversationId })
|
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}) => {
|
|
|
|
const irid = Number(in_reply_to_status_id)
|
|
|
|
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) {
|
|
|
|
const conversationId = this.status.statusnet_conversation_id
|
2016-11-27 04:57:08 +11:00
|
|
|
this.$store.state.api.backendInteractor.fetchConversation({id: conversationId})
|
2016-11-25 04:17:09 +11:00
|
|
|
.then((statuses) => this.$store.dispatch('addNewStatuses', { statuses }))
|
2017-06-05 06:58:15 +10:00
|
|
|
.then(() => this.setHighlight(this.statusoid.id))
|
2016-11-25 04:17:09 +11:00
|
|
|
} else {
|
|
|
|
const id = this.$route.params.id
|
2016-11-27 04:57:08 +11:00
|
|
|
this.$store.state.api.backendInteractor.fetchStatus({id})
|
2016-11-25 04:17:09 +11:00
|
|
|
.then((status) => this.$store.dispatch('addNewStatuses', { statuses: [status] }))
|
|
|
|
.then(() => this.fetchConversation())
|
|
|
|
}
|
2017-03-06 02:31:01 +11:00
|
|
|
},
|
2017-07-28 23:52:05 +10:00
|
|
|
getReplies (id) {
|
|
|
|
id = Number(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) {
|
2017-03-09 03:58:49 +11:00
|
|
|
if (this.statusoid.retweeted_status) {
|
2017-03-07 02:21:11 +11:00
|
|
|
return (id === this.statusoid.retweeted_status.id)
|
|
|
|
} else {
|
|
|
|
return (id === this.statusoid.id)
|
|
|
|
}
|
2017-04-13 01:25:19 +10:00
|
|
|
},
|
2017-04-13 02:07:55 +10:00
|
|
|
setHighlight (id) {
|
|
|
|
this.highlight = Number(id)
|
2016-11-25 04:17:09 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default conversation
|