2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
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>
|
|
|
|
|
2022-01-15 09:40:15 +02:00
|
|
|
<script lang="ts" setup>
|
2023-03-16 10:24:49 +02:00
|
|
|
import { watch } from 'vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
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 { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-03-24 10:03:03 +02:00
|
|
|
import { clipsCache } from '@/cache';
|
2020-11-15 05:04:54 +02:00
|
|
|
|
2022-01-15 09:40:15 +02:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'clips/list' as const,
|
2023-04-09 02:03:29 +03:00
|
|
|
noPaging: true,
|
2022-01-15 09:40:15 +02:00
|
|
|
limit: 10,
|
|
|
|
};
|
2020-11-15 05:04:54 +02:00
|
|
|
|
2023-03-16 10:24:49 +02:00
|
|
|
let tab = $ref('my');
|
|
|
|
let favorites = $ref();
|
|
|
|
|
2023-01-03 06:37:32 +02:00
|
|
|
const pagingComponent = $shallowRef<InstanceType<typeof MkPagination>>();
|
2020-11-15 05:04:54 +02:00
|
|
|
|
2023-03-16 10:24:49 +02:00
|
|
|
watch($$(tab), async () => {
|
|
|
|
favorites = await os.api('clips/my-favorites');
|
|
|
|
});
|
|
|
|
|
2022-01-15 09:40:15 +02:00
|
|
|
async function create() {
|
2022-01-28 04:39:49 +02:00
|
|
|
const { canceled, result } = await os.form(i18n.ts.createNewClip, {
|
2022-01-15 09:40:15 +02:00
|
|
|
name: {
|
|
|
|
type: 'string',
|
2022-01-28 04:39:49 +02:00
|
|
|
label: i18n.ts.name,
|
2020-11-15 05:04:54 +02:00
|
|
|
},
|
2022-01-15 09:40:15 +02:00
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
required: false,
|
|
|
|
multiline: true,
|
2022-01-28 04:39:49 +02:00
|
|
|
label: i18n.ts.description,
|
2020-11-15 05:04:54 +02:00
|
|
|
},
|
2022-01-15 09:40:15 +02:00
|
|
|
isPublic: {
|
|
|
|
type: 'boolean',
|
2022-01-28 04:39:49 +02:00
|
|
|
label: i18n.ts.public,
|
2022-01-15 09:40:15 +02:00
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('clips/create', result);
|
|
|
|
|
2023-03-24 09:54:37 +02:00
|
|
|
clipsCache.delete();
|
|
|
|
|
2022-01-15 09:40:15 +02:00
|
|
|
pagingComponent.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onClipCreated() {
|
|
|
|
pagingComponent.reload();
|
|
|
|
}
|
2020-11-15 05:04:54 +02:00
|
|
|
|
2022-01-15 09:40:15 +02:00
|
|
|
function onClipDeleted() {
|
|
|
|
pagingComponent.reload();
|
|
|
|
}
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
2023-03-16 10:24:49 +02:00
|
|
|
const headerTabs = $computed(() => [{
|
|
|
|
key: 'my',
|
|
|
|
title: i18n.ts.myClips,
|
|
|
|
icon: 'ti ti-paperclip',
|
|
|
|
}, {
|
|
|
|
key: 'favorites',
|
|
|
|
title: i18n.ts.favorites,
|
|
|
|
icon: 'ti ti-heart',
|
|
|
|
}]);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.clip,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-paperclip',
|
2022-06-20 11:38:49 +03:00
|
|
|
action: {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-plus',
|
2022-06-20 11:38:49 +03:00
|
|
|
handler: create,
|
2022-01-15 09:40:15 +02:00
|
|
|
},
|
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>
|