Sharkey/packages/frontend/src/pages/admin/integrations.github.vue

61 lines
1.8 KiB
Vue
Raw Normal View History

<template>
2022-01-04 14:16:41 +02:00
<FormSuspense :p="init">
<div class="_formRoot">
2022-01-04 11:35:21 +02:00
<FormSwitch v-model="enableGithubIntegration" class="_formBlock">
2022-07-20 16:24:26 +03:00
<template #label>{{ i18n.ts.enable }}</template>
</FormSwitch>
<template v-if="enableGithubIntegration">
2022-01-04 11:35:21 +02:00
<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/gh/cb` }}</FormInfo>
2022-01-04 11:35:21 +02:00
<FormInput v-model="githubClientId" class="_formBlock">
<template #prefix><i class="ti ti-key"></i></template>
2022-01-04 11:35:21 +02:00
<template #label>Client ID</template>
</FormInput>
2022-01-04 11:35:21 +02:00
<FormInput v-model="githubClientSecret" class="_formBlock">
<template #prefix><i class="ti ti-key"></i></template>
2022-01-04 11:35:21 +02:00
<template #label>Client Secret</template>
</FormInput>
</template>
<FormButton primary class="_formBlock" @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</FormButton>
2022-01-04 14:16:41 +02:00
</div>
</FormSuspense>
</template>
<script lang="ts" setup>
import { } from 'vue';
2022-01-04 11:35:21 +02:00
import FormSwitch from '@/components/form/switch.vue';
import FormInput from '@/components/form/input.vue';
import FormButton from '@/components/MkButton.vue';
import FormInfo from '@/components/MkInfo.vue';
2022-01-04 11:35:21 +02:00
import FormSuspense from '@/components/form/suspense.vue';
2021-11-11 19:02:25 +02:00
import * as os from '@/os';
import { fetchInstance } from '@/instance';
2022-07-20 16:24:26 +03:00
import { i18n } from '@/i18n';
let uri: string = $ref('');
let enableGithubIntegration: boolean = $ref(false);
let githubClientId: string | null = $ref(null);
let githubClientSecret: string | null = $ref(null);
async function init() {
const meta = await os.api('admin/meta');
uri = meta.uri;
enableGithubIntegration = meta.enableGithubIntegration;
githubClientId = meta.githubClientId;
githubClientSecret = meta.githubClientSecret;
}
function save() {
os.apiWithDialog('admin/update-meta', {
enableGithubIntegration,
githubClientId,
githubClientSecret,
}).then(() => {
fetchInstance();
});
}
</script>