-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathSubscriptionsPosts.vue
More file actions
294 lines (236 loc) · 8.38 KB
/
SubscriptionsPosts.vue
File metadata and controls
294 lines (236 loc) · 8.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<template>
<SubscriptionsTabUi
:is-loading="isLoading"
:video-list="postList"
:error-channels="errorChannels"
:attempted-fetch="attemptedFetch"
:is-community="true"
:initial-data-limit="20"
:last-refresh-timestamp="lastPostsRefreshTimestamp"
:title="t('Global.Posts')"
@refresh="loadPostsForSubscriptionsFromRemote"
/>
</template>
<script setup>
import { computed, onMounted, ref, shallowRef, watch } from 'vue'
import { useI18n } from '../composables/use-i18n-polyfill'
import SubscriptionsTabUi from './SubscriptionsTabUi/SubscriptionsTabUi.vue'
import store from '../store/index'
import { copyToClipboard, getRelativeTimeFromDate, showToast } from '../helpers/utils'
import { getLocalChannelCommunity } from '../helpers/api/local'
import { invidiousGetCommunityPosts } from '../helpers/api/invidious'
const { t } = useI18n()
const isLoading = ref(true)
const postList = shallowRef([])
const errorChannels = ref([])
const attemptedFetch = ref(false)
/** @type {import('vue').Ref<number | null>} */
const lastRemoteRefreshSuccessTimestamp = ref(null)
let alreadyLoadedRemotely = false
/** @type {import('vue').ComputedRef<'local' | 'invidious'>} */
const backendPreference = computed(() => store.getters.getBackendPreference)
/** @type {import('vue').ComputedRef<'local' | 'invidious'>} */
const backendFallback = computed(() => store.getters.getBackendFallback)
/** @type {import('vue').ComputedRef<boolean>} */
const subscriptionCacheReady = computed(() => store.getters.getSubscriptionCacheReady)
/** @type {import('vue').ComputedRef<boolean>} */
const fetchSubscriptionsAutomatically = computed(() => store.getters.getFetchSubscriptionsAutomatically)
const activeSubscriptionList = computed(() => store.getters.getActiveProfile.subscriptions)
const cacheEntriesForAllActiveProfileChannels = computed(() => {
const postsCache = store.getters.getPostsCache
const entries = []
activeSubscriptionList.value.forEach((channel) => {
const cacheEntry = postsCache[channel.id]
if (cacheEntry != null) {
entries.push(cacheEntry)
}
})
return entries
})
const postCacheForAllActiveProfileChannelsPresent = computed(() => {
if (
cacheEntriesForAllActiveProfileChannels.value.length === 0 ||
cacheEntriesForAllActiveProfileChannels.value.length < activeSubscriptionList.value.length
) {
return false
}
return cacheEntriesForAllActiveProfileChannels.value.every((cacheEntry) => {
return cacheEntry.posts != null
})
})
const lastPostsRefreshTimestamp = computed(() => {
// Cache is not ready when data is just loaded from remote
if (lastRemoteRefreshSuccessTimestamp.value) {
return getRelativeTimeFromDate(lastRemoteRefreshSuccessTimestamp.value, true)
}
if (
!postCacheForAllActiveProfileChannelsPresent.value ||
cacheEntriesForAllActiveProfileChannels.value.length === 0
) {
return ''
}
let minTimestamp = null
cacheEntriesForAllActiveProfileChannels.value.forEach((cacheEntry) => {
if (!minTimestamp || cacheEntry.timestamp.getTime() < minTimestamp.getTime()) {
minTimestamp = cacheEntry.timestamp
}
})
return getRelativeTimeFromDate(minTimestamp.getTime(), true)
})
watch(activeSubscriptionList, () => {
lastRemoteRefreshSuccessTimestamp.value = null
isLoading.value = true
loadPostsFromCacheSometimes()
}, { deep: true })
if (!subscriptionCacheReady.value) {
watch(subscriptionCacheReady, () => {
if (!alreadyLoadedRemotely) {
loadPostsFromCacheSometimes()
}
})
}
onMounted(() => {
loadPostsFromRemoteFirstPerWindowSometimes()
})
function loadPostsFromRemoteFirstPerWindowSometimes() {
if (
!fetchSubscriptionsAutomatically.value ||
// Only auto fetch once per window
store.getters.getSubscriptionForPostsFirstAutoFetchRun
) {
loadPostsFromCacheSometimes()
return
}
alreadyLoadedRemotely = true
loadPostsForSubscriptionsFromRemote()
store.commit('setSubscriptionForPostsFirstAutoFetchRun')
}
function loadPostsFromCacheSometimes() {
// Can only load reliably when cache ready
if (!subscriptionCacheReady.value) { return }
// This method is called on view visible
if (postCacheForAllActiveProfileChannelsPresent.value) {
loadPostsFromCacheForAllActiveProfileChannels()
return
}
if (fetchSubscriptionsAutomatically.value) {
// `isLoading.value = false` is called inside `loadPostsForSubscriptionsFromRemote` when needed
loadPostsForSubscriptionsFromRemote()
return
}
// Auto fetch disabled, not enough cache for profile = show nothing
postList.value = []
attemptedFetch.value = false
isLoading.value = false
}
/** @type {import('vue').ComputedRef<string[]>} */
const forbiddenTitles = computed(() => {
return JSON.parse(store.getters.getForbiddenTitles.toLowerCase())
})
function loadPostsFromCacheForAllActiveProfileChannels() {
const postList_ = cacheEntriesForAllActiveProfileChannels.value.flatMap((cacheEntry) => {
return cacheEntry.posts
})
postList_.sort((a, b) => {
return b.publishedTime - a.publishedTime
})
postList.value = postList_.filter(post => !forbiddenTitles.value.some(text => post.author.toLowerCase().includes(text)))
isLoading.value = false
}
async function loadPostsForSubscriptionsFromRemote() {
if (activeSubscriptionList.value.length === 0) {
isLoading.value = false
postList.value = []
return
}
const channelsToLoadFromRemote = activeSubscriptionList.value
let channelCount = 0
isLoading.value = true
store.commit('setShowProgressBar', true)
store.commit('setProgressBarPercentage', 0)
attemptedFetch.value = true
errorChannels.value = []
const subscriptionUpdates = []
const postListFromRemote = (await Promise.all(channelsToLoadFromRemote.map(async (channel) => {
let posts
if (!process.env.SUPPORTS_LOCAL_API || backendPreference.value === 'invidious') {
posts = await getChannelPostsInvidious(channel)
} else {
posts = await getChannelPostsLocal(channel)
}
channelCount++
const percentageComplete = (channelCount / channelsToLoadFromRemote.length) * 100
store.commit('setProgressBarPercentage', percentageComplete)
store.dispatch('updateSubscriptionPostsCacheByChannel', {
channelId: channel.id,
posts
})
if (posts.length > 0) {
const post = posts.find(post => post.authorId === channel.id)
if (post) {
const name = post.author
let thumbnailUrl = post.authorThumbnails?.[0]?.url
if (name || thumbnailUrl) {
if (thumbnailUrl?.startsWith('//')) {
thumbnailUrl = 'https:' + thumbnailUrl
}
subscriptionUpdates.push({
channelId: channel.id,
channelName: name,
channelThumbnailUrl: thumbnailUrl
})
}
}
}
posts = posts.filter(post => !forbiddenTitles.value.some(text => post.author.toLowerCase().includes(text)))
return posts
}))).flat()
postListFromRemote.sort((a, b) => {
return b.publishedTime - a.publishedTime
})
postList.value = postListFromRemote
isLoading.value = false
store.commit('setShowProgressBar', false)
lastRemoteRefreshSuccessTimestamp.value = Date.now()
store.dispatch('batchUpdateSubscriptionDetails', subscriptionUpdates)
}
async function getChannelPostsLocal(channel) {
try {
const entries = await getLocalChannelCommunity(channel.id)
if (entries === null) {
errorChannels.value.push(channel)
return []
}
return entries
} catch (err) {
console.error(err)
const errorMessage = t('Local API Error (Click to copy)')
showToast(`${errorMessage}: ${err}`, 10000, () => {
copyToClipboard(err)
})
if (backendPreference.value === 'local' && backendFallback.value) {
showToast(t('Falling back to Invidious API'))
return await getChannelPostsInvidious(channel)
}
return []
}
}
async function getChannelPostsInvidious(channel) {
try {
const result = await invidiousGetCommunityPosts(channel.id)
return result.posts
} catch (err) {
console.error(err)
const errorMessage = t('Invidious API Error (Click to copy)')
showToast(`${errorMessage}: ${err}`, 10000, () => {
copyToClipboard(err)
})
if (process.env.SUPPORTS_LOCAL_API && backendPreference.value === 'invidious' && backendFallback.value) {
showToast(t('Falling back to Local API'))
return await getChannelPostsLocal(channel)
} else {
return []
}
}
}
</script>