mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
85 lines
2.4 KiB
Vue
85 lines
2.4 KiB
Vue
<template>
|
|
<div class="user-gms-naming-format">
|
|
<b-dropdown v-model="selectedOption">
|
|
<template slot="button-content">{{ selectedOptionLabel }}</template>
|
|
<b-dropdown-item
|
|
v-for="option in dropdownOptions"
|
|
@click.prevent="update(option)"
|
|
:key="option.value"
|
|
:value="option.value"
|
|
>
|
|
{{ option.label }}
|
|
</b-dropdown-item>
|
|
</b-dropdown>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { updateUserInfos } from '@/graphql/mutations'
|
|
|
|
export default {
|
|
name: 'UserGMSNamingFormat',
|
|
data() {
|
|
return {
|
|
selectedOption: this.$store.state.gmsPublishName ?? 'GMS_PUBLISH_NAME_ALIAS_OR_INITALS',
|
|
dropdownOptions: [
|
|
{
|
|
label: this.$t('settings.GMS.publish-name.alias-or-initials'),
|
|
value: 'GMS_PUBLISH_NAME_ALIAS_OR_INITALS',
|
|
},
|
|
{
|
|
label: this.$t('settings.GMS.publish-name.initials'),
|
|
value: 'GMS_PUBLISH_NAME_INITIALS',
|
|
},
|
|
{ label: this.$t('settings.GMS.publish-name.first'), value: 'GMS_PUBLISH_NAME_FIRST' },
|
|
{
|
|
label: this.$t('settings.GMS.publish-name.first-initial'),
|
|
value: 'GMS_PUBLISH_NAME_FIRST_INITIAL',
|
|
},
|
|
{ label: this.$t('settings.GMS.publish-name.name-full'), value: 'GMS_PUBLISH_NAME_FULL' },
|
|
],
|
|
}
|
|
},
|
|
computed: {
|
|
selectedOptionLabel() {
|
|
const selected = this.dropdownOptions.find((option) => option.value === this.selectedOption)
|
|
return selected ? selected.label : 'Select Option'
|
|
},
|
|
},
|
|
methods: {
|
|
async update(option) {
|
|
try {
|
|
await this.$apollo.mutate({
|
|
mutation: updateUserInfos,
|
|
variables: {
|
|
gmsPublishName: option.value,
|
|
},
|
|
})
|
|
this.toastSuccess(this.$t('settings.GMS.publish-name.updated'))
|
|
this.selectedOption = option.value
|
|
this.$store.commit('gmsPublishName', option.value)
|
|
this.$emit('gmsPublishName', option.value)
|
|
} catch (error) {
|
|
this.toastError(error.message)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
.user-gms-naming-format > div,
|
|
.user-gms-naming-format ul.dropdown-menu {
|
|
width: 100%;
|
|
}
|
|
.user-gms-naming-format > div > button {
|
|
border-radius: 17px;
|
|
height: 50px;
|
|
text-align: left;
|
|
}
|
|
.user-gms-naming-format .dropdown-toggle::after {
|
|
float: right;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
position: relative;
|
|
}
|
|
</style>
|