mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-09 10:13:42 +00:00
Merge pull request 'fix realtime updates in 'following' replies filter' (#285) from flisk/akkoma-fe:fix-realtime-reply-filter into develop
Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma-fe/pulls/285
This commit is contained in:
commit
6a9764951f
1 changed files with 14 additions and 4 deletions
|
@ -5,15 +5,25 @@ import { map } from 'lodash'
|
||||||
const retryTimeout = (multiplier) => 1000 * multiplier
|
const retryTimeout = (multiplier) => 1000 * multiplier
|
||||||
|
|
||||||
const isVisible = (store, message, visibility) => {
|
const isVisible = (store, message, visibility) => {
|
||||||
if (visibility === 'all') {
|
if (visibility == 'all') {
|
||||||
return true
|
return true
|
||||||
} else if (visibility === 'following') {
|
}
|
||||||
return store.getters.relationship(message.in_reply_to_user_id).following
|
|
||||||
} else if (visibility === 'self') {
|
if (visibility == 'following') {
|
||||||
|
if (message.in_reply_to_user_id === null) {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
return store.getters.relationship(message.in_reply_to_user_id).following
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (visibility == 'self') {
|
||||||
return message.in_reply_to_user_id === store.rootState.users.currentUser.id
|
return message.in_reply_to_user_id === store.rootState.users.currentUser.id
|
||||||
}
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
const api = {
|
const api = {
|
||||||
state: {
|
state: {
|
||||||
retryMultiplier: 1,
|
retryMultiplier: 1,
|
||||||
|
|
Loading…
Reference in a new issue