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