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

100 lines
2.5 KiB
JavaScript
Raw Normal View History

import { find, filter, sortBy, throttle } 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 getReplies = function (id) {
let res = []
id = Number(id)
let i
for (i = 0; i < this.conversation.length; i++) {
if (Number(this.conversation[i].in_reply_to_status_id) === id) {
res.push({
name: `#${i}`,
id: this.conversation[i].id
})
}
}
return res
}
const conversation = {
2017-04-12 16:07:55 +00:00
data () {
return {
highlight: null,
preview: {
x: 0,
y: 0,
2017-06-07 15:13:24 +00:00
status: null
}
}
},
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 })
2017-06-05 10:15:30 +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 }))
.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: throttle(getReplies, 1000),
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 = Number(id)
},
setPreview (id, x, y) {
if (id) {
this.preview.x = x
this.preview.y = y
2017-06-07 16:15:15 +00:00
this.preview.status = find(this.conversation, { id: id })
} else {
this.preview.status = null
}
}
}
}
export default conversation