2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2022-01-04 10:35:21 +01:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormSuspense :p="init">
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormSwitch v-model="enableTwitterIntegration" class="_formBlock">
|
|
|
|
<template #label>{{ $ts.enable }}</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormSwitch>
|
|
|
|
|
|
|
|
<template v-if="enableTwitterIntegration">
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/tw/cb` }}</FormInfo>
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormInput v-model="twitterConsumerKey" class="_formBlock">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2022-01-04 10:35:21 +01:00
|
|
|
<template #label>Consumer Key</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormInput>
|
|
|
|
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormInput v-model="twitterConsumerSecret" class="_formBlock">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2022-01-04 10:35:21 +01:00
|
|
|
<template #label>Consumer Secret</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormInput>
|
|
|
|
</template>
|
|
|
|
|
2022-01-04 10:35:21 +01:00
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormSuspense>
|
2022-01-04 10:35:21 +01:00
|
|
|
</MkSpacer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2022-01-04 10:35:21 +01: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 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
|
|
|
import { fetchInstance } from '@/instance';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormSwitch,
|
|
|
|
FormInput,
|
|
|
|
FormInfo,
|
|
|
|
FormButton,
|
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: 'Twitter',
|
|
|
|
icon: 'fab fa-twitter'
|
|
|
|
},
|
|
|
|
enableTwitterIntegration: false,
|
|
|
|
twitterConsumerKey: null,
|
|
|
|
twitterConsumerSecret: null,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
2021-12-10 05:32:55 +01:00
|
|
|
this.uri = meta.uri;
|
2021-04-22 15:29:33 +02:00
|
|
|
this.enableTwitterIntegration = meta.enableTwitterIntegration;
|
|
|
|
this.twitterConsumerKey = meta.twitterConsumerKey;
|
|
|
|
this.twitterConsumerSecret = meta.twitterConsumerSecret;
|
|
|
|
},
|
|
|
|
save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
enableTwitterIntegration: this.enableTwitterIntegration,
|
|
|
|
twitterConsumerKey: this.twitterConsumerKey,
|
|
|
|
twitterConsumerSecret: this.twitterConsumerSecret,
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|