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