2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-05 21:04:56 +09:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
2022-06-20 17:38:49 +09:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 20:52:15 +09:00
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
|
2023-01-05 21:04:56 +09:00
|
|
|
<FormSuspense :p="init">
|
|
|
|
<MkInfo>{{ i18n.ts.proxyAccountDescription }}</MkInfo>
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts.proxyAccount }}</template>
|
|
|
|
<template #value>{{ proxyAccount ? `@${proxyAccount.username}` : i18n.ts.none }}</template>
|
|
|
|
</MkKeyValue>
|
2021-04-22 22:29:33 +09:00
|
|
|
|
2023-01-06 09:41:14 +09:00
|
|
|
<MkButton primary @click="chooseProxyAccount">{{ i18n.ts.selectAccount }}</MkButton>
|
2023-01-05 21:04:56 +09:00
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 22:29:33 +09:00
|
|
|
</template>
|
|
|
|
|
2022-05-18 01:31:16 +09:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-08-31 00:24:33 +09:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2023-01-06 09:41:14 +09:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-09-06 18:21:49 +09:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2022-01-04 21:16:41 +09:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-12 02:02:25 +09:00
|
|
|
import * as os from '@/os';
|
2022-03-01 03:51:31 +09:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-18 01:31:16 +09:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 17:38:49 +09:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2021-04-22 22:29:33 +09:00
|
|
|
|
2022-05-18 01:31:16 +09:00
|
|
|
let proxyAccount: any = $ref(null);
|
|
|
|
let proxyAccountId: any = $ref(null);
|
2021-04-22 22:29:33 +09:00
|
|
|
|
2022-05-18 01:31:16 +09: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();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 17:38:49 +09:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.proxyAccount,
|
2022-12-20 08:35:49 +09:00
|
|
|
icon: 'ti ti-ghost',
|
2021-04-22 22:29:33 +09:00
|
|
|
});
|
|
|
|
</script>
|