summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/admin/integrations.vue
blob: 91d03fef31729b79f330753c45f0030432644020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
	<FormSuspense :p="init">
		<FormFolder class="_formBlock">
			<template #icon><i class="fab fa-twitter"></i></template>
			<template #label>Twitter</template>
			<template #suffix>{{ enableTwitterIntegration ? $ts.enabled : $ts.disabled }}</template>
			<XTwitter/>
		</FormFolder>
		<FormFolder to="/admin/integrations/github" class="_formBlock">
			<template #icon><i class="fab fa-github"></i></template>
			<template #label>GitHub</template>
			<template #suffix>{{ enableGithubIntegration ? $ts.enabled : $ts.disabled }}</template>
			<XGithub/>
		</FormFolder>
		<FormFolder to="/admin/integrations/discord" class="_formBlock">
			<template #icon><i class="fab fa-discord"></i></template>
			<template #label>Discord</template>
			<template #suffix>{{ enableDiscordIntegration ? $ts.enabled : $ts.disabled }}</template>
			<XDiscord/>
		</FormFolder>
	</FormSuspense>
</MkSpacer>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import FormFolder from '@/components/form/folder.vue';
import FormSecion from '@/components/form/section.vue';
import FormSuspense from '@/components/form/suspense.vue';
import XTwitter from './integrations.twitter.vue';
import XGithub from './integrations.github.vue';
import XDiscord from './integrations.discord.vue';
import * as os from '@/os';
import * as symbols from '@/symbols';
import { fetchInstance } from '@/instance';

export default defineComponent({
	components: {
		FormFolder,
		FormSecion,
		FormSuspense,
		XTwitter,
		XGithub,
		XDiscord,
	},

	emits: ['info'],

	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts.integration,
				icon: 'fas fa-share-alt',
				bg: 'var(--bg)',
			},
			enableTwitterIntegration: false,
			enableGithubIntegration: false,
			enableDiscordIntegration: false,
		}
	},

	methods: {
		async init() {
			const meta = await os.api('meta', { detail: true });
			this.enableTwitterIntegration = meta.enableTwitterIntegration;
			this.enableGithubIntegration = meta.enableGithubIntegration;
			this.enableDiscordIntegration = meta.enableDiscordIntegration;
		},
	}
});
</script>