summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/admin/integrations.github.vue
blob: 66419d5891251f8c7a4fa509e28e887f2f35093f (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
<template>
<FormSuspense :p="init">
	<div class="_formRoot">
		<FormSwitch v-model="enableGithubIntegration" class="_formBlock">
			<template #label>{{ i18n.ts.enable }}</template>
		</FormSwitch>

		<template v-if="enableGithubIntegration">
			<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/gh/cb` }}</FormInfo>
		
			<FormInput v-model="githubClientId" class="_formBlock">
				<template #prefix><i class="ti ti-key"></i></template>
				<template #label>Client ID</template>
			</FormInput>

			<FormInput v-model="githubClientSecret" class="_formBlock">
				<template #prefix><i class="ti ti-key"></i></template>
				<template #label>Client Secret</template>
			</FormInput>
		</template>

		<FormButton primary class="_formBlock" @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</FormButton>
	</div>
</FormSuspense>
</template>

<script lang="ts" setup>
import { } from 'vue';
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';
import FormSuspense from '@/components/form/suspense.vue';
import * as os from '@/os';
import { fetchInstance } from '@/instance';
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>