2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkSpacer :contentMax="700">
|
2023-05-27 02:35:26 +00:00
|
|
|
<div v-if="tab === 'featured'">
|
2023-01-05 04:59:48 +00:00
|
|
|
<MkPagination v-slot="{items}" :pagination="featuredFlashsPagination">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_s">
|
2023-05-27 02:35:26 +00:00
|
|
|
<MkFlashPreview v-for="flash in items" :key="flash.id" :flash="flash"/>
|
2023-01-06 01:34:49 +00:00
|
|
|
</div>
|
2023-01-05 04:59:48 +00:00
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<div v-else-if="tab === 'my'">
|
2023-01-17 04:40:27 +00:00
|
|
|
<div class="_gaps">
|
2023-09-30 19:53:52 +00:00
|
|
|
<MkButton gradate rounded style="margin: 0 auto;" @click="create()"><i class="ph-plus ph-bold ph-lg"></i></MkButton>
|
2023-01-17 04:40:27 +00:00
|
|
|
<MkPagination v-slot="{items}" :pagination="myFlashsPagination">
|
|
|
|
<div class="_gaps_s">
|
2023-05-27 02:35:26 +00:00
|
|
|
<MkFlashPreview v-for="flash in items" :key="flash.id" :flash="flash"/>
|
2023-01-17 04:40:27 +00:00
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
2023-01-05 04:59:48 +00:00
|
|
|
</div>
|
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<div v-else-if="tab === 'liked'">
|
2023-01-05 04:59:48 +00:00
|
|
|
<MkPagination v-slot="{items}" :pagination="likedFlashsPagination">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_s">
|
2023-05-27 02:35:26 +00:00
|
|
|
<MkFlashPreview v-for="like in items" :key="like.flash.id" :flash="like.flash"/>
|
2023-01-06 01:34:49 +00:00
|
|
|
</div>
|
2023-01-05 04:59:48 +00:00
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { computed, ref } from 'vue';
|
2023-01-05 04:59:48 +00:00
|
|
|
import MkFlashPreview from '@/components/MkFlashPreview.vue';
|
2023-12-27 06:55:09 +00:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2023-01-05 04:59:48 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2024-01-08 05:44:43 +00:00
|
|
|
import { useRouter } from '@/global/router/supplier.js';
|
2023-01-05 04:59:48 +00:00
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const tab = ref('featured');
|
2023-01-05 04:59:48 +00:00
|
|
|
|
|
|
|
const featuredFlashsPagination = {
|
|
|
|
endpoint: 'flash/featured' as const,
|
|
|
|
noPaging: true,
|
2023-12-27 06:55:09 +00:00
|
|
|
};
|
2023-01-05 04:59:48 +00:00
|
|
|
const myFlashsPagination = {
|
|
|
|
endpoint: 'flash/my' as const,
|
|
|
|
limit: 5,
|
2023-12-27 06:55:09 +00:00
|
|
|
};
|
2023-01-05 04:59:48 +00:00
|
|
|
const likedFlashsPagination = {
|
|
|
|
endpoint: 'flash/my-likes' as const,
|
|
|
|
limit: 5,
|
2023-12-27 06:55:09 +00:00
|
|
|
};
|
2023-01-05 04:59:48 +00:00
|
|
|
|
|
|
|
function create() {
|
|
|
|
router.push('/play/new');
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => [{
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-plus ph-bold ph-lg',
|
2023-01-05 04:59:48 +00:00
|
|
|
text: i18n.ts.create,
|
|
|
|
handler: create,
|
|
|
|
}]);
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => [{
|
2023-01-05 04:59:48 +00:00
|
|
|
key: 'featured',
|
|
|
|
title: i18n.ts._play.featured,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-fire ph-bold ph-lg',
|
2023-01-05 04:59:48 +00:00
|
|
|
}, {
|
|
|
|
key: 'my',
|
|
|
|
title: i18n.ts._play.my,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-pencil-line ph-bold ph-lg',
|
2023-01-05 04:59:48 +00:00
|
|
|
}, {
|
|
|
|
key: 'liked',
|
|
|
|
title: i18n.ts._play.liked,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-heart ph-bold ph-lg',
|
2023-01-05 04:59:48 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: 'Play',
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-play ph-bold ph-lg',
|
2023-01-05 04:59:48 +00:00
|
|
|
})));
|
|
|
|
</script>
|