Add:Language select in account page #1103

This commit is contained in:
advplyr 2022-11-09 18:00:20 -06:00
parent b083f6ab96
commit c33314edfb
4 changed files with 36 additions and 11 deletions

View File

@ -4,7 +4,7 @@
<app-side-rail v-if="isShowingSideRail" class="hidden md:block" /> <app-side-rail v-if="isShowingSideRail" class="hidden md:block" />
<div id="app-content" class="h-full" :class="{ 'has-siderail': isShowingSideRail }"> <div id="app-content" class="h-full" :class="{ 'has-siderail': isShowingSideRail }">
<Nuxt /> <Nuxt :key="currentLang" />
</div> </div>
<app-stream-container ref="streamContainer" /> <app-stream-container ref="streamContainer" />
@ -31,7 +31,8 @@ export default {
socket: null, socket: null,
isSocketConnected: false, isSocketConnected: false,
isFirstSocketConnection: true, isFirstSocketConnection: true,
socketConnectionToastId: null socketConnectionToastId: null,
currentLang: null
} }
}, },
watch: { watch: {
@ -519,6 +520,10 @@ export default {
.catch((error) => { .catch((error) => {
console.error('Failed to load tasks', error) console.error('Failed to load tasks', error)
}) })
},
changeLanguage(code) {
console.log('Changed lang', code)
this.currentLang = code
} }
}, },
beforeMount() { beforeMount() {
@ -527,6 +532,7 @@ export default {
mounted() { mounted() {
this.updateBodyClass() this.updateBodyClass()
this.resize() this.resize()
this.$eventBus.$on('change-lang', this.changeLanguage)
window.addEventListener('resize', this.resize) window.addEventListener('resize', this.resize)
window.addEventListener('keydown', this.keyDown) window.addEventListener('keydown', this.keyDown)
@ -544,6 +550,7 @@ export default {
} }
}, },
beforeDestroy() { beforeDestroy() {
this.$eventBus.$off('change-lang', this.changeLanguage)
window.removeEventListener('resize', this.resize) window.removeEventListener('resize', this.resize)
window.removeEventListener('keydown', this.keyDown) window.removeEventListener('keydown', this.keyDown)
} }

View File

@ -12,8 +12,12 @@
<ui-text-input-with-label disabled :value="usertype" :label="$strings.LabelAccountType" /> <ui-text-input-with-label disabled :value="usertype" :label="$strings.LabelAccountType" />
</div> </div>
</div> </div>
<div class="py-4">
<p class="px-1 text-sm font-semibold">{{ $strings.LabelLanguage }}</p>
<ui-dropdown v-model="selectedLanguage" :items="$languageCodeOptions" small class="max-w-48" @input="updateLocalLanguage" />
</div>
<div class="w-full h-px bg-primary my-4" /> <div class="w-full h-px bg-white/10 my-4" />
<p v-if="!isGuest" class="mb-4 text-lg">{{ $strings.HeaderChangePassword }}</p> <p v-if="!isGuest" class="mb-4 text-lg">{{ $strings.HeaderChangePassword }}</p>
<form v-if="!isGuest" @submit.prevent="submitChangePassword"> <form v-if="!isGuest" @submit.prevent="submitChangePassword">
@ -42,7 +46,8 @@ export default {
password: null, password: null,
newPassword: null, newPassword: null,
confirmPassword: null, confirmPassword: null,
changingPassword: false changingPassword: false,
selectedLanguage: ''
} }
}, },
computed: { computed: {
@ -66,6 +71,9 @@ export default {
} }
}, },
methods: { methods: {
updateLocalLanguage(lang) {
this.$setLanguageCode(lang)
},
logout() { logout() {
var rootSocket = this.$root.socket || {} var rootSocket = this.$root.socket || {}
const logoutPayload = { const logoutPayload = {
@ -113,6 +121,8 @@ export default {
}) })
} }
}, },
mounted() {} mounted() {
this.selectedLanguage = this.$languageCodes.current
}
} }
</script> </script>

View File

@ -79,7 +79,7 @@
<div class="py-2"> <div class="py-2">
<p class="px-1 text-sm font-semibold">{{ $strings.LabelLanguageDefaultServer }}</p> <p class="px-1 text-sm font-semibold">{{ $strings.LabelLanguageDefaultServer }}</p>
<ui-dropdown v-model="newServerSettings.language" :items="$languageCodeOptions" small class="max-w-48" @input="updateServerLanguage" /> <ui-dropdown ref="langDropdown" v-model="newServerSettings.language" :items="$languageCodeOptions" small class="max-w-48" @input="updateServerLanguage" />
</div> </div>
</div> </div>
@ -327,7 +327,6 @@ export default {
}) })
}, },
updateServerLanguage(val) { updateServerLanguage(val) {
this.$setLanguageCode(val)
this.updateSettingsKey('language', val) this.updateSettingsKey('language', val)
}, },
updateSettingsKey(key, val) { updateSettingsKey(key, val) {
@ -343,6 +342,11 @@ export default {
console.log('Updated Server Settings', success) console.log('Updated Server Settings', success)
this.updatingServerSettings = false this.updatingServerSettings = false
this.$toast.success('Server settings updated') this.$toast.success('Server settings updated')
if (payload.language) {
// Updating language after save allows for re-rendering
this.$setLanguageCode(payload.language)
}
}) })
.catch((error) => { .catch((error) => {
console.error('Failed to update server settings', error) console.error('Failed to update server settings', error)

View File

@ -1,14 +1,16 @@
import { getElementsByTagType } from "domutils"
import Vue from "vue" import Vue from "vue"
import enUsStrings from '../strings/en-us.json' import enUsStrings from '../strings/en-us.json'
import itStrings from '../strings/it.json'
import { supplant } from './utils' import { supplant } from './utils'
const defaultCode = 'en-us' const defaultCode = 'en-us'
const languageCodeMap = { const languageCodeMap = {
'en-us': 'English', 'en-us': 'English',
'es': 'Español', // 'es': 'Español',
'it': 'Italiano', // 'it': 'Italiano',
'pl': 'Polski', // 'pl': 'Polski',
'zh-cn': '汉语 (简化字)' 'zh-cn': '汉语 (简化字)'
} }
Vue.prototype.$languageCodeOptions = Object.keys(languageCodeMap).map(code => { Vue.prototype.$languageCodeOptions = Object.keys(languageCodeMap).map(code => {
@ -26,6 +28,7 @@ Vue.prototype.$languageCodes = {
} }
Vue.prototype.$strings = { ...enUsStrings } Vue.prototype.$strings = { ...enUsStrings }
Vue.prototype.$getString = (key, subs) => { Vue.prototype.$getString = (key, subs) => {
if (!Vue.prototype.$strings[key]) return '' if (!Vue.prototype.$strings[key]) return ''
if (subs && Array.isArray(subs) && subs.length) { if (subs && Array.isArray(subs) && subs.length) {
@ -71,6 +74,7 @@ async function loadi18n(code) {
} }
console.log('i18n strings=', Vue.prototype.$strings) console.log('i18n strings=', Vue.prototype.$strings)
Vue.prototype.$eventBus.$emit('change-lang', code)
return true return true
} }
@ -98,7 +102,7 @@ async function initialize() {
if (!languageCodeMap[localLanguage]) { if (!languageCodeMap[localLanguage]) {
console.warn('Invalid local language code', localLanguage) console.warn('Invalid local language code', localLanguage)
localStorage.setItem('lang', defaultCode) localStorage.setItem('lang', defaultCode)
} else if (localLanguage !== defaultCode) { } else {
Vue.prototype.$languageCodes.local = localLanguage Vue.prototype.$languageCodes.local = localLanguage
loadi18n(localLanguage) loadi18n(localLanguage)
} }