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

81 lines
2.1 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">
<template #label>{{ $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="fas fa-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="fas fa-key"></i></template>
2022-01-04 11:35:21 +02:00
<template #label>Client Secret</template>
</FormInput>
</template>
2022-01-04 11:35:21 +02:00
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
2022-01-04 14:16:41 +02:00
</div>
</FormSuspense>
</template>
<script lang="ts">
import { defineComponent } 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/ui/button.vue';
import FormInfo from '@/components/ui/info.vue';
import FormSuspense from '@/components/form/suspense.vue';
2021-11-11 19:02:25 +02:00
import * as os from '@/os';
import * as symbols from '@/symbols';
2022-02-28 15:42:32 +02:00
import { refetchInstanceMeta } from '@/instance';
export default defineComponent({
components: {
FormSwitch,
FormInput,
FormInfo,
FormButton,
FormSuspense,
},
emits: ['info'],
data() {
return {
[symbols.PAGE_INFO]: {
title: 'GitHub',
icon: 'fab fa-github'
},
enableGithubIntegration: false,
githubClientId: null,
githubClientSecret: null,
}
},
methods: {
async init() {
const meta = await os.api('meta', { detail: true });
2021-12-10 06:32:55 +02:00
this.uri = meta.uri;
this.enableGithubIntegration = meta.enableGithubIntegration;
this.githubClientId = meta.githubClientId;
this.githubClientSecret = meta.githubClientSecret;
},
save() {
os.apiWithDialog('admin/update-meta', {
enableGithubIntegration: this.enableGithubIntegration,
githubClientId: this.githubClientId,
githubClientSecret: this.githubClientSecret,
}).then(() => {
2022-02-28 15:42:32 +02:00
refetchInstanceMeta();
});
}
}
});
</script>