2021-04-22 16:29:33 +03:00
|
|
|
<template>
|
2022-01-04 14:16:41 +02:00
|
|
|
<FormSuspense :p="init">
|
2023-01-06 06:40:17 +02:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 07:59:54 +02:00
|
|
|
<MkSwitch v-model="enableTwitterIntegration">
|
2022-07-20 16:24:26 +03:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
2023-01-07 07:59:54 +02:00
|
|
|
</MkSwitch>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
|
|
|
<template v-if="enableTwitterIntegration">
|
2023-01-05 14:04:56 +02:00
|
|
|
<FormInfo>Callback URL: {{ `${uri}/api/tw/cb` }}</FormInfo>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkInput v-model="twitterConsumerKey">
|
2022-12-19 12:01:30 +02:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
2022-01-04 11:35:21 +02:00
|
|
|
<template #label>Consumer Key</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkInput>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkInput v-model="twitterConsumerSecret">
|
2022-12-19 12:01:30 +02:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
2022-01-04 11:35:21 +02:00
|
|
|
<template #label>Consumer Secret</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkInput>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2023-01-06 02:41:14 +02:00
|
|
|
<MkButton primary @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
|
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';
|
2023-01-07 07:59:54 +02:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-01-06 02:41:14 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
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';
|
2022-02-28 20:51:31 +02:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-07-20 16:24:26 +03:00
|
|
|
import { i18n } from '@/i18n';
|
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>
|