18307c822c
* refactor(client): refactor admin/integrations to use Composition API * Apply review suggestions from @Johann150 Co-authored-by: Johann150 <johann@qwertqwefsday.eu> Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
60 lines
1.8 KiB
Vue
60 lines
1.8 KiB
Vue
<template>
|
|
<FormSuspense :p="init">
|
|
<div class="_formRoot">
|
|
<FormSwitch v-model="enableTwitterIntegration" class="_formBlock">
|
|
<template #label>{{ $ts.enable }}</template>
|
|
</FormSwitch>
|
|
|
|
<template v-if="enableTwitterIntegration">
|
|
<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/tw/cb` }}</FormInfo>
|
|
|
|
<FormInput v-model="twitterConsumerKey" class="_formBlock">
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
<template #label>Consumer Key</template>
|
|
</FormInput>
|
|
|
|
<FormInput v-model="twitterConsumerSecret" class="_formBlock">
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
<template #label>Consumer Secret</template>
|
|
</FormInput>
|
|
</template>
|
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
</div>
|
|
</FormSuspense>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineComponent } from 'vue';
|
|
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';
|
|
import * as os from '@/os';
|
|
import { fetchInstance } from '@/instance';
|
|
|
|
let uri: string = $ref('');
|
|
let enableTwitterIntegration: boolean = $ref(false);
|
|
let twitterConsumerKey: string | null = $ref(null);
|
|
let twitterConsumerSecret: string | null = $ref(null);
|
|
|
|
async function init() {
|
|
const meta = await os.api('admin/meta');
|
|
uri = meta.uri;
|
|
enableTwitterIntegration = meta.enableTwitterIntegration;
|
|
twitterConsumerKey = meta.twitterConsumerKey;
|
|
twitterConsumerSecret = meta.twitterConsumerSecret;
|
|
}
|
|
|
|
function save() {
|
|
os.apiWithDialog('admin/update-meta', {
|
|
enableTwitterIntegration,
|
|
twitterConsumerKey,
|
|
twitterConsumerSecret,
|
|
}).then(() => {
|
|
fetchInstance();
|
|
});
|
|
}
|
|
</script>
|