hide instance following / followers tabs from logged-out users

This commit is contained in:
Hazelnoot 2024-11-02 12:03:14 -04:00
parent 37fd454f70
commit 872f987845

View file

@ -194,6 +194,7 @@ import { getProxiedImageUrlNullable } from '@/scripts/media-proxy.js';
import { dateString } from '@/filters/date.js'; import { dateString } from '@/filters/date.js';
import MkTextarea from '@/components/MkTextarea.vue'; import MkTextarea from '@/components/MkTextarea.vue';
import MkInfo from '@/components/MkInfo.vue'; import MkInfo from '@/components/MkInfo.vue';
import { $i } from '@/account.js';
const props = defineProps<{ const props = defineProps<{
host: string; host: string;
@ -422,20 +423,28 @@ const headerTabs = computed(() => [{
key: 'users', key: 'users',
title: i18n.ts.users, title: i18n.ts.users,
icon: 'ti ti-users', icon: 'ti ti-users',
}, { }, ...getFollowingTabs(), {
key: 'following',
title: i18n.ts.following,
icon: 'ti ti-arrow-right',
}, {
key: 'followers',
title: i18n.ts.followers,
icon: 'ti ti-arrow-left',
}, {
key: 'raw', key: 'raw',
title: 'Raw', title: 'Raw',
icon: 'ti ti-code', icon: 'ti ti-code',
}]); }]);
function getFollowingTabs() {
if (!$i) return [];
return [
{
key: 'following',
title: i18n.ts.following,
icon: 'ti ti-arrow-right',
},
{
key: 'followers',
title: i18n.ts.followers,
icon: 'ti ti-arrow-left',
},
];
}
definePageMetadata(() => ({ definePageMetadata(() => ({
title: props.host, title: props.host,
icon: 'ti ti-server', icon: 'ti ti-server',