2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2022-01-04 13:16:41 +01:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormSuspense :p="init">
|
2022-05-17 18:31:16 +02:00
|
|
|
<MkInfo class="_formBlock">{{ i18n.ts.proxyAccountDescription }}</MkInfo>
|
2022-01-04 13:16:41 +01:00
|
|
|
<MkKeyValue class="_formBlock">
|
2022-05-17 18:31:16 +02:00
|
|
|
<template #key>{{ i18n.ts.proxyAccount }}</template>
|
|
|
|
<template #value>{{ proxyAccount ? `@${proxyAccount.username}` : i18n.ts.none }}</template>
|
2022-01-04 13:16:41 +01:00
|
|
|
</MkKeyValue>
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:16 +02:00
|
|
|
<FormButton primary class="_formBlock" @click="chooseProxyAccount">{{ i18n.ts.selectAccount }}</FormButton>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormSuspense>
|
2022-01-04 13:16:41 +01:00
|
|
|
</MkSpacer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 18:31:16 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-01-04 13:16:41 +01:00
|
|
|
import MkKeyValue from '@/components/key-value.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
|
|
|
import MkInfo 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';
|
2022-02-28 19:51:31 +01:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-17 18:31:16 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:16 +02:00
|
|
|
let proxyAccount: any = $ref(null);
|
|
|
|
let proxyAccountId: any = $ref(null);
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:16 +02:00
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
proxyAccountId = meta.proxyAccountId;
|
|
|
|
if (proxyAccountId) {
|
|
|
|
proxyAccount = await os.api('users/show', { userId: proxyAccountId });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function chooseProxyAccount() {
|
|
|
|
os.selectUser().then(user => {
|
|
|
|
proxyAccount = user;
|
|
|
|
proxyAccountId = user.id;
|
|
|
|
save();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
proxyAccountId: proxyAccountId,
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.ts.proxyAccount,
|
|
|
|
icon: 'fas fa-ghost',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|