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() {
const meta = await os.api('admin/meta');
proxyAccountId = meta.proxyAccountId;
if (proxyAccountId) {
proxyAccount = await os.api('users/show', { userId: proxyAccountId });
}
}
data() { function chooseProxyAccount() {
return { os.selectUser().then(user => {
[symbols.PAGE_INFO]: { proxyAccount = user;
title: this.$ts.proxyAccount, proxyAccountId = user.id;
icon: 'fas fa-ghost', save();
bg: 'var(--bg)', });
}, }
proxyAccount: null,
proxyAccountId: null,
}
},
methods: { function save() {
async init() { os.apiWithDialog('admin/update-meta', {
const meta = await os.api('admin/meta'); proxyAccountId: proxyAccountId,
this.proxyAccountId = meta.proxyAccountId; }).then(() => {
if (this.proxyAccountId) { fetchInstance();
this.proxyAccount = await os.api('users/show', { userId: this.proxyAccountId }); });
} }
},
chooseProxyAccount() { defineExpose({
os.selectUser().then(user => { [symbols.PAGE_INFO]: {
this.proxyAccount = user; title: i18n.ts.proxyAccount,
this.proxyAccountId = user.id; icon: 'fas fa-ghost',
this.save(); bg: 'var(--bg)',
});
},
save() {
os.apiWithDialog('admin/update-meta', {
proxyAccountId: this.proxyAccountId,
}).then(() => {
fetchInstance();
});
}
} }
}); });
</script> </script>