iceshrimp-legacy/packages/client/src/pages/clip.vue
2023-04-07 17:01:42 -07:00

158 lines
3.1 KiB
Vue

<template>
<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>
</div>
<XNotes :pagination="pagination" :detail="true" />
</div>
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { computed, watch, provide } from "vue";
import type * as misskey from "calckey-js";
import XNotes from "@/components/MkNotes.vue";
import { $i } from "@/account";
import { i18n } from "@/i18n";
import * as os from "@/os";
import { definePageMetadata } from "@/scripts/page-metadata";
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,
}
);
provide("currentClipPage", $$(clip));
const headerActions = $computed(() =>
clip && isOwned
? [
{
icon: "ph-pencil ph-bold ph-lg",
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,
},
description: {
type: "string",
required: false,
multiline: true,
label: i18n.ts.description,
default: clip.description,
},
isPublic: {
type: "boolean",
label: i18n.ts.public,
default: clip.isPublic,
},
});
if (canceled) return;
os.apiWithDialog("clips/update", {
clipId: clip.id,
...result,
});
},
},
{
icon: "ph-trash ph-bold ph-lg",
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: "ph-paperclip ph-bold ph-lg",
}
: null
)
);
</script>
<style lang="scss" scoped>
.okzinsic {
position: relative;
margin-bottom: var(--margin);
> .description {
padding: 16px;
}
> .user {
$height: 32px;
padding: 16px;
border-top: solid 0.5px var(--divider);
line-height: $height;
> .avatar {
width: $height;
height: $height;
}
}
}
</style>