This commit is contained in:
smilerz
2022-01-18 20:51:38 -06:00
committed by Chris Scoggins
parent a6a136c892
commit 0ac369423c
2 changed files with 9 additions and 1 deletions

View File

@ -58,7 +58,10 @@
</div> </div>
<div v-if="ui.enable_expert" class="row justify-content-end small"> <div v-if="ui.enable_expert" class="row justify-content-end small">
<div class="col-auto"> <div class="col-auto">
<b-button class="my-0" variant="link" size="sm">{{ $t("expert_mode") }}</b-button> <b-button class="my-0" variant="link" size="sm" @click="search.expert_mode = !search.expert_mode">
<div v-if="!expertMode">{{ $t("expert_mode") }}</div>
<div v-if="expertMode">{{ $t("simple_mode") }}</div>
</b-button>
</div> </div>
</div> </div>
@ -299,6 +302,7 @@
</span> </span>
</div> </div>
</div> </div>
<div v-if="expertMode">i'm an expert!</div>
<div class="row"> <div class="row">
<div class="col col-md-12"> <div class="col col-md-12">
@ -417,6 +421,9 @@ export default {
{ id: 0, label: this.$t("Unrated") + ratingCount(this.facets.Ratings?.["0.0"] ?? 0) }, { id: 0, label: this.$t("Unrated") + ratingCount(this.facets.Ratings?.["0.0"] ?? 0) },
] ]
}, },
expertMode: function () {
return this.ui.enable_expert && this.search.expert_mode
},
}, },
mounted() { mounted() {
this.$nextTick(function () { this.$nextTick(function () {

View File

@ -299,6 +299,7 @@
"view_recipe": "View Recipe", "view_recipe": "View Recipe",
"enable_expert": "Enable Export Mode", "enable_expert": "Enable Export Mode",
"expert_mode": "Expert Mode", "expert_mode": "Expert Mode",
"simple_mode": "Simple Mode",
"advanced": "Advanced", "advanced": "Advanced",
"fields": "Fields", "fields": "Fields",
"show_keywords": "Show Keywords", "show_keywords": "Show Keywords",