From dfbf3aebde6cf024e6b6cd87d58af239cf3d63dc Mon Sep 17 00:00:00 2001 From: Rémy Raes Date: Thu, 8 Jun 2023 01:53:46 +0200 Subject: fix: Don't show deprecated mods (#382) * fix: don't show deprecated mods * feat: add setting to settings view * feat: display deprecated mod cards in red --- src-vue/src/views/mods/ThunderstoreModsView.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src-vue/src/views/mods') diff --git a/src-vue/src/views/mods/ThunderstoreModsView.vue b/src-vue/src/views/mods/ThunderstoreModsView.vue index 58a00367..538a895f 100644 --- a/src-vue/src/views/mods/ThunderstoreModsView.vue +++ b/src-vue/src/views/mods/ThunderstoreModsView.vue @@ -86,13 +86,16 @@ export default defineComponent({ mod.versions[0].description.toLowerCase().includes(this.searchValue) ); + // Filter out deprecated mods + const showDeprecated = !mod.is_deprecated || this.$store.state.search.showDeprecatedMods; + // Filter with categories (only if some categories are selected) const categoriesMatch: boolean = this.selectedCategories.length === 0 || mod.categories .filter((category: string) => this.selectedCategories.includes(category)) .length === this.selectedCategories.length; - return inputMatches && categoriesMatch; + return inputMatches && categoriesMatch && showDeprecated; }); }, modsList(): ThunderstoreMod[] { -- cgit v1.2.3