You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud/apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue

168 lines
4.0 KiB
Vue

<!--
- @copyright 2021, Christopher Ng <chrng8@gmail.com>
-
- @author Christopher Ng <chrng8@gmail.com>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<div class="language">
<select id="language"
:placeholder="t('settings', 'Language')"
@change="onLanguageChange">
<option v-for="commonLanguage in commonLanguages"
:key="commonLanguage.code"
:selected="language.code === commonLanguage.code"
:value="commonLanguage.code">
{{ commonLanguage.name }}
</option>
<option disabled>
──────────
</option>
<option v-for="otherLanguage in otherLanguages"
:key="otherLanguage.code"
:selected="language.code === otherLanguage.code"
:value="otherLanguage.code">
{{ otherLanguage.name }}
</option>
</select>
<a href="https://www.transifex.com/nextcloud/nextcloud/"
target="_blank"
rel="noreferrer noopener">
<em>{{ t('settings', 'Help translate') }}</em>
</a>
</div>
</template>
<script>
import { showError } from '@nextcloud/dialogs'
import { ACCOUNT_SETTING_PROPERTY_ENUM } from '../../../constants/AccountPropertyConstants'
import { savePrimaryAccountProperty } from '../../../service/PersonalInfo/PersonalInfoService'
import { validateLanguage } from '../../../utils/validate'
export default {
name: 'Language',
props: {
commonLanguages: {
type: Array,
required: true,
},
otherLanguages: {
type: Array,
required: true,
},
language: {
type: Object,
required: true,
},
},
data() {
return {
initialLanguage: this.language,
}
},
computed: {
allLanguages() {
return Object.freeze(
[...this.commonLanguages, ...this.otherLanguages]
.reduce((acc, { code, name }) => ({ ...acc, [code]: name }), {})
)
},
},
methods: {
async onLanguageChange(e) {
const language = this.constructLanguage(e.target.value)
this.$emit('update:language', language)
if (validateLanguage(language)) {
await this.updateLanguage(language)
}
},
async updateLanguage(language) {
try {
const responseData = await savePrimaryAccountProperty(ACCOUNT_SETTING_PROPERTY_ENUM.LANGUAGE, language.code)
this.handleResponse({
language,
status: responseData.ocs?.meta?.status,
})
this.reloadPage()
} catch (e) {
this.handleResponse({
errorMessage: t('settings', 'Unable to update language'),
error: e,
})
}
},
constructLanguage(languageCode) {
return {
code: languageCode,
name: this.allLanguages[languageCode],
}
},
handleResponse({ language, status, errorMessage, error }) {
if (status === 'ok') {
// Ensure that local state reflects server state
this.initialLanguage = language
} else {
showError(errorMessage)
this.logger.error(errorMessage, error)
}
},
reloadPage() {
location.reload()
},
},
}
</script>
<style lang="scss" scoped>
.language {
display: grid;
select {
width: 100%;
height: 34px;
margin: 3px 3px 3px 0;
padding: 6px 16px;
color: var(--color-main-text);
border: 1px solid var(--color-border-dark);
border-radius: var(--border-radius);
background: var(--icon-triangle-s-dark) no-repeat right 4px center;
font-family: var(--font-face);
appearance: none;
cursor: pointer;
}
a {
color: var(--color-main-text);
text-decoration: none;
width: max-content;
}
}
</style>