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

70 lines
1.8 KiB
JavaScript
Raw Normal View History

import { filter, sortBy } from 'lodash'
2016-11-28 17:01:23 +00:00
import { statusType } from '../../modules/statuses.js'
import Status from '../status/status.vue'
2016-11-28 17:01:23 +00:00
const sortAndFilterConversation = (conversation) => {
conversation = filter(conversation, (status) => statusType(status) !== 'retweet')
return sortBy(conversation, 'id')
}
const conversation = {
data() {
return {
highlight: this.statusoid.id
}
},
props: [
'statusoid',
'collapsable'
],
computed: {
status () { return this.statusoid },
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 })
2016-11-28 17:01:23 +00:00
return sortAndFilterConversation(conversation)
}
},
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 }))
} 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
},
2017-03-05 19:36:22 +00:00
focused: function (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)
}
},
setHighlight(id) {
this.highlight = id
}
}
}
export default conversation