2019-04-11 16:46:06 +00:00
|
|
|
import { reduce, filter, findIndex, clone } from 'lodash'
|
2016-11-24 17:17:09 +00:00
|
|
|
import Status from '../status/status.vue'
|
|
|
|
|
2019-01-24 21:49:37 +00:00
|
|
|
const sortById = (a, b) => {
|
2019-03-27 20:00:54 +00:00
|
|
|
const idA = a.type === 'retweet' ? a.retweeted_status.id : a.id
|
|
|
|
const idB = b.type === 'retweet' ? b.retweeted_status.id : b.id
|
2019-03-28 14:02:33 +00:00
|
|
|
const seqA = Number(idA)
|
|
|
|
const seqB = Number(idB)
|
|
|
|
const isSeqA = !Number.isNaN(seqA)
|
|
|
|
const isSeqB = !Number.isNaN(seqB)
|
|
|
|
if (isSeqA && isSeqB) {
|
|
|
|
return seqA < seqB ? -1 : 1
|
|
|
|
} else if (isSeqA && !isSeqB) {
|
|
|
|
return -1
|
|
|
|
} else if (!isSeqA && isSeqB) {
|
|
|
|
return 1
|
|
|
|
} else {
|
|
|
|
return idA < idB ? -1 : 1
|
|
|
|
}
|
2019-01-24 21:49:37 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 20:09:40 +00:00
|
|
|
const sortAndFilterConversation = (conversation, statusoid) => {
|
|
|
|
if (statusoid.type === 'retweet') {
|
|
|
|
conversation = filter(
|
|
|
|
conversation,
|
|
|
|
(status) => (status.type === 'retweet' || status.id !== statusoid.retweeted_status.id)
|
|
|
|
)
|
2019-03-27 20:00:54 +00:00
|
|
|
} else {
|
|
|
|
conversation = filter(conversation, (status) => status.type !== 'retweet')
|
2019-03-25 20:09:40 +00:00
|
|
|
}
|
2019-01-25 13:20:42 +00:00
|
|
|
return conversation.filter(_ => _).sort(sortById)
|
2016-11-28 17:01:23 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 17:17:09 +00:00
|
|
|
const conversation = {
|
2017-04-12 16:07:55 +00:00
|
|
|
data () {
|
2017-04-12 15:25:19 +00:00
|
|
|
return {
|
2019-03-11 20:24:37 +00:00
|
|
|
highlight: null,
|
2019-04-09 15:08:39 +00:00
|
|
|
expanded: false
|
2017-04-12 15:25:19 +00:00
|
|
|
}
|
|
|
|
},
|
2017-02-04 12:52:26 +00:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
2019-03-25 14:50:09 +00:00
|
|
|
'collapsable',
|
2019-04-30 15:06:22 +00:00
|
|
|
'isPage',
|
|
|
|
'showPinned'
|
2017-02-04 12:52:26 +00:00
|
|
|
],
|
2019-03-25 18:55:58 +00:00
|
|
|
created () {
|
|
|
|
if (this.isPage) {
|
|
|
|
this.fetchConversation()
|
|
|
|
}
|
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
computed: {
|
2019-01-13 19:07:55 +00:00
|
|
|
status () {
|
|
|
|
return this.statusoid
|
|
|
|
},
|
2019-02-12 15:35:54 +00:00
|
|
|
statusId () {
|
2019-02-12 10:10:27 +00:00
|
|
|
if (this.statusoid.retweeted_status) {
|
|
|
|
return this.statusoid.retweeted_status.id
|
|
|
|
} else {
|
|
|
|
return this.statusoid.id
|
|
|
|
}
|
|
|
|
},
|
2019-04-09 15:08:39 +00:00
|
|
|
conversationId () {
|
|
|
|
if (this.statusoid.retweeted_status) {
|
|
|
|
return this.statusoid.retweeted_status.statusnet_conversation_id
|
|
|
|
} else {
|
|
|
|
return this.statusoid.statusnet_conversation_id
|
|
|
|
}
|
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
conversation () {
|
|
|
|
if (!this.status) {
|
2019-01-13 19:07:55 +00:00
|
|
|
return []
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 20:09:40 +00:00
|
|
|
if (!this.isExpanded) {
|
2019-03-11 20:24:37 +00:00
|
|
|
return [this.status]
|
|
|
|
}
|
|
|
|
|
2019-04-11 16:46:06 +00:00
|
|
|
const conversation = clone(this.$store.state.statuses.conversationsObject[this.conversationId])
|
2019-03-11 20:24:37 +00:00
|
|
|
const statusIndex = findIndex(conversation, { id: this.statusId })
|
|
|
|
if (statusIndex !== -1) {
|
|
|
|
conversation[statusIndex] = this.status
|
|
|
|
}
|
2019-03-25 18:47:54 +00:00
|
|
|
|
2019-03-25 20:09:40 +00:00
|
|
|
return sortAndFilterConversation(conversation, this.status)
|
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}) => {
|
2019-01-17 20:08:44 +00:00
|
|
|
/* 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
|
|
|
|
}, {})
|
2019-03-25 14:50:09 +00:00
|
|
|
},
|
|
|
|
isExpanded () {
|
|
|
|
return this.expanded || this.isPage
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
Status
|
|
|
|
},
|
2016-11-28 12:36:19 +00:00
|
|
|
watch: {
|
2019-03-11 20:24:37 +00:00
|
|
|
'$route': 'fetchConversation',
|
|
|
|
expanded (value) {
|
|
|
|
if (value) {
|
|
|
|
this.fetchConversation()
|
|
|
|
}
|
|
|
|
}
|
2016-11-28 12:36:19 +00:00
|
|
|
},
|
2016-11-24 17:17:09 +00:00
|
|
|
methods: {
|
|
|
|
fetchConversation () {
|
|
|
|
if (this.status) {
|
2019-03-25 18:11:06 +00:00
|
|
|
this.$store.state.api.backendInteractor.fetchConversation({id: this.status.id})
|
2019-03-21 21:45:18 +00:00
|
|
|
.then(({ancestors, descendants}) => {
|
|
|
|
this.$store.dispatch('addNewStatuses', { statuses: ancestors })
|
|
|
|
this.$store.dispatch('addNewStatuses', { statuses: descendants })
|
2019-03-09 16:33:49 +00:00
|
|
|
})
|
2019-02-12 15:35:54 +00:00
|
|
|
.then(() => this.setHighlight(this.statusId))
|
2016-11-24 17:17:09 +00:00
|
|
|
} else {
|
|
|
|
const id = this.$route.params.id
|
2016-11-26 17:57:08 +00:00
|
|
|
this.$store.state.api.backendInteractor.fetchStatus({id})
|
2016-11-24 17:17:09 +00:00
|
|
|
.then((status) => this.$store.dispatch('addNewStatuses', { statuses: [status] }))
|
|
|
|
.then(() => this.fetchConversation())
|
|
|
|
}
|
2017-03-05 15:31:01 +00:00
|
|
|
},
|
2017-07-28 13:52:05 +00:00
|
|
|
getReplies (id) {
|
2017-07-29 16:53:49 +00:00
|
|
|
return this.replies[id] || []
|
2017-07-28 13:52:05 +00:00
|
|
|
},
|
2017-06-04 20:58:15 +00:00
|
|
|
focused (id) {
|
2019-03-25 20:09:40 +00:00
|
|
|
return (this.isExpanded) && id === this.status.id
|
2017-04-12 15:25:19 +00:00
|
|
|
},
|
2017-04-12 16:07:55 +00:00
|
|
|
setHighlight (id) {
|
2019-06-18 16:31:20 +00:00
|
|
|
if (!id) return
|
2019-01-17 20:08:44 +00:00
|
|
|
this.highlight = id
|
2019-04-09 15:45:33 +00:00
|
|
|
this.$store.dispatch('fetchFavsAndRepeats', id)
|
2019-03-11 14:52:28 +00:00
|
|
|
},
|
2019-03-11 20:24:37 +00:00
|
|
|
getHighlight () {
|
2019-03-25 18:55:58 +00:00
|
|
|
return this.isExpanded ? this.highlight : null
|
2019-03-11 20:24:37 +00:00
|
|
|
},
|
|
|
|
toggleExpanded () {
|
|
|
|
this.expanded = !this.expanded
|
2019-03-25 20:09:40 +00:00
|
|
|
if (!this.expanded) {
|
|
|
|
this.setHighlight(null)
|
|
|
|
}
|
2016-11-24 17:17:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default conversation
|