refactor(client): refactor admin/proxy-account to use Composition API (#8675)

This commit is contained in:
Andreas Nedbal 2022-05-17 18:31:16 +02:00 committed by GitHub
parent 7c5c27cbe3
commit 13999d953b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 48 deletions

View File

@ -1,19 +1,19 @@
<template> <template>
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32"> <MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
<FormSuspense :p="init"> <FormSuspense :p="init">
<MkInfo class="_formBlock">{{ $ts.proxyAccountDescription }}</MkInfo> <MkInfo class="_formBlock">{{ i18n.ts.proxyAccountDescription }}</MkInfo>
<MkKeyValue class="_formBlock"> <MkKeyValue class="_formBlock">
<template #key>{{ $ts.proxyAccount }}</template> <template #key>{{ i18n.ts.proxyAccount }}</template>
<template #value>{{ proxyAccount ? `@${proxyAccount.username}` : $ts.none }}</template> <template #value>{{ proxyAccount ? `@${proxyAccount.username}` : i18n.ts.none }}</template>
</MkKeyValue> </MkKeyValue>
<FormButton primary class="_formBlock" @click="chooseProxyAccount">{{ $ts.selectAccount }}</FormButton> <FormButton primary class="_formBlock" @click="chooseProxyAccount">{{ i18n.ts.selectAccount }}</FormButton>
</FormSuspense> </FormSuspense>
</MkSpacer> </MkSpacer>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineComponent } from 'vue'; import { } from 'vue';
import MkKeyValue from '@/components/key-value.vue'; import MkKeyValue from '@/components/key-value.vue';
import FormButton from '@/components/ui/button.vue'; import FormButton from '@/components/ui/button.vue';
import MkInfo from '@/components/ui/info.vue'; import MkInfo from '@/components/ui/info.vue';
@ -21,53 +21,40 @@ import FormSuspense from '@/components/form/suspense.vue';
import * as os from '@/os'; import * as os from '@/os';
import * as symbols from '@/symbols'; import * as symbols from '@/symbols';
import { fetchInstance } from '@/instance'; import { fetchInstance } from '@/instance';
import { i18n } from '@/i18n';
export default defineComponent({ let proxyAccount: any = $ref(null);
components: { let proxyAccountId: any = $ref(null);
MkKeyValue,
FormButton,
MkInfo,
FormSuspense,
},
emits: ['info'], async function init() {
data() {
return {
[symbols.PAGE_INFO]: {
title: this.$ts.proxyAccount,
icon: 'fas fa-ghost',
bg: 'var(--bg)',
},
proxyAccount: null,
proxyAccountId: null,
}
},
methods: {
async init() {
const meta = await os.api('admin/meta'); const meta = await os.api('admin/meta');
this.proxyAccountId = meta.proxyAccountId; proxyAccountId = meta.proxyAccountId;
if (this.proxyAccountId) { if (proxyAccountId) {
this.proxyAccount = await os.api('users/show', { userId: this.proxyAccountId }); proxyAccount = await os.api('users/show', { userId: proxyAccountId });
}
} }
},
chooseProxyAccount() { function chooseProxyAccount() {
os.selectUser().then(user => { os.selectUser().then(user => {
this.proxyAccount = user; proxyAccount = user;
this.proxyAccountId = user.id; proxyAccountId = user.id;
this.save(); save();
}); });
}, }
save() { function save() {
os.apiWithDialog('admin/update-meta', { os.apiWithDialog('admin/update-meta', {
proxyAccountId: this.proxyAccountId, proxyAccountId: proxyAccountId,
}).then(() => { }).then(() => {
fetchInstance(); fetchInstance();
}); });
} }
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.ts.proxyAccount,
icon: 'fas fa-ghost',
bg: 'var(--bg)',
} }
}); });
</script> </script>