mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-22 14:05:12 +00:00
enhance(frontend): tweak control panel
This commit is contained in:
parent
d435d04eaf
commit
6ba97a7763
4 changed files with 40 additions and 80 deletions
|
@ -199,11 +199,6 @@ const menuDef = computed(() => [{
|
||||||
text: i18n.ts.relays,
|
text: i18n.ts.relays,
|
||||||
to: '/admin/relays',
|
to: '/admin/relays',
|
||||||
active: currentPage.value?.route.name === 'relays',
|
active: currentPage.value?.route.name === 'relays',
|
||||||
}, {
|
|
||||||
icon: 'ti ti-ghost',
|
|
||||||
text: i18n.ts.proxyAccount,
|
|
||||||
to: '/admin/proxy-account',
|
|
||||||
active: currentPage.value?.route.name === 'proxy-account',
|
|
||||||
}, {
|
}, {
|
||||||
icon: 'ti ti-link',
|
icon: 'ti ti-link',
|
||||||
text: i18n.ts.externalServices,
|
text: i18n.ts.externalServices,
|
||||||
|
|
|
@ -1,71 +0,0 @@
|
||||||
<!--
|
|
||||||
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
||||||
SPDX-License-Identifier: AGPL-3.0-only
|
|
||||||
-->
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<MkStickyContainer>
|
|
||||||
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
||||||
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
|
|
||||||
<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>
|
|
||||||
|
|
||||||
<MkButton primary @click="chooseProxyAccount">{{ i18n.ts.selectAccount }}</MkButton>
|
|
||||||
</FormSuspense>
|
|
||||||
</MkSpacer>
|
|
||||||
</MkStickyContainer>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { ref, computed } from 'vue';
|
|
||||||
import * as Misskey from 'misskey-js';
|
|
||||||
import MkKeyValue from '@/components/MkKeyValue.vue';
|
|
||||||
import MkButton from '@/components/MkButton.vue';
|
|
||||||
import MkInfo from '@/components/MkInfo.vue';
|
|
||||||
import FormSuspense from '@/components/form/suspense.vue';
|
|
||||||
import * as os from '@/os.js';
|
|
||||||
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
||||||
import { fetchInstance } from '@/instance.js';
|
|
||||||
import { i18n } from '@/i18n.js';
|
|
||||||
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
||||||
|
|
||||||
const proxyAccount = ref<Misskey.entities.UserDetailed | null>(null);
|
|
||||||
const proxyAccountId = ref<string | null>(null);
|
|
||||||
|
|
||||||
async function init() {
|
|
||||||
const meta = await misskeyApi('admin/meta');
|
|
||||||
proxyAccountId.value = meta.proxyAccountId;
|
|
||||||
if (proxyAccountId.value) {
|
|
||||||
proxyAccount.value = await misskeyApi('users/show', { userId: proxyAccountId.value });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function chooseProxyAccount() {
|
|
||||||
os.selectUser({ localOnly: true }).then(user => {
|
|
||||||
proxyAccount.value = user;
|
|
||||||
proxyAccountId.value = user.id;
|
|
||||||
save();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function save() {
|
|
||||||
os.apiWithDialog('admin/update-meta', {
|
|
||||||
proxyAccountId: proxyAccountId.value,
|
|
||||||
}).then(() => {
|
|
||||||
fetchInstance(true);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const headerActions = computed(() => []);
|
|
||||||
|
|
||||||
const headerTabs = computed(() => []);
|
|
||||||
|
|
||||||
definePageMetadata(() => ({
|
|
||||||
title: i18n.ts.proxyAccount,
|
|
||||||
icon: 'ti ti-ghost',
|
|
||||||
}));
|
|
||||||
</script>
|
|
|
@ -208,6 +208,21 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</MkFolder>
|
</MkFolder>
|
||||||
|
|
||||||
|
<MkFolder>
|
||||||
|
<template #icon><i class="ti ti-ghost"></i></template>
|
||||||
|
<template #label>{{ i18n.ts.proxyAccount }}</template>
|
||||||
|
|
||||||
|
<div class="_gaps">
|
||||||
|
<MkInfo>{{ i18n.ts.proxyAccountDescription }}</MkInfo>
|
||||||
|
<MkKeyValue>
|
||||||
|
<template #key>{{ i18n.ts.proxyAccount }}</template>
|
||||||
|
<template #value>{{ proxyAccount ? `@${proxyAccount.username}` : i18n.ts.none }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
|
||||||
|
<MkButton primary @click="chooseProxyAccount">{{ i18n.ts.selectAccount }}</MkButton>
|
||||||
|
</div>
|
||||||
|
</MkFolder>
|
||||||
</div>
|
</div>
|
||||||
</FormSuspense>
|
</FormSuspense>
|
||||||
</MkSpacer>
|
</MkSpacer>
|
||||||
|
@ -232,6 +247,10 @@ import { definePageMetadata } from '@/scripts/page-metadata.js';
|
||||||
import MkButton from '@/components/MkButton.vue';
|
import MkButton from '@/components/MkButton.vue';
|
||||||
import MkFolder from '@/components/MkFolder.vue';
|
import MkFolder from '@/components/MkFolder.vue';
|
||||||
import MkSelect from '@/components/MkSelect.vue';
|
import MkSelect from '@/components/MkSelect.vue';
|
||||||
|
import * as Misskey from 'misskey-js';
|
||||||
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
||||||
|
|
||||||
|
const proxyAccount = ref<Misskey.entities.UserDetailed | null>(null);
|
||||||
|
|
||||||
const name = ref<string | null>(null);
|
const name = ref<string | null>(null);
|
||||||
const shortName = ref<string | null>(null);
|
const shortName = ref<string | null>(null);
|
||||||
|
@ -256,6 +275,7 @@ const urlPreviewMaximumContentLength = ref<number>(1024 * 1024 * 10);
|
||||||
const urlPreviewRequireContentLength = ref<boolean>(true);
|
const urlPreviewRequireContentLength = ref<boolean>(true);
|
||||||
const urlPreviewUserAgent = ref<string | null>(null);
|
const urlPreviewUserAgent = ref<string | null>(null);
|
||||||
const urlPreviewSummaryProxyUrl = ref<string | null>(null);
|
const urlPreviewSummaryProxyUrl = ref<string | null>(null);
|
||||||
|
const proxyAccountId = ref<string | null>(null);
|
||||||
|
|
||||||
async function init(): Promise<void> {
|
async function init(): Promise<void> {
|
||||||
const meta = await misskeyApi('admin/meta');
|
const meta = await misskeyApi('admin/meta');
|
||||||
|
@ -282,6 +302,10 @@ async function init(): Promise<void> {
|
||||||
urlPreviewRequireContentLength.value = meta.urlPreviewRequireContentLength;
|
urlPreviewRequireContentLength.value = meta.urlPreviewRequireContentLength;
|
||||||
urlPreviewUserAgent.value = meta.urlPreviewUserAgent;
|
urlPreviewUserAgent.value = meta.urlPreviewUserAgent;
|
||||||
urlPreviewSummaryProxyUrl.value = meta.urlPreviewSummaryProxyUrl;
|
urlPreviewSummaryProxyUrl.value = meta.urlPreviewSummaryProxyUrl;
|
||||||
|
proxyAccountId.value = meta.proxyAccountId;
|
||||||
|
if (proxyAccountId.value) {
|
||||||
|
proxyAccount.value = await misskeyApi('users/show', { userId: proxyAccountId.value });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function saveInfo() {
|
function saveInfo() {
|
||||||
|
@ -349,6 +373,22 @@ function saveUrlPreview() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function chooseProxyAccount() {
|
||||||
|
os.selectUser({ localOnly: true }).then(user => {
|
||||||
|
proxyAccount.value = user;
|
||||||
|
proxyAccountId.value = user.id;
|
||||||
|
saveProxyAccount();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function saveProxyAccount() {
|
||||||
|
os.apiWithDialog('admin/update-meta', {
|
||||||
|
proxyAccountId: proxyAccountId.value,
|
||||||
|
}).then(() => {
|
||||||
|
fetchInstance(true);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const headerTabs = computed(() => []);
|
const headerTabs = computed(() => []);
|
||||||
|
|
||||||
definePageMetadata(() => ({
|
definePageMetadata(() => ({
|
||||||
|
|
|
@ -462,10 +462,6 @@ const routes: RouteDef[] = [{
|
||||||
path: '/relays',
|
path: '/relays',
|
||||||
name: 'relays',
|
name: 'relays',
|
||||||
component: page(() => import('@/pages/admin/relays.vue')),
|
component: page(() => import('@/pages/admin/relays.vue')),
|
||||||
}, {
|
|
||||||
path: '/proxy-account',
|
|
||||||
name: 'proxy-account',
|
|
||||||
component: page(() => import('@/pages/admin/proxy-account.vue')),
|
|
||||||
}, {
|
}, {
|
||||||
path: '/external-services',
|
path: '/external-services',
|
||||||
name: 'external-services',
|
name: 'external-services',
|
||||||
|
|
Loading…
Reference in a new issue