iceshrimp/packages/client/src/pages/note.vue
2023-09-02 22:52:39 +02:00

192 lines
3.9 KiB
Vue

<template>
<MkStickyContainer>
<template #header
><MkPageHeader
:actions="headerActions"
:tabs="headerTabs"
:display-back-button="true"
:to="`#${noteId}`"
/></template>
<MkSpacer :content-max="800" :marginMin="6">
<div class="fcuexfpr">
<transition
:name="$store.state.animation ? 'fade' : ''"
mode="out-in"
>
<div v-if="appearNote" class="note">
<div class="main _gap">
<div class="note _gap">
<MkRemoteCaution
v-if="appearNote.user.host != null"
:href="appearNote.url ?? appearNote.uri"
/>
<XNoteDetailed
:key="appearNote.id"
v-model:note="appearNote"
:expandAllCws="expandAllCws"
class="note"
/>
</div>
</div>
</div>
<MkError v-else-if="error" @retry="fetch()" />
<MkLoading v-else />
</transition>
</div>
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { computed, defineComponent, watch } from "vue";
import * as misskey from "iceshrimp-js";
import XNoteDetailed from "@/components/MkNoteDetailed.vue";
import XNotes from "@/components/MkNotes.vue";
import MkRemoteCaution from "@/components/MkRemoteCaution.vue";
import MkButton from "@/components/MkButton.vue";
import * as os from "@/os";
import { definePageMetadata } from "@/scripts/page-metadata";
import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
const props = defineProps<{
noteId: string;
}>();
let note = $ref<null | misskey.entities.Note>();
let error = $ref();
let isRenote = $ref(false);
let appearNote = $ref<null | misskey.entities.Note>();
let expandAllCws = $ref(defaultStore.state.alwaysExpandCws);
const prevPagination = {
endpoint: "users/notes" as const,
limit: 10,
params: computed(() =>
appearNote
? {
userId: appearNote.userId,
untilId: appearNote.id,
}
: null,
),
};
const nextPagination = {
reversed: true,
endpoint: "users/notes" as const,
limit: 10,
params: computed(() =>
appearNote
? {
userId: appearNote.userId,
sinceId: appearNote.id,
}
: null,
),
};
function fetchNote() {
note = null;
os.api("notes/show", {
noteId: props.noteId,
})
.then((res) => {
note = res;
isRenote =
note.renote != null &&
note.text == null &&
note.fileIds.length === 0 &&
note.poll == null;
appearNote = isRenote
? (note.renote as misskey.entities.Note)
: note;
})
.catch((err) => {
error = err;
});
}
function toggleAllCws() {
expandAllCws = !expandAllCws;
}
watch(() => props.noteId, fetchNote, {
immediate: true,
});
const headerActions = $computed(() => appearNote ? [
{
icon: `${expandAllCws ? "ph-eye" : "ph-eye-slash"} ph-bold ph-lg`,
text: expandAllCws ? i18n.ts.collapseAllCws : i18n.ts.expandAllCws,
handler: toggleAllCws,
},
]:[]);
const headerTabs = $computed(() => []);
definePageMetadata(
computed(() =>
appearNote
? {
title: i18n.t("noteOf", {
user: appearNote.user.name || appearNote.user.username,
}),
subtitle: new Date(appearNote.createdAt).toLocaleString(),
avatar: appearNote.user,
path: `/notes/${appearNote.id}`,
share: {
title: i18n.t("noteOf", {
user:
appearNote.user.name ||
appearNote.user.username,
}),
text: appearNote.text,
},
}
: null,
),
);
</script>
<style lang="scss" scoped>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.125s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.fcuexfpr {
#iceshrimp_app > :not(.wallpaper) & {
background: var(--bg);
}
> .note {
> .main {
> .load {
min-width: 0;
margin: 0 auto;
border-radius: 999px;
&.next {
margin-bottom: var(--margin);
}
&.prev {
margin-top: var(--margin);
}
}
> .note {
> .note {
border-radius: var(--radius);
background: var(--panel);
}
}
}
}
}
</style>