2020-11-14 21:34:47 -06:00
|
|
|
<template>
|
2022-06-20 03:38:49 -05:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions"/></template>
|
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<div v-if="clip">
|
|
|
|
<div class="okzinsic _panel">
|
|
|
|
<div v-if="clip.description" class="description">
|
|
|
|
<Mfm :text="clip.description" :is-note="false" :i="$i"/>
|
|
|
|
</div>
|
|
|
|
<div class="user">
|
|
|
|
<MkAvatar :user="clip.user" class="avatar" :show-indicator="true"/> <MkUserName :user="clip.user" :nowrap="false"/>
|
|
|
|
</div>
|
2021-12-10 01:15:36 -06:00
|
|
|
</div>
|
2020-11-14 21:34:47 -06:00
|
|
|
|
2022-06-20 03:38:49 -05:00
|
|
|
<XNotes :pagination="pagination" :detail="true"/>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-11-14 21:34:47 -06:00
|
|
|
</template>
|
|
|
|
|
2022-06-18 04:23:54 -05:00
|
|
|
<script lang="ts" setup>
|
2022-06-18 04:27:09 -05:00
|
|
|
import { computed, watch, provide } from 'vue';
|
2022-06-18 04:23:54 -05:00
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 11:02:25 -06:00
|
|
|
import XNotes from '@/components/notes.vue';
|
2022-06-18 04:23:54 -05:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
2022-06-20 03:38:49 -05:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-11-14 21:34:47 -06:00
|
|
|
|
2022-06-18 04:23:54 -05:00
|
|
|
const props = defineProps<{
|
|
|
|
clipId: string,
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let clip: misskey.entities.Clip = $ref<misskey.entities.Clip>();
|
|
|
|
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,
|
|
|
|
});
|
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
|
|
|
|
2022-06-18 04:27:47 -05:00
|
|
|
provide('currentClipPage', $$(clip));
|
2022-06-18 04:27:09 -05:00
|
|
|
|
2022-06-20 03:38:49 -05:00
|
|
|
const headerActions = $computed(() => clip && isOwned ? [{
|
|
|
|
icon: 'fas fa-pencil-alt',
|
|
|
|
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-14 21:34:47 -06:00
|
|
|
},
|
2022-06-20 03:38:49 -05:00
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
required: false,
|
|
|
|
multiline: true,
|
|
|
|
label: i18n.ts.description,
|
|
|
|
default: clip.description,
|
2020-11-14 21:34:47 -06:00
|
|
|
},
|
2022-06-20 03:38:49 -05:00
|
|
|
isPublic: {
|
|
|
|
type: 'boolean',
|
|
|
|
label: i18n.ts.public,
|
|
|
|
default: clip.isPublic,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('clips/update', {
|
|
|
|
clipId: clip.id,
|
|
|
|
...result,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-trash-alt',
|
|
|
|
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,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}] : null);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => clip ? {
|
|
|
|
title: clip.name,
|
|
|
|
icon: 'fas fa-paperclip',
|
|
|
|
} : null));
|
2020-11-14 21:34:47 -06:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.okzinsic {
|
|
|
|
position: relative;
|
2021-12-10 01:15:36 -06:00
|
|
|
margin-bottom: var(--margin);
|
2020-11-14 21:34:47 -06:00
|
|
|
|
|
|
|
> .description {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
2020-11-14 21:47:54 -06:00
|
|
|
|
|
|
|
> .user {
|
|
|
|
$height: 32px;
|
|
|
|
padding: 16px;
|
2021-04-09 22:40:50 -05:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-11-14 21:47:54 -06:00
|
|
|
line-height: $height;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: $height;
|
|
|
|
height: $height;
|
|
|
|
}
|
|
|
|
}
|
2020-11-14 21:34:47 -06:00
|
|
|
}
|
|
|
|
</style>
|