2021-04-22 16:29:33 +03:00
|
|
|
<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="enableTwitterIntegration" class="_formBlock">
|
|
|
|
<template #label>{{ $ts.enable }}</template>
|
2021-04-22 16:29:33 +03:00
|
|
|
</FormSwitch>
|
|
|
|
|
|
|
|
<template v-if="enableTwitterIntegration">
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/tw/cb` }}</FormInfo>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormInput v-model="twitterConsumerKey" class="_formBlock">
|
2021-04-22 16:29:33 +03:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2022-01-04 11:35:21 +02:00
|
|
|
<template #label>Consumer Key</template>
|
2021-04-22 16:29:33 +03:00
|
|
|
</FormInput>
|
|
|
|
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormInput v-model="twitterConsumerSecret" class="_formBlock">
|
2021-04-22 16:29:33 +03:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2022-01-04 11:35:21 +02:00
|
|
|
<template #label>Consumer Secret</template>
|
2021-04-22 16:29:33 +03:00
|
|
|
</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>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 19:31:48 +03:00
|
|
|
<script lang="ts" setup>
|
2021-04-22 16:29:33 +03:00
|
|
|
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';
|
2022-02-28 20:51:31 +02:00
|
|
|
import { fetchInstance } from '@/instance';
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-17 19:31:48 +03:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
</script>
|