mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
139 lines
3.2 KiB
Vue
139 lines
3.2 KiB
Vue
<template>
|
|
<dropdown ref="menu" :placement="placement" :offset="offset">
|
|
<a
|
|
slot="default"
|
|
slot-scope="{ toggleMenu }"
|
|
class="locale-menu"
|
|
href="#"
|
|
@click.prevent="toggleMenu()"
|
|
>
|
|
<ds-icon style="margin-right: 2px;" name="globe" />
|
|
{{ current.code.toUpperCase() }}
|
|
<ds-icon style="margin-left: 2px" size="xx-small" name="angle-down" />
|
|
</a>
|
|
<ds-menu
|
|
slot="popover"
|
|
slot-scope="{ toggleMenu }"
|
|
class="locale-menu-popover"
|
|
:matcher="matcher"
|
|
:routes="routes"
|
|
>
|
|
<ds-menu-item
|
|
slot="menuitem"
|
|
slot-scope="item"
|
|
class="locale-menu-item"
|
|
:route="item.route"
|
|
:parents="item.parents"
|
|
@click.stop.prevent="changeLanguage(item.route.path, toggleMenu)"
|
|
>
|
|
{{ item.route.name }}
|
|
</ds-menu-item>
|
|
</ds-menu>
|
|
</dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import gql from 'graphql-tag'
|
|
import Dropdown from '~/components/Dropdown'
|
|
import find from 'lodash/find'
|
|
import orderBy from 'lodash/orderBy'
|
|
import locales from '~/locales'
|
|
import { mapGetters, mapMutations } from 'vuex'
|
|
|
|
export default {
|
|
components: {
|
|
Dropdown,
|
|
},
|
|
props: {
|
|
placement: { type: String, default: 'bottom-start' },
|
|
offset: { type: [String, Number], default: '16' },
|
|
},
|
|
data() {
|
|
return {
|
|
locales: orderBy(locales, 'name'),
|
|
}
|
|
},
|
|
computed: {
|
|
current() {
|
|
return find(this.locales, { code: this.$i18n.locale() })
|
|
},
|
|
routes() {
|
|
const routes = this.locales.map(locale => {
|
|
return {
|
|
name: locale.name,
|
|
path: locale.code,
|
|
}
|
|
})
|
|
return routes
|
|
},
|
|
...mapGetters({
|
|
currentUser: 'auth/user',
|
|
}),
|
|
},
|
|
methods: {
|
|
changeLanguage(locale, toggleMenu) {
|
|
this.$i18n.set(locale)
|
|
this.updateUserLocale()
|
|
toggleMenu()
|
|
},
|
|
matcher(locale) {
|
|
return locale === this.$i18n.locale()
|
|
},
|
|
|
|
...mapMutations({
|
|
setCurrentUser: 'auth/SET_USER',
|
|
}),
|
|
async updateUserLocale() {
|
|
if (!this.currentUser || !this.currentUser.id) return null
|
|
try {
|
|
await this.$apollo.mutate({
|
|
mutation: gql`
|
|
mutation($id: ID!, $locale: String) {
|
|
UpdateUser(id: $id, locale: $locale) {
|
|
id
|
|
locale
|
|
}
|
|
}
|
|
`,
|
|
variables: {
|
|
id: this.currentUser.id,
|
|
locale: this.$i18n.locale(),
|
|
},
|
|
update: (store, { data: { UpdateUser } }) => {
|
|
const { locale } = UpdateUser
|
|
this.setCurrentUser({
|
|
...this.currentUser,
|
|
locale,
|
|
})
|
|
},
|
|
})
|
|
this.$toast.success(this.$t('contribution.success'))
|
|
} catch (err) {
|
|
this.$toast.error(err.message)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.locale-menu {
|
|
user-select: none;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
padding: $space-xx-small;
|
|
color: $text-color-soft;
|
|
}
|
|
|
|
nav.locale-menu-popover {
|
|
margin-left: -$space-small !important;
|
|
margin-right: -$space-small !important;
|
|
|
|
a {
|
|
padding: $space-x-small $space-small;
|
|
padding-right: $space-base;
|
|
}
|
|
}
|
|
</style>
|