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 13:16:41 +01:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #icon><i class="fab fa-twitter"></i></template>
|
|
|
|
<template #label>Twitter</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #suffix>{{ enableTwitterIntegration ? $ts.enabled : $ts.disabled }}</template>
|
2022-01-04 13:16:41 +01:00
|
|
|
<XTwitter/>
|
|
|
|
</FormFolder>
|
|
|
|
<FormFolder to="/admin/integrations/github" class="_formBlock">
|
|
|
|
<template #icon><i class="fab fa-github"></i></template>
|
|
|
|
<template #label>GitHub</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #suffix>{{ enableGithubIntegration ? $ts.enabled : $ts.disabled }}</template>
|
2022-01-04 13:16:41 +01:00
|
|
|
<XGithub/>
|
|
|
|
</FormFolder>
|
|
|
|
<FormFolder to="/admin/integrations/discord" class="_formBlock">
|
|
|
|
<template #icon><i class="fab fa-discord"></i></template>
|
|
|
|
<template #label>Discord</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #suffix>{{ enableDiscordIntegration ? $ts.enabled : $ts.disabled }}</template>
|
2022-01-04 13:16:41 +01:00
|
|
|
<XDiscord/>
|
|
|
|
</FormFolder>
|
2021-04-22 15:29:33 +02:00
|
|
|
</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 13:16:41 +01:00
|
|
|
import FormFolder from '@/components/form/folder.vue';
|
2022-01-04 10:35:21 +01:00
|
|
|
import FormSecion from '@/components/form/section.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2022-01-04 13:16:41 +01:00
|
|
|
import XTwitter from './integrations.twitter.vue';
|
|
|
|
import XGithub from './integrations.github.vue';
|
|
|
|
import XDiscord from './integrations.discord.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-02-28 19:51:31 +01:00
|
|
|
import { fetchInstance } from '@/instance';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2022-01-04 13:16:41 +01:00
|
|
|
FormFolder,
|
2022-01-04 10:35:21 +01:00
|
|
|
FormSecion,
|
2021-04-22 15:29:33 +02:00
|
|
|
FormSuspense,
|
2022-01-04 13:16:41 +01:00
|
|
|
XTwitter,
|
|
|
|
XGithub,
|
|
|
|
XDiscord,
|
2021-04-22 15:29:33 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
2022-03-24 17:50:28 +01:00
|
|
|
const meta = await os.api('admin/meta');
|
2021-04-22 15:29:33 +02:00
|
|
|
this.enableTwitterIntegration = meta.enableTwitterIntegration;
|
|
|
|
this.enableGithubIntegration = meta.enableGithubIntegration;
|
|
|
|
this.enableDiscordIntegration = meta.enableDiscordIntegration;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|