Sharkey/packages/frontend/src/pages/my-clips/index.vue

116 lines
2.7 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2022-07-20 16:24:26 +03:00
<template>
<MkStickyContainer>
2023-03-16 10:24:49 +02:00
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
2023-05-19 14:52:15 +03:00
<MkSpacer :contentMax="700">
2023-03-17 08:09:43 +02:00
<div v-if="tab === 'my'" class="_gaps">
2023-03-16 10:24:49 +02:00
<MkButton primary rounded class="add" @click="create"><i class="ti ti-plus"></i> {{ i18n.ts.add }}</MkButton>
2020-11-15 05:04:54 +02:00
2023-03-17 08:09:43 +02:00
<MkPagination v-slot="{items}" ref="pagingComponent" :pagination="pagination" class="_gaps">
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`">
<MkClipPreview :clip="item"/>
2022-07-20 16:24:26 +03:00
</MkA>
</MkPagination>
</div>
2023-03-16 10:24:49 +02:00
<div v-else-if="tab === 'favorites'" class="_gaps">
2023-03-17 08:09:43 +02:00
<MkA v-for="item in favorites" :key="item.id" :to="`/clips/${item.id}`">
<MkClipPreview :clip="item"/>
2023-03-16 10:24:49 +02:00
</MkA>
</div>
2022-07-20 16:24:26 +03:00
</MkSpacer>
</MkStickyContainer>
2020-11-15 05:04:54 +02:00
</template>
<script lang="ts" setup>
import { watch, ref, shallowRef, computed } from 'vue';
import * as Misskey from 'misskey-js';
import MkPagination from '@/components/MkPagination.vue';
import MkButton from '@/components/MkButton.vue';
2023-03-17 08:09:43 +02:00
import MkClipPreview from '@/components/MkClipPreview.vue';
2023-09-19 10:37:43 +03:00
import * as os from '@/os.js';
import { misskeyApi } from '@/scripts/misskey-api.js';
2023-09-19 10:37:43 +03:00
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
import { clipsCache } from '@/cache.js';
2020-11-15 05:04:54 +02:00
const pagination = {
endpoint: 'clips/list' as const,
noPaging: true,
limit: 10,
};
2020-11-15 05:04:54 +02:00
const tab = ref('my');
const favorites = ref<Misskey.entities.Clip[] | null>(null);
2023-03-16 10:24:49 +02:00
const pagingComponent = shallowRef<InstanceType<typeof MkPagination>>();
2020-11-15 05:04:54 +02:00
watch(tab, async () => {
favorites.value = await misskeyApi('clips/my-favorites');
2023-03-16 10:24:49 +02:00
});
async function create() {
const { canceled, result } = await os.form(i18n.ts.createNewClip, {
name: {
type: 'string',
label: i18n.ts.name,
2020-11-15 05:04:54 +02:00
},
description: {
type: 'string',
required: false,
multiline: true,
treatAsMfm: true,
label: i18n.ts.description,
2020-11-15 05:04:54 +02:00
},
isPublic: {
type: 'boolean',
label: i18n.ts.public,
default: false,
},
});
if (canceled) return;
os.apiWithDialog('clips/create', result);
clipsCache.delete();
pagingComponent.value.reload();
}
function onClipCreated() {
pagingComponent.value.reload();
}
2020-11-15 05:04:54 +02:00
function onClipDeleted() {
pagingComponent.value.reload();
}
const headerActions = computed(() => []);
const headerTabs = computed(() => [{
2023-03-16 10:24:49 +02:00
key: 'my',
title: i18n.ts.myClips,
icon: 'ti ti-paperclip',
}, {
key: 'favorites',
title: i18n.ts.favorites,
icon: 'ti ti-heart',
}]);
definePageMetadata({
title: i18n.ts.clip,
icon: 'ti ti-paperclip',
action: {
icon: 'ti ti-plus',
handler: create,
},
2020-11-15 05:04:54 +02:00
});
</script>
2020-11-15 05:34:47 +02:00
2023-03-16 10:24:49 +02:00
<style lang="scss" module>
</style>