forked from AkkomaGang/akkoma-fe
Re-use conversation property.
This commit is contained in:
parent
64a7db1d8b
commit
9af18e014d
1 changed files with 5 additions and 7 deletions
|
@ -10,8 +10,7 @@ const sortAndFilterConversation = (conversation) => {
|
|||
const conversation = {
|
||||
data () {
|
||||
return {
|
||||
highlight: null,
|
||||
statuses: []
|
||||
highlight: null
|
||||
}
|
||||
},
|
||||
props: [
|
||||
|
@ -28,8 +27,7 @@ const conversation = {
|
|||
const conversationId = this.status.statusnet_conversation_id
|
||||
const statuses = this.$store.state.statuses.allStatuses
|
||||
const conversation = filter(statuses, { statusnet_conversation_id: conversationId })
|
||||
this.statuses = sortAndFilterConversation(conversation)
|
||||
return this.statuses
|
||||
return sortAndFilterConversation(conversation)
|
||||
}
|
||||
},
|
||||
components: {
|
||||
|
@ -59,11 +57,11 @@ const conversation = {
|
|||
let res = []
|
||||
id = Number(id)
|
||||
let i
|
||||
for (i = 0; i < this.statuses.length; i++) {
|
||||
if (Number(this.statuses[i].in_reply_to_status_id) === id) {
|
||||
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.statuses[i].id
|
||||
id: this.conversation[i].id
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue