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

91 lines
2.3 KiB
JavaScript
Raw Normal View History

import { reduce, filter, sortBy } from 'lodash'
import Status from '../status/status.vue'
2016-11-28 17:01:23 +00:00
const sortAndFilterConversation = (conversation) => {
conversation = filter(conversation, (status) => status.type !== 'retweet')
2016-11-28 17:01:23 +00:00
return sortBy(conversation, 'id')
}
const conversation = {
2017-04-12 16:07:55 +00:00
data () {
return {
highlight: null
}
},
props: [
'statusoid',
'collapsable'
],
computed: {
status () {
return this.statusoid
},
conversation () {
if (!this.status) {
return []
}
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 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}) => {
/* 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
}, {})
}
},
components: {
Status
},
created () {
this.fetchConversation()
},
watch: {
'$route': 'fetchConversation'
},
methods: {
fetchConversation () {
if (this.status) {
const conversationId = this.status.statusnet_conversation_id
this.$store.state.api.backendInteractor.fetchConversation({id: conversationId})
.then((statuses) => this.$store.dispatch('addNewStatuses', { statuses }))
.then(() => this.setHighlight(this.statusoid.id))
} else {
const id = this.$route.params.id
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) {
2017-03-08 16:58:49 +00:00
if (this.statusoid.retweeted_status) {
return (id === this.statusoid.retweeted_status.id)
} else {
return (id === this.statusoid.id)
}
},
2017-04-12 16:07:55 +00:00
setHighlight (id) {
this.highlight = id
}
}
}
export default conversation