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

110 lines
2.7 KiB
JavaScript
Raw Normal View History

2019-01-25 13:20:42 +00:00
import { reduce, filter } from 'lodash'
import Status from '../status/status.vue'
const sortById = (a, b) => {
2019-01-25 13:20:42 +00:00
const seqA = Number(a.id)
const seqB = Number(b.id)
2019-01-24 22:39:19 +00:00
const isSeqA = !Number.isNaN(seqA)
const isSeqB = !Number.isNaN(seqB)
if (isSeqA && isSeqB) {
2019-01-25 14:55:56 +00:00
return seqA < seqB ? -1 : 1
} else if (isSeqA && !isSeqB) {
return -1
2019-02-13 22:11:11 +00:00
} else if (!isSeqA && isSeqB) {
return 1
} else {
2019-01-25 14:55:56 +00:00
return a.id < b.id ? -1 : 1
}
}
2016-11-28 17:01:23 +00:00
const sortAndFilterConversation = (conversation) => {
conversation = filter(conversation, (status) => status.type !== 'retweet')
2019-01-25 13:20:42 +00:00
return conversation.filter(_ => _).sort(sortById)
2016-11-28 17:01:23 +00:00
}
const conversation = {
2017-04-12 16:07:55 +00:00
data () {
return {
highlight: null
}
},
props: [
'statusoid',
'collapsable'
],
computed: {
status () {
return this.statusoid
},
2019-02-12 15:35:54 +00:00
statusId () {
if (this.statusoid.retweeted_status) {
return this.statusoid.retweeted_status.id
} else {
return this.statusoid.id
}
},
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 }))
2019-02-12 15:35:54 +00:00
.then(() => this.setHighlight(this.statusId))
} 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) {
2019-02-12 15:35:54 +00:00
return id === this.statusId
},
2017-04-12 16:07:55 +00:00
setHighlight (id) {
this.highlight = id
}
}
}
export default conversation