2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
<FormSuspense :p="init">
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormSwitch v-model="enableTwitterIntegration">
|
2021-04-22 15:29:33 +02:00
|
|
|
{{ $ts.enable }}
|
|
|
|
</FormSwitch>
|
|
|
|
|
|
|
|
<template v-if="enableTwitterIntegration">
|
|
|
|
<FormInfo>Callback URL: {{ `${url}/api/tw/cb` }}</FormInfo>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="twitterConsumerKey">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
|
|
Consumer Key
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="twitterConsumerSecret">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
|
|
Consumer Secret
|
|
|
|
</FormInput>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<FormButton @click="save" primary><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
|
|
</FormSuspense>
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormSwitch from '@/components/debobigego/switch.vue';
|
|
|
|
import FormInput from '@/components/debobigego/input.vue';
|
|
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
|
|
import FormInfo from '@/components/debobigego/info.vue';
|
|
|
|
import FormSuspense from '@/components/debobigego/suspense.vue';
|
|
|
|
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,
|
|
|
|
FormBase,
|
|
|
|
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 });
|
|
|
|
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>
|