iceshrimp-legacy/packages/client/src/pages/admin/integrations.vue

73 lines
2.1 KiB
Vue
Raw Normal View History

<template>
2022-01-04 10:35:21 +01:00
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
<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>
<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>
<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>
<template #suffix>{{ enableDiscordIntegration ? $ts.enabled : $ts.disabled }}</template>
2022-01-04 13:16:41 +01:00
<XDiscord/>
</FormFolder>
</FormSuspense>
2022-01-04 10:35:21 +01:00
</MkSpacer>
</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';
import { fetchInstance } from '@/instance';
export default defineComponent({
components: {
2022-01-04 13:16:41 +01:00
FormFolder,
2022-01-04 10:35:21 +01:00
FormSecion,
FormSuspense,
2022-01-04 13:16:41 +01:00
XTwitter,
XGithub,
XDiscord,
},
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)',
},
enableTwitterIntegration: false,
enableGithubIntegration: false,
enableDiscordIntegration: false,
}
},
methods: {
async init() {
const meta = await os.api('admin/meta');
this.enableTwitterIntegration = meta.enableTwitterIntegration;
this.enableGithubIntegration = meta.enableGithubIntegration;
this.enableDiscordIntegration = meta.enableDiscordIntegration;
},
}
});
</script>