2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2022-06-22 07:29:21 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-04-12 02:40:08 +00:00
|
|
|
<div>
|
2022-07-01 14:33:47 +00:00
|
|
|
<div v-if="tab === 'featured'">
|
|
|
|
<XFeatured/>
|
|
|
|
</div>
|
2022-07-13 09:09:41 +00:00
|
|
|
<div v-else-if="tab === 'users'">
|
|
|
|
<XUsers/>
|
2022-07-01 14:33:47 +00:00
|
|
|
</div>
|
2023-02-22 05:43:18 +00:00
|
|
|
<div v-else-if="tab === 'roles'">
|
|
|
|
<XRoles/>
|
|
|
|
</div>
|
2022-07-01 14:33:47 +00:00
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { computed, watch, ref, shallowRef } from 'vue';
|
2022-07-01 14:33:47 +00:00
|
|
|
import XFeatured from './explore.featured.vue';
|
|
|
|
import XUsers from './explore.users.vue';
|
2023-02-22 05:43:18 +00:00
|
|
|
import XRoles from './explore.roles.vue';
|
2023-01-09 00:41:25 +00:00
|
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-01-02 04:19:32 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-06-20 08:38:49 +00:00
|
|
|
tag?: string;
|
2023-01-02 04:19:32 +00:00
|
|
|
initialTab?: string;
|
|
|
|
}>(), {
|
|
|
|
initialTab: 'featured',
|
|
|
|
});
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const tab = ref(props.initialTab);
|
|
|
|
const tagsEl = shallowRef<InstanceType<typeof MkFoldableSection>>();
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
watch(() => props.tag, () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (tagsEl.value) tagsEl.value.toggleContent(props.tag == null);
|
2022-06-20 08:38:49 +00:00
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => [{
|
2022-07-01 14:33:47 +00:00
|
|
|
key: 'featured',
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-lightning ph-bold ph-lg',
|
2022-07-01 14:33:47 +00:00
|
|
|
title: i18n.ts.featured,
|
2022-06-20 08:38:49 +00:00
|
|
|
}, {
|
2022-07-13 09:09:41 +00:00
|
|
|
key: 'users',
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-users ph-bold ph-lg',
|
2022-07-01 14:33:47 +00:00
|
|
|
title: i18n.ts.users,
|
2023-02-22 05:43:18 +00:00
|
|
|
}, {
|
|
|
|
key: 'roles',
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-seal-check ph-bold ph-lg',
|
2023-02-22 05:43:18 +00:00
|
|
|
title: i18n.ts.roles,
|
2022-06-20 08:38:49 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.explore,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-hash ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|