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

Throttle getReplies so it isn't called that often.

parent da3b604d
No related branches found
No related tags found
No related merge requests found
import { find, filter, sortBy } from 'lodash'
import { find, filter, sortBy, throttle } from 'lodash'
import { statusType } from '../../modules/statuses.js'
import Status from '../status/status.vue'
......@@ -7,6 +7,21 @@ const sortAndFilterConversation = (conversation) => {
return sortBy(conversation, 'id')
}
const getReplies = function (id) {
let res = []
id = Number(id)
let i
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.conversation[i].id
})
}
}
return res
}
const conversation = {
data () {
return {
......@@ -58,20 +73,7 @@ const conversation = {
.then(() => this.fetchConversation())
}
},
getReplies (id) {
let res = []
id = Number(id)
let i
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.conversation[i].id
})
}
}
return res
},
getReplies: throttle(getReplies, 1000),
focused (id) {
if (this.statusoid.retweeted_status) {
return (id === this.statusoid.retweeted_status.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