mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
97 lines
2.2 KiB
Vue
97 lines
2.2 KiB
Vue
<template>
|
|
<dropdown class="invite-button" offset="8" :placement="placement">
|
|
<template #default="{ toggleMenu }">
|
|
<base-button icon="user-plus" circle ghost @click.prevent="toggleMenu" />
|
|
</template>
|
|
<template #popover>
|
|
<div class="invite-button-menu-popover">
|
|
<div v-if="inviteCode && inviteCode.code">
|
|
<ds-text align="center">{{ $t('invite-codes.your-code') }}</ds-text>
|
|
<base-button class="invite-code" v-if="canCopy" ghost @click="copyInviteCode">
|
|
<ds-text bold>
|
|
{{ inviteCode.code }}
|
|
</ds-text>
|
|
</base-button>
|
|
<base-button v-if="canCopy" icon="copy" ghost @click="copyInviteLink">
|
|
{{ $t('invite-codes.copy-link') }}
|
|
</base-button>
|
|
</div>
|
|
<div v-else>
|
|
<ds-text>{{ $t('invite-codes.not-available') }}</ds-text>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import Dropdown from '~/components/Dropdown'
|
|
import gql from 'graphql-tag'
|
|
|
|
export default {
|
|
components: {
|
|
Dropdown,
|
|
},
|
|
props: {
|
|
placement: { type: String, default: 'top-end' },
|
|
},
|
|
data() {
|
|
return {
|
|
inviteCode: null,
|
|
canCopy: false,
|
|
}
|
|
},
|
|
created() {
|
|
this.canCopy = !!navigator.clipboard
|
|
},
|
|
methods: {
|
|
async copyInviteCode() {
|
|
await navigator.clipboard.writeText(this.inviteCode.code)
|
|
this.$toast.success(this.$t('invite-codes.copy-success'))
|
|
},
|
|
async copyInviteLink() {
|
|
await navigator.clipboard.writeText(
|
|
'https://' +
|
|
window.location.hostname +
|
|
'/registration?method=invite-code&inviteCode=' +
|
|
this.inviteCode.code,
|
|
)
|
|
this.$toast.success(this.$t('invite-codes.copy-success'))
|
|
},
|
|
},
|
|
apollo: {
|
|
inviteCode: {
|
|
query() {
|
|
return gql`
|
|
query {
|
|
getInviteCode {
|
|
code
|
|
}
|
|
}
|
|
`
|
|
},
|
|
variables() {},
|
|
update({ getInviteCode }) {
|
|
return getInviteCode
|
|
},
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.invite-button {
|
|
color: $color-secondary;
|
|
}
|
|
|
|
.invite-button-menu-popover {
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.invite-code {
|
|
left: 50%;
|
|
}
|
|
</style>
|