perf: write getters for accessible filtered cookies values
All checks were successful
repod / xml (push) Successful in 1m36s
repod / php (push) Successful in 59s
repod / nodejs (push) Successful in 1m34s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-09-02 10:51:48 +02:00
parent 437c7868dd
commit 7b7ceef503
7 changed files with 28 additions and 22 deletions

View File

@ -19,7 +19,7 @@
</template>
<template #actions>
<NcActionButton
v-if="!subs.includes(feed.link)"
v-if="!getSubscriptions.includes(feed.link)"
:aria-label="t('repod', 'Subscribe')"
:name="t('repod', 'Subscribe')"
:title="t('repod', 'Subscribe')"
@ -67,7 +67,7 @@ export default {
loading: false,
}),
computed: {
...mapState(useSubscriptions, ['subs']),
...mapState(useSubscriptions, ['getSubscriptions']),
},
watch: {
value() {

View File

@ -23,7 +23,7 @@
<SafeHtml :source="description" />
</div>
<NcAppNavigationNew
v-if="!subs.includes(url)"
v-if="!getSubscriptions.includes(url)"
:text="t('repod', 'Subscribe')"
@click="addSubscription">
<template #icon>
@ -79,7 +79,7 @@ export default {
},
},
computed: {
...mapState(useSubscriptions, ['subs']),
...mapState(useSubscriptions, ['getSubscriptions']),
url() {
return decodeUrl(this.$route.params.url)
},

View File

@ -53,9 +53,9 @@ export default {
loading: true,
}),
computed: {
...mapState(useSubscriptions, ['favs']),
...mapState(useSubscriptions, ['getFavorites']),
currentFavoriteData() {
return this.favs.find((fav) => fav.url === this.url)
return this.getFavorites.find((fav) => fav.url === this.url)
},
},
async mounted() {

View File

@ -75,9 +75,9 @@ export default {
feed: null,
}),
computed: {
...mapState(useSubscriptions, ['favs']),
...mapState(useSubscriptions, ['getFavorites']),
isFavorite() {
return this.favs.map((fav) => fav.url).includes(this.url)
return this.getFavorites.map((fav) => fav.url).includes(this.url)
},
},
async mounted() {
@ -131,7 +131,7 @@ export default {
},
switchFavorite(value) {
if (value) {
if (this.favs.length >= 10) {
if (this.getFavorites.length >= 10) {
showError(t('repod', 'You can only have 10 favorites'))
return
}

View File

@ -12,15 +12,13 @@
<Loading v-if="loading" />
<NcAppNavigationList v-if="!loading">
<Subscription
v-for="url of favs
.sort((fav) => fav.lastPub)
.map((fav) => fav.url)
.filter((url) => subs.includes(url))"
v-for="url of getFavorites.map((fav) => fav.url)"
:key="url"
:url="url" />
<Subscription
v-for="url of subs.filter(
(sub) => !favs.map((fav) => fav.url).includes(sub),
v-for="url of getSubscriptions.filter(
(sub) =>
!getFavorites.map((fav) => fav.url).includes(sub),
)"
:key="url"
:url="url" />
@ -64,7 +62,7 @@ export default {
loading: true,
}),
computed: {
...mapState(useSubscriptions, ['subs', 'favs']),
...mapState(useSubscriptions, ['getSubscriptions', 'getFavorites']),
},
async mounted() {
try {

View File

@ -8,6 +8,16 @@ export const useSubscriptions = defineStore('subscriptions', {
subs: [],
favs: [],
}),
getters: {
getSubscriptions: (state) => {
return state.subs
},
getFavorites: (state) => {
return state.favs
.filter((fav) => state.subs.includes(fav.url))
.sort((fav) => fav.lastPub)
},
},
actions: {
async fetch() {
const metrics = await axios.get(

View File

@ -1,7 +1,7 @@
<template>
<AppContent>
<EmptyContent
v-if="!favs.length"
v-if="!getFavorites.length"
class="empty"
:description="
t('repod', 'Pin some subscriptions to see their latest updates')
@ -11,10 +11,8 @@
<StarOffIcon :size="20" />
</template>
</EmptyContent>
<ul v-if="favs.length">
<li
v-for="url in favs.sort((fav) => fav.lastPub).map((fav) => fav.url)"
:key="url">
<ul v-if="getFavorites.length">
<li v-for="url in getFavorites.map((fav) => fav.url)" :key="url">
<Favorites :url="url" />
</li>
</ul>
@ -38,7 +36,7 @@ export default {
StarOffIcon,
},
computed: {
...mapState(useSubscriptions, ['favs']),
...mapState(useSubscriptions, ['getFavorites']),
},
}
</script>