mirror of https://github.com/rancher/dashboard.git
125 lines
2.6 KiB
Vue
125 lines
2.6 KiB
Vue
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import Select from '@shell/components/form/Select.vue';
|
|
|
|
export default {
|
|
name: 'LocalSelector',
|
|
|
|
components: { Select },
|
|
|
|
props: {
|
|
mode: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters('i18n', ['selectedLocaleLabel', 'availableLocales']),
|
|
|
|
localesOptions() {
|
|
return Object.keys(this.availableLocales).map((value) => {
|
|
return {
|
|
label: this.t(`locale.${ value }`),
|
|
value
|
|
};
|
|
});
|
|
},
|
|
|
|
selectedOption() {
|
|
return Object.keys(this.availableLocales)[Object.values(this.availableLocales).indexOf(this.selectedLocaleLabel)];
|
|
},
|
|
|
|
showLocale() {
|
|
return (this.availableLocales && Object.keys(this.availableLocales).length > 1) || this.dev;
|
|
},
|
|
|
|
showNone() {
|
|
return !!process.env.dev && this.dev;
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
switchLocale($event) {
|
|
this.$store.dispatch('i18n/switchTo', $event);
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div v-if="mode === 'login'">
|
|
<div v-if="showLocale">
|
|
<v-dropdown
|
|
popperClass="localeSelector"
|
|
placement="top"
|
|
distance="8"
|
|
skidding="12"
|
|
:triggers="['click']"
|
|
>
|
|
<a
|
|
data-testid="locale-selector"
|
|
class="locale-chooser"
|
|
>
|
|
{{ selectedLocaleLabel }}
|
|
<i class="icon icon-fw icon-sort-down" />
|
|
</a>
|
|
<template #popper>
|
|
<ul
|
|
class="list-unstyled dropdown"
|
|
style="margin: -1px;"
|
|
>
|
|
<li
|
|
v-if="showNone"
|
|
v-t="'locale.none'"
|
|
class="hand"
|
|
@click="switchLocale('none')"
|
|
/>
|
|
<li
|
|
v-for="(label, name) in availableLocales"
|
|
:key="name"
|
|
class="hand"
|
|
@click="switchLocale(name)"
|
|
>
|
|
{{ label }}
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
</v-dropdown>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<Select
|
|
:value="selectedOption"
|
|
:options="localesOptions"
|
|
@update:value="switchLocale($event)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.advanced {
|
|
user-select: none;
|
|
padding: 0 5px;
|
|
line-height: 40px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
}
|
|
.content {
|
|
background: var(--nav-active);
|
|
padding: 10px;
|
|
margin-top: 6px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.locale-chooser {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
</style>
|