jormungandr-bite/packages/client/src/pages/explore.vue

91 lines
2.1 KiB
Vue
Raw Normal View History

<template>
<MkStickyContainer>
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
<div class="lznhrdub">
2022-09-13 17:36:58 -06:00
<MkSpacer :content-max="1200">
<swiper
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="!(deviceKind === 'desktop' && !defaultStore.state.swipeOnDesktop)"
2022-09-13 17:36:58 -06:00
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>
<swiper-slide>
<XFeatured/>
</swiper-slide>
<swiper-slide>
<XUsers/>
</swiper-slide>
</swiper>
</MkSpacer>
</div>
</MkStickyContainer>
</template>
<script lang="ts" setup>
2022-11-12 14:38:28 -07:00
import { computed, watch, onMounted } from 'vue';
2022-09-09 13:09:12 -06:00
import { Virtual } from 'swiper';
2022-10-25 12:54:08 -06:00
import { Swiper, SwiperSlide } from 'swiper/vue';
import XFeatured from './explore.featured.vue';
import XUsers from './explore.users.vue';
2022-09-13 17:36:58 -06:00
import type MkFolder from '@/components/MkFolder.vue';
import { definePageMetadata } from '@/scripts/page-metadata';
2022-09-15 11:43:48 -06:00
import { deviceKind } from '@/scripts/device-kind';
import { i18n } from '@/i18n';
import { defaultStore } from '@/store';
2022-09-09 13:09:12 -06:00
import 'swiper/scss';
import 'swiper/scss/virtual';
const props = defineProps<{
tag?: string;
}>();
const tabs = ['featured', 'users'];
2022-10-25 20:19:35 -06:00
let tab = $ref(tabs[0]);
watch($$(tab), () => (syncSlide(tabs.indexOf(tab))));
2022-09-09 13:09:12 -06:00
let tagsEl = $ref<InstanceType<typeof MkFolder>>();
watch(() => props.tag, () => {
if (tagsEl) tagsEl.toggleContent(props.tag == null);
});
const headerActions = $computed(() => []);
const headerTabs = $computed(() => [{
key: 'featured',
2023-03-11 14:01:04 -07:00
icon: 'ph-lightning ph-bold ph-lg',
title: i18n.ts.featured,
}, {
2022-07-13 03:09:41 -06:00
key: 'users',
2023-03-11 14:01:04 -07:00
icon: 'ph-users ph-bold ph-lg',
title: i18n.ts.users,
}]);
definePageMetadata(computed(() => ({
title: i18n.ts.explore,
2023-03-11 14:01:04 -07:00
icon: 'ph-compass ph-bold ph-lg',
})));
2022-09-09 13:09:12 -06:00
let swiperRef = null;
function setSwiperRef(swiper) {
swiperRef = swiper;
2022-09-09 14:59:15 -06:00
syncSlide(tabs.indexOf(tab));
2022-09-09 13:09:12 -06:00
}
function onSlideChange() {
2022-10-25 20:19:35 -06:00
tab = tabs[swiperRef.activeIndex];
2022-09-09 13:09:12 -06:00
}
function syncSlide(index) {
swiperRef.slideTo(index);
}
2022-11-12 14:38:28 -07:00
onMounted(() => {
syncSlide(tabs.indexOf(swiperRef.activeIndex));
});
</script>