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-11-04 09:27:22 +00:00
|
|
|
<Mfm :text="clip.description" :isNote="false"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2023-09-30 19:53:52 +00:00
|
|
|
<MkButton v-if="favorited" v-tooltip="i18n.ts.unfavorite" asLike rounded primary @click="unfavorite()"><i class="ph-heart ph-bold ph-lg"></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="ph-heart ph-bold ph-lg"></i><span v-if="clip.favoritedCount > 0" style="margin-left: 6px;">{{ clip.favoritedCount }}</span></MkButton>
|
2023-05-19 09:16:26 +00:00
|
|
|
<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>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { computed, watch, provide, ref } 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';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { url } from '@/config.js';
|
2023-03-16 08:24:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-12-24 07:16:58 +00:00
|
|
|
import { clipsCache } from '@/cache.js';
|
2023-11-29 23:15:13 +00:00
|
|
|
import { isSupportShare } from '@/scripts/navigator.js';
|
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard.js';
|
2020-11-15 03:34:47 +00:00
|
|
|
|
2022-06-18 09:23:54 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
clipId: string,
|
|
|
|
}>();
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const clip = ref<Misskey.entities.Clip | null>(null);
|
|
|
|
const 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,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const isOwned = computed<boolean | null>(() => $i && clip.value && ($i.id === clip.value.userId));
|
2022-06-18 09:23:54 +00:00
|
|
|
|
|
|
|
watch(() => props.clipId, async () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
clip.value = await os.api('clips/show', {
|
2022-06-18 09:23:54 +00:00
|
|
|
clipId: props.clipId,
|
|
|
|
});
|
2023-12-07 05:42:09 +00:00
|
|
|
favorited.value = clip.value.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-12-07 05:42:09 +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(() => {
|
2023-12-07 05:42:09 +00:00
|
|
|
favorited.value = true;
|
2023-03-16 08:24:49 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
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(() => {
|
2023-12-07 05:42:09 +00:00
|
|
|
favorited.value = false;
|
2023-03-16 08:24:49 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => clip.value && isOwned.value ? [{
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-pencil ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.edit,
|
|
|
|
handler: async (): Promise<void> => {
|
2023-12-07 05:42:09 +00:00
|
|
|
const { canceled, result } = await os.form(clip.value.name, {
|
2022-06-20 08:38:49 +00:00
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
label: i18n.ts.name,
|
2023-12-07 05:42:09 +00:00
|
|
|
default: clip.value.name,
|
2020-11-15 03:34:47 +00:00
|
|
|
},
|
2022-06-20 08:38:49 +00:00
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
required: false,
|
|
|
|
multiline: true,
|
2023-12-14 04:11:23 +00:00
|
|
|
treatAsMfm: true,
|
2022-06-20 08:38:49 +00:00
|
|
|
label: i18n.ts.description,
|
2023-12-07 05:42:09 +00:00
|
|
|
default: clip.value.description,
|
2020-11-15 03:34:47 +00:00
|
|
|
},
|
2022-06-20 08:38:49 +00:00
|
|
|
isPublic: {
|
|
|
|
type: 'boolean',
|
|
|
|
label: i18n.ts.public,
|
2023-12-07 05:42:09 +00:00
|
|
|
default: clip.value.isPublic,
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('clips/update', {
|
2023-12-07 05:42:09 +00:00
|
|
|
clipId: clip.value.id,
|
2022-06-20 08:38:49 +00:00
|
|
|
...result,
|
|
|
|
});
|
2023-03-24 07:54:37 +00:00
|
|
|
|
|
|
|
clipsCache.delete();
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
2023-12-07 05:42:09 +00:00
|
|
|
}, ...(clip.value.isPublic ? [{
|
2023-12-23 01:09:23 +00:00
|
|
|
icon: 'ph-share-network ph-bold ph-lg',
|
2023-11-29 23:15:13 +00:00
|
|
|
text: i18n.ts.copyUrl,
|
|
|
|
handler: async (): Promise<void> => {
|
2023-12-07 05:42:09 +00:00
|
|
|
copyToClipboard(`${url}/clips/${clip.value.id}`);
|
2023-11-29 23:15:13 +00:00
|
|
|
os.success();
|
|
|
|
},
|
2023-12-07 05:42:09 +00:00
|
|
|
}] : []), ...(clip.value.isPublic && isSupportShare() ? [{
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-share-network ph-bold ph-lg',
|
2023-03-04 01:17:45 +00:00
|
|
|
text: i18n.ts.share,
|
|
|
|
handler: async (): Promise<void> => {
|
|
|
|
navigator.share({
|
2023-12-07 05:42:09 +00:00
|
|
|
title: clip.value.name,
|
|
|
|
text: clip.value.description,
|
|
|
|
url: `${url}/clips/${clip.value.id}`,
|
2023-03-04 01:17:45 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
}] : []), {
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-trash ph-bold ph-lg',
|
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',
|
2023-12-07 05:42:09 +00:00
|
|
|
text: i18n.t('deleteAreYouSure', { x: clip.value.name }),
|
2022-06-20 08:38:49 +00:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('clips/delete', {
|
2023-12-07 05:42:09 +00:00
|
|
|
clipId: clip.value.id,
|
2022-06-20 08:38:49 +00:00
|
|
|
});
|
2023-03-24 07:54:37 +00:00
|
|
|
|
|
|
|
clipsCache.delete();
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
|
|
|
}] : null);
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
definePageMetadata(computed(() => clip.value ? {
|
|
|
|
title: clip.value.name,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-paperclip ph-bold ph-lg',
|
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>
|