2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-11-15 03:34:47 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions"/></template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="800">
|
2023-05-19 09:16:26 +00:00
|
|
|
<div v-if="clip" class="_gaps">
|
|
|
|
<div class="_panel">
|
|
|
|
<div v-if="clip.description" :class="$style.description">
|
2023-05-17 02:42:50 +00:00
|
|
|
<Mfm :text="clip.description" :isNote="false" :i="$i"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2023-05-19 09:16:26 +00:00
|
|
|
<MkButton v-if="favorited" v-tooltip="i18n.ts.unfavorite" asLike rounded primary @click="unfavorite()"><i class="ti ti-heart"></i><span v-if="clip.favoritedCount > 0" style="margin-left: 6px;">{{ clip.favoritedCount }}</span></MkButton>
|
|
|
|
<MkButton v-else v-tooltip="i18n.ts.favorite" asLike rounded @click="favorite()"><i class="ti ti-heart"></i><span v-if="clip.favoritedCount > 0" style="margin-left: 6px;">{{ clip.favoritedCount }}</span></MkButton>
|
|
|
|
<div :class="$style.user">
|
|
|
|
<MkAvatar :user="clip.user" :class="$style.avatar" indicator link preview/> <MkUserName :user="clip.user" :nowrap="false"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2021-12-10 07:15:36 +00:00
|
|
|
</div>
|
2020-11-15 03:34:47 +00:00
|
|
|
|
2023-02-22 02:00:34 +00:00
|
|
|
<MkNotes :pagination="pagination" :detail="true"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-11-15 03:34:47 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-18 09:23:54 +00:00
|
|
|
<script lang="ts" setup>
|
2022-06-18 09:27:09 +00:00
|
|
|
import { computed, watch, provide } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2022-06-18 09:23:54 +00:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-03-04 01:17:45 +00:00
|
|
|
import { url } from '@/config';
|
2023-03-16 08:24:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-03-24 07:54:37 +00:00
|
|
|
import { clipsCache } from '@/cache';
|
2020-11-15 03:34:47 +00:00
|
|
|
|
2022-06-18 09:23:54 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
clipId: string,
|
|
|
|
}>();
|
|
|
|
|
2023-09-04 04:33:38 +00:00
|
|
|
let clip: Misskey.entities.Clip = $ref<Misskey.entities.Clip>();
|
2023-03-16 08:24:49 +00:00
|
|
|
let favorited = $ref(false);
|
2022-06-18 09:23:54 +00:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'clips/notes' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
clipId: props.clipId,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
|
|
|
|
const isOwned: boolean | null = $computed<boolean | null>(() => $i && clip && ($i.id === clip.userId));
|
|
|
|
|
|
|
|
watch(() => props.clipId, async () => {
|
|
|
|
clip = await os.api('clips/show', {
|
|
|
|
clipId: props.clipId,
|
|
|
|
});
|
2023-03-16 08:24:49 +00:00
|
|
|
favorited = clip.isFavorited;
|
2022-06-18 09:23:54 +00:00
|
|
|
}, {
|
|
|
|
immediate: true,
|
2023-07-07 22:08:16 +00:00
|
|
|
});
|
2022-06-18 09:23:54 +00:00
|
|
|
|
2023-03-31 06:01:56 +00:00
|
|
|
provide('currentClip', $$(clip));
|
2022-06-18 09:27:09 +00:00
|
|
|
|
2023-03-16 08:24:49 +00:00
|
|
|
function favorite() {
|
|
|
|
os.apiWithDialog('clips/favorite', {
|
|
|
|
clipId: props.clipId,
|
|
|
|
}).then(() => {
|
|
|
|
favorited = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unfavorite() {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.unfavoriteConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
os.apiWithDialog('clips/unfavorite', {
|
|
|
|
clipId: props.clipId,
|
|
|
|
}).then(() => {
|
|
|
|
favorited = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => clip && isOwned ? [{
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-pencil',
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.edit,
|
|
|
|
handler: async (): Promise<void> => {
|
|
|
|
const { canceled, result } = await os.form(clip.name, {
|
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
label: i18n.ts.name,
|
|
|
|
default: clip.name,
|
2020-11-15 03:34:47 +00:00
|
|
|
},
|
2022-06-20 08:38:49 +00:00
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
required: false,
|
|
|
|
multiline: true,
|
|
|
|
label: i18n.ts.description,
|
|
|
|
default: clip.description,
|
2020-11-15 03:34:47 +00:00
|
|
|
},
|
2022-06-20 08:38:49 +00:00
|
|
|
isPublic: {
|
|
|
|
type: 'boolean',
|
|
|
|
label: i18n.ts.public,
|
|
|
|
default: clip.isPublic,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('clips/update', {
|
|
|
|
clipId: clip.id,
|
|
|
|
...result,
|
|
|
|
});
|
2023-03-24 07:54:37 +00:00
|
|
|
|
|
|
|
clipsCache.delete();
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
2023-03-04 01:17:45 +00:00
|
|
|
}, ...(clip.isPublic ? [{
|
|
|
|
icon: 'ti ti-share',
|
|
|
|
text: i18n.ts.share,
|
|
|
|
handler: async (): Promise<void> => {
|
|
|
|
navigator.share({
|
|
|
|
title: clip.name,
|
|
|
|
text: clip.description,
|
|
|
|
url: `${url}/clips/${clip.id}`,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}] : []), {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-trash',
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.delete,
|
|
|
|
danger: true,
|
|
|
|
handler: async (): Promise<void> => {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.t('deleteAreYouSure', { x: clip.name }),
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('clips/delete', {
|
|
|
|
clipId: clip.id,
|
|
|
|
});
|
2023-03-24 07:54:37 +00:00
|
|
|
|
|
|
|
clipsCache.delete();
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
|
|
|
}] : null);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => clip ? {
|
|
|
|
title: clip.name,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-paperclip',
|
2022-06-20 08:38:49 +00:00
|
|
|
} : null));
|
2020-11-15 03:34:47 +00:00
|
|
|
</script>
|
|
|
|
|
2023-05-19 09:16:26 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.description {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user {
|
|
|
|
--height: 32px;
|
|
|
|
padding: 16px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
line-height: var(--height);
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: var(--height);
|
|
|
|
height: var(--height);
|
2020-11-15 03:34:47 +00:00
|
|
|
}
|
|
|
|
</style>
|