Skip to content
Snippets Groups Projects
Commit 9af18e01 authored by lain's avatar lain
Browse files

Re-use conversation property.

parent 64a7db1d
No related branches found
No related tags found
No related merge requests found
......@@ -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
})
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment