iceshrimp-legacy/packages/client/src/pages/explore.vue

97 lines
2 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<MkStickyContainer>
<template #header
><MkPageHeader
v-model:tab="tab"
:actions="headerActions"
:tabs="headerTabs"
/></template>
<div class="lznhrdub">
<MkSpacer :content-max="1200">
2023-05-26 04:47:10 +02:00
<swiper
:touch-angle="25"
:threshold="10"
:centeredSlides="true"
2023-04-08 02:01:42 +02:00
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="
!(
deviceKind === 'desktop' &&
!defaultStore.state.swipeOnDesktop
)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>
<swiper-slide>
<XUsers />
2023-04-08 02:01:42 +02:00
</swiper-slide>
<swiper-slide>
<XFeatured />
2023-04-08 02:01:42 +02:00
</swiper-slide>
</swiper>
</MkSpacer>
</div>
</MkStickyContainer>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { computed, watch, onMounted } from "vue";
import { Virtual } from "swiper";
import { Swiper, SwiperSlide } from "swiper/vue";
import XFeatured from "./explore.featured.vue";
import XUsers from "./explore.users.vue";
import { definePageMetadata } from "@/scripts/page-metadata";
import { deviceKind } from "@/scripts/device-kind";
import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
import "swiper/scss";
import "swiper/scss/virtual";
2023-04-20 06:02:12 +02:00
const tabs = ["users", "featured"];
2022-10-26 04:19:35 +02:00
let tab = $ref(tabs[0]);
2023-04-08 02:01:42 +02:00
watch($$(tab), () => syncSlide(tabs.indexOf(tab)));
2022-09-09 21:09:12 +02:00
const headerActions = $computed(() => []);
2023-04-08 02:01:42 +02:00
const headerTabs = $computed(() => [
{
key: "users",
icon: "ph-users ph-bold ph-lg",
title: i18n.ts.users,
},
{
key: "featured",
icon: "ph-lightning ph-bold ph-lg",
title: i18n.ts.featured,
},
2023-04-08 02:01:42 +02:00
]);
2023-04-08 02:01:42 +02:00
definePageMetadata(
computed(() => ({
title: i18n.ts.explore,
icon: "ph-compass ph-bold ph-lg",
}))
);
2022-09-09 21:09:12 +02:00
let swiperRef = null;
function setSwiperRef(swiper) {
swiperRef = swiper;
2022-09-09 22:59:15 +02:00
syncSlide(tabs.indexOf(tab));
2022-09-09 21:09:12 +02:00
}
function onSlideChange() {
2022-10-26 04:19:35 +02:00
tab = tabs[swiperRef.activeIndex];
2022-09-09 21:09:12 +02:00
}
function syncSlide(index) {
swiperRef.slideTo(index);
}
2022-11-12 22:38:28 +01:00
onMounted(() => {
syncSlide(tabs.indexOf(swiperRef.activeIndex));
});
</script>