2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-02-06 11:08:32 -06:00
|
|
|
<FormBase>
|
2021-09-29 10:50:45 -05:00
|
|
|
<div class="_debobigegoItem" v-if="enableTwitterIntegration">
|
|
|
|
<div class="_debobigegoLabel"><i class="fab fa-twitter"></i> Twitter</div>
|
|
|
|
<div class="_debobigegoPanel" style="padding: 16px;">
|
2021-02-06 11:08:32 -06:00
|
|
|
<p v-if="integrations.twitter">{{ $ts.connectedTo }}: <a :href="`https://twitter.com/${integrations.twitter.screenName}`" rel="nofollow noopener" target="_blank">@{{ integrations.twitter.screenName }}</a></p>
|
2021-05-30 02:26:52 -05:00
|
|
|
<MkButton v-if="integrations.twitter" @click="disconnectTwitter" danger>{{ $ts.disconnectService }}</MkButton>
|
|
|
|
<MkButton v-else @click="connectTwitter" primary>{{ $ts.connectService }}</MkButton>
|
2021-02-06 11:08:32 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
|
2021-09-29 10:50:45 -05:00
|
|
|
<div class="_debobigegoItem" v-if="enableDiscordIntegration">
|
|
|
|
<div class="_debobigegoLabel"><i class="fab fa-discord"></i> Discord</div>
|
|
|
|
<div class="_debobigegoPanel" style="padding: 16px;">
|
2021-02-06 11:08:32 -06:00
|
|
|
<p v-if="integrations.discord">{{ $ts.connectedTo }}: <a :href="`https://discord.com/users/${integrations.discord.id}`" rel="nofollow noopener" target="_blank">@{{ integrations.discord.username }}#{{ integrations.discord.discriminator }}</a></p>
|
2021-05-30 02:26:52 -05:00
|
|
|
<MkButton v-if="integrations.discord" @click="disconnectDiscord" danger>{{ $ts.disconnectService }}</MkButton>
|
|
|
|
<MkButton v-else @click="connectDiscord" primary>{{ $ts.connectService }}</MkButton>
|
2021-02-06 11:08:32 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
|
2021-09-29 10:50:45 -05:00
|
|
|
<div class="_debobigegoItem" v-if="enableGithubIntegration">
|
|
|
|
<div class="_debobigegoLabel"><i class="fab fa-github"></i> GitHub</div>
|
|
|
|
<div class="_debobigegoPanel" style="padding: 16px;">
|
2021-02-06 11:08:32 -06:00
|
|
|
<p v-if="integrations.github">{{ $ts.connectedTo }}: <a :href="`https://github.com/${integrations.github.login}`" rel="nofollow noopener" target="_blank">@{{ integrations.github.login }}</a></p>
|
2021-05-30 02:26:52 -05:00
|
|
|
<MkButton v-if="integrations.github" @click="disconnectGithub" danger>{{ $ts.disconnectService }}</MkButton>
|
|
|
|
<MkButton v-else @click="connectGithub" primary>{{ $ts.connectService }}</MkButton>
|
2021-02-06 11:08:32 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
2021-02-06 11:08:32 -06:00
|
|
|
</FormBase>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import { apiUrl } from '@client/config';
|
2021-09-29 10:50:45 -05:00
|
|
|
import FormBase from '@client/components/debobigego/base.vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
|
|
import * as os from '@client/os';
|
2021-04-09 22:54:12 -05:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
components: {
|
2021-02-06 11:08:32 -06:00
|
|
|
FormBase,
|
2020-01-29 13:37:25 -06:00
|
|
|
MkButton
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
emits: ['info'],
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-09 22:54:12 -05:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-25 19:47:36 -06:00
|
|
|
title: this.$ts.integration,
|
2021-09-29 10:50:45 -05:00
|
|
|
icon: 'fas fa-share-alt',
|
|
|
|
bg: 'var(--bg)',
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
apiUrl,
|
|
|
|
twitterForm: null,
|
|
|
|
discordForm: null,
|
|
|
|
githubForm: null,
|
|
|
|
enableTwitterIntegration: false,
|
|
|
|
enableDiscordIntegration: false,
|
|
|
|
enableGithubIntegration: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-01-31 16:16:52 -06:00
|
|
|
computed: {
|
|
|
|
integrations() {
|
2020-12-18 19:55:52 -06:00
|
|
|
return this.$i.integrations;
|
2020-02-10 08:17:42 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
meta() {
|
2020-12-18 19:55:52 -06:00
|
|
|
return this.$instance;
|
2020-02-10 08:17:42 -06:00
|
|
|
},
|
2020-01-31 16:16:52 -06:00
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
created() {
|
2020-02-10 08:17:42 -06:00
|
|
|
this.enableTwitterIntegration = this.meta.enableTwitterIntegration;
|
|
|
|
this.enableDiscordIntegration = this.meta.enableDiscordIntegration;
|
|
|
|
this.enableGithubIntegration = this.meta.enableGithubIntegration;
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2021-04-09 22:54:12 -05:00
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
document.cookie = `igi=${this.$i.token}; path=/;` +
|
2020-03-19 23:56:22 -05:00
|
|
|
` max-age=31536000;` +
|
2020-01-29 13:37:25 -06:00
|
|
|
(document.location.protocol.startsWith('https') ? ' secure' : '');
|
2020-03-19 23:56:22 -05:00
|
|
|
|
2020-01-31 16:16:52 -06:00
|
|
|
this.$watch('integrations', () => {
|
|
|
|
if (this.integrations.twitter) {
|
2020-01-29 13:37:25 -06:00
|
|
|
if (this.twitterForm) this.twitterForm.close();
|
|
|
|
}
|
2020-01-31 16:16:52 -06:00
|
|
|
if (this.integrations.discord) {
|
2020-01-29 13:37:25 -06:00
|
|
|
if (this.discordForm) this.discordForm.close();
|
|
|
|
}
|
2020-01-31 16:16:52 -06:00
|
|
|
if (this.integrations.github) {
|
2020-01-29 13:37:25 -06:00
|
|
|
if (this.githubForm) this.githubForm.close();
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
deep: true
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
connectTwitter() {
|
|
|
|
this.twitterForm = window.open(apiUrl + '/connect/twitter',
|
|
|
|
'twitter_connect_window',
|
|
|
|
'height=570, width=520');
|
|
|
|
},
|
|
|
|
|
|
|
|
disconnectTwitter() {
|
|
|
|
window.open(apiUrl + '/disconnect/twitter',
|
|
|
|
'twitter_disconnect_window',
|
|
|
|
'height=570, width=520');
|
|
|
|
},
|
|
|
|
|
|
|
|
connectDiscord() {
|
|
|
|
this.discordForm = window.open(apiUrl + '/connect/discord',
|
|
|
|
'discord_connect_window',
|
|
|
|
'height=570, width=520');
|
|
|
|
},
|
|
|
|
|
|
|
|
disconnectDiscord() {
|
|
|
|
window.open(apiUrl + '/disconnect/discord',
|
|
|
|
'discord_disconnect_window',
|
|
|
|
'height=570, width=520');
|
|
|
|
},
|
|
|
|
|
|
|
|
connectGithub() {
|
|
|
|
this.githubForm = window.open(apiUrl + '/connect/github',
|
|
|
|
'github_connect_window',
|
|
|
|
'height=570, width=520');
|
|
|
|
},
|
|
|
|
|
|
|
|
disconnectGithub() {
|
|
|
|
window.open(apiUrl + '/disconnect/github',
|
|
|
|
'github_disconnect_window',
|
|
|
|
'height=570, width=520');
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|