2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2022-01-04 10:35:21 +01:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormSuspense :p="init">
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormLink to="/admin/integrations/twitter" class="_formBlock">
|
2021-04-22 15:29:33 +02:00
|
|
|
<i class="fab fa-twitter"></i> Twitter
|
|
|
|
<template #suffix>{{ enableTwitterIntegration ? $ts.enabled : $ts.disabled }}</template>
|
|
|
|
</FormLink>
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormLink to="/admin/integrations/github" class="_formBlock">
|
2021-04-22 15:29:33 +02:00
|
|
|
<i class="fab fa-github"></i> GitHub
|
|
|
|
<template #suffix>{{ enableGithubIntegration ? $ts.enabled : $ts.disabled }}</template>
|
|
|
|
</FormLink>
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormLink to="/admin/integrations/discord" class="_formBlock">
|
2021-04-22 15:29:33 +02:00
|
|
|
<i class="fab fa-discord"></i> Discord
|
|
|
|
<template #suffix>{{ enableDiscordIntegration ? $ts.enabled : $ts.disabled }}</template>
|
|
|
|
</FormLink>
|
|
|
|
</FormSuspense>
|
2022-01-04 10:35:21 +01:00
|
|
|
</MkSpacer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2022-01-04 10:35:21 +01:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSecion from '@/components/form/section.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
|
|
|
import { fetchInstance } from '@/instance';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormLink,
|
2022-01-04 10:35:21 +01:00
|
|
|
FormSecion,
|
2021-04-22 15:29:33 +02:00
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.integration,
|
2021-10-10 08:19:16 +02:00
|
|
|
icon: 'fas fa-share-alt',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 15:29:33 +02:00
|
|
|
},
|
|
|
|
enableTwitterIntegration: false,
|
|
|
|
enableGithubIntegration: false,
|
|
|
|
enableDiscordIntegration: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
|
|
|
this.enableTwitterIntegration = meta.enableTwitterIntegration;
|
|
|
|
this.enableGithubIntegration = meta.enableGithubIntegration;
|
|
|
|
this.enableDiscordIntegration = meta.enableDiscordIntegration;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|