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