Refactor integration to use Composition API (#8581)
* refactor(client): refactor integration to use Composition API * fix(client): drop superfluous enable* constants * refactor(client): deduplicate window opening for services
This commit is contained in:
parent
766559c6e9
commit
3dc027bcd5
|
@ -1,133 +1,98 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="_formRoot">
|
<div class="_formRoot">
|
||||||
<FormSection v-if="enableTwitterIntegration">
|
<FormSection v-if="instance.enableTwitterIntegration">
|
||||||
<template #label><i class="fab fa-twitter"></i> Twitter</template>
|
<template #label><i class="fab fa-twitter"></i> Twitter</template>
|
||||||
<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>
|
<p v-if="integrations.twitter">{{ i18n.ts.connectedTo }}: <a :href="`https://twitter.com/${integrations.twitter.screenName}`" rel="nofollow noopener" target="_blank">@{{ integrations.twitter.screenName }}</a></p>
|
||||||
<MkButton v-if="integrations.twitter" danger @click="disconnectTwitter">{{ $ts.disconnectService }}</MkButton>
|
<MkButton v-if="integrations.twitter" danger @click="disconnectTwitter">{{ i18n.ts.disconnectService }}</MkButton>
|
||||||
<MkButton v-else primary @click="connectTwitter">{{ $ts.connectService }}</MkButton>
|
<MkButton v-else primary @click="connectTwitter">{{ i18n.ts.connectService }}</MkButton>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
|
|
||||||
<FormSection v-if="enableDiscordIntegration">
|
<FormSection v-if="instance.enableDiscordIntegration">
|
||||||
<template #label><i class="fab fa-discord"></i> Discord</template>
|
<template #label><i class="fab fa-discord"></i> Discord</template>
|
||||||
<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>
|
<p v-if="integrations.discord">{{ i18n.ts.connectedTo }}: <a :href="`https://discord.com/users/${integrations.discord.id}`" rel="nofollow noopener" target="_blank">@{{ integrations.discord.username }}#{{ integrations.discord.discriminator }}</a></p>
|
||||||
<MkButton v-if="integrations.discord" danger @click="disconnectDiscord">{{ $ts.disconnectService }}</MkButton>
|
<MkButton v-if="integrations.discord" danger @click="disconnectDiscord">{{ i18n.ts.disconnectService }}</MkButton>
|
||||||
<MkButton v-else primary @click="connectDiscord">{{ $ts.connectService }}</MkButton>
|
<MkButton v-else primary @click="connectDiscord">{{ i18n.ts.connectService }}</MkButton>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
|
|
||||||
<FormSection v-if="enableGithubIntegration">
|
<FormSection v-if="instance.enableGithubIntegration">
|
||||||
<template #label><i class="fab fa-github"></i> GitHub</template>
|
<template #label><i class="fab fa-github"></i> GitHub</template>
|
||||||
<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>
|
<p v-if="integrations.github">{{ i18n.ts.connectedTo }}: <a :href="`https://github.com/${integrations.github.login}`" rel="nofollow noopener" target="_blank">@{{ integrations.github.login }}</a></p>
|
||||||
<MkButton v-if="integrations.github" danger @click="disconnectGithub">{{ $ts.disconnectService }}</MkButton>
|
<MkButton v-if="integrations.github" danger @click="disconnectGithub">{{ i18n.ts.disconnectService }}</MkButton>
|
||||||
<MkButton v-else primary @click="connectGithub">{{ $ts.connectService }}</MkButton>
|
<MkButton v-else primary @click="connectGithub">{{ i18n.ts.connectService }}</MkButton>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts" setup>
|
||||||
import { defineComponent } from 'vue';
|
import { computed, defineExpose, onMounted, ref, watch } from 'vue';
|
||||||
import { apiUrl } from '@/config';
|
import { apiUrl } from '@/config';
|
||||||
import FormSection from '@/components/form/section.vue';
|
import FormSection from '@/components/form/section.vue';
|
||||||
import MkButton from '@/components/ui/button.vue';
|
import MkButton from '@/components/ui/button.vue';
|
||||||
import * as os from '@/os';
|
|
||||||
import * as symbols from '@/symbols';
|
import * as symbols from '@/symbols';
|
||||||
|
import { $i } from '@/account';
|
||||||
|
import { instance } from '@/instance';
|
||||||
|
import { i18n } from '@/i18n';
|
||||||
|
|
||||||
export default defineComponent({
|
const twitterForm = ref<Window | null>(null);
|
||||||
components: {
|
const discordForm = ref<Window | null>(null);
|
||||||
FormSection,
|
const githubForm = ref<Window | null>(null);
|
||||||
MkButton
|
|
||||||
},
|
|
||||||
|
|
||||||
emits: ['info'],
|
const integrations = computed(() => $i!.integrations);
|
||||||
|
|
||||||
data() {
|
function openWindow(service: string, type: string) {
|
||||||
return {
|
return window.open(`${apiUrl}/${type}/${service}`,
|
||||||
[symbols.PAGE_INFO]: {
|
`${service}_${type}_window`,
|
||||||
title: this.$ts.integration,
|
'height=570, width=520'
|
||||||
icon: 'fas fa-share-alt',
|
);
|
||||||
bg: 'var(--bg)',
|
}
|
||||||
},
|
|
||||||
apiUrl,
|
|
||||||
twitterForm: null,
|
|
||||||
discordForm: null,
|
|
||||||
githubForm: null,
|
|
||||||
enableTwitterIntegration: false,
|
|
||||||
enableDiscordIntegration: false,
|
|
||||||
enableGithubIntegration: false,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
computed: {
|
function connectTwitter() {
|
||||||
integrations() {
|
twitterForm.value = openWindow('twitter', 'connect');
|
||||||
return this.$i.integrations;
|
}
|
||||||
},
|
|
||||||
|
|
||||||
meta() {
|
function disconnectTwitter() {
|
||||||
return this.$instance;
|
openWindow('twitter', 'disconnect');
|
||||||
},
|
}
|
||||||
},
|
|
||||||
|
|
||||||
created() {
|
function connectDiscord() {
|
||||||
this.enableTwitterIntegration = this.meta.enableTwitterIntegration;
|
discordForm.value = openWindow('discord', 'connect');
|
||||||
this.enableDiscordIntegration = this.meta.enableDiscordIntegration;
|
}
|
||||||
this.enableGithubIntegration = this.meta.enableGithubIntegration;
|
|
||||||
},
|
|
||||||
|
|
||||||
mounted() {
|
function disconnectDiscord() {
|
||||||
document.cookie = `igi=${this.$i.token}; path=/;` +
|
openWindow('discord', 'disconnect');
|
||||||
` max-age=31536000;` +
|
}
|
||||||
(document.location.protocol.startsWith('https') ? ' secure' : '');
|
|
||||||
|
|
||||||
this.$watch('integrations', () => {
|
function connectGithub() {
|
||||||
if (this.integrations.twitter) {
|
githubForm.value = openWindow('github', 'connect');
|
||||||
if (this.twitterForm) this.twitterForm.close();
|
}
|
||||||
}
|
|
||||||
if (this.integrations.discord) {
|
|
||||||
if (this.discordForm) this.discordForm.close();
|
|
||||||
}
|
|
||||||
if (this.integrations.github) {
|
|
||||||
if (this.githubForm) this.githubForm.close();
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
deep: true
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
function disconnectGithub() {
|
||||||
connectTwitter() {
|
openWindow('github', 'disconnect');
|
||||||
this.twitterForm = window.open(apiUrl + '/connect/twitter',
|
}
|
||||||
'twitter_connect_window',
|
|
||||||
'height=570, width=520');
|
|
||||||
},
|
|
||||||
|
|
||||||
disconnectTwitter() {
|
onMounted(() => {
|
||||||
window.open(apiUrl + '/disconnect/twitter',
|
document.cookie = `igi=${$i!.token}; path=/;` +
|
||||||
'twitter_disconnect_window',
|
` max-age=31536000;` +
|
||||||
'height=570, width=520');
|
(document.location.protocol.startsWith('https') ? ' secure' : '');
|
||||||
},
|
|
||||||
|
|
||||||
connectDiscord() {
|
watch(integrations, () => {
|
||||||
this.discordForm = window.open(apiUrl + '/connect/discord',
|
if (integrations.value.twitter) {
|
||||||
'discord_connect_window',
|
if (twitterForm.value) twitterForm.value.close();
|
||||||
'height=570, width=520');
|
}
|
||||||
},
|
if (integrations.value.discord) {
|
||||||
|
if (discordForm.value) discordForm.value.close();
|
||||||
|
}
|
||||||
|
if (integrations.value.github) {
|
||||||
|
if (githubForm.value) githubForm.value.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
disconnectDiscord() {
|
defineExpose({
|
||||||
window.open(apiUrl + '/disconnect/discord',
|
[symbols.PAGE_INFO]: {
|
||||||
'discord_disconnect_window',
|
title: i18n.ts.integration,
|
||||||
'height=570, width=520');
|
icon: 'fas fa-share-alt',
|
||||||
},
|
bg: 'var(--bg)',
|
||||||
|
|
||||||
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>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue