iceshrimp/packages/client/src/pages/note.vue
Luna D Dragon 91b8b7b76b
Defry the fish (#125)
Co-authored-by: Luna <luna.dragon@suse.com>
Reviewed-on: https://iceshrimp.dev/iceshrimp/iceshrimp/pulls/125
Co-authored-by: Luna D Dragon <lunarequest@nullrequest.com>
Co-committed-by: Luna D Dragon <lunarequest@nullrequest.com>
2023-08-21 16:14:53 +02:00

248 lines
5.1 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 v-if="showNext" class="_gap">
<XNotes
class="_content"
:pagination="nextPagination"
:no-gap="true"
/>
</div>
<div class="main _gap">
<MkButton
v-if="!showNext && hasNext"
class="load next"
@click="showNext = true"
>
<i class="ph-caret-up ph-bold ph-lg"></i>
{{ `${i18n.ts.loadMore} (${i18n.ts.newer})` }}
</MkButton>
<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>
<MkButton
v-if="!showPrev && hasPrev"
class="load prev"
@click="showPrev = true"
>
<i class="ph-caret-down ph-bold ph-lg"></i>
{{ `${i18n.ts.loadMore} (${i18n.ts.older})` }}
</MkButton>
</div>
<div v-if="showPrev" class="_gap">
<XNotes
class="_content"
:pagination="prevPagination"
:no-gap="true"
/>
</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";
const props = defineProps<{
noteId: string;
}>();
let note = $ref<null | misskey.entities.Note>();
let hasPrev = $ref(false);
let hasNext = $ref(false);
let showPrev = $ref(false);
let showNext = $ref(false);
let error = $ref();
let isRenote = $ref(false);
let appearNote = $ref<null | misskey.entities.Note>();
let expandAllCws = $ref(false);
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() {
hasPrev = false;
hasNext = false;
showPrev = false;
showNext = false;
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;
Promise.all([
os.api("users/notes", {
userId: note.userId,
untilId: note.id,
limit: 1,
}),
os.api("users/notes", {
userId: note.userId,
sinceId: note.id,
limit: 1,
}),
]).then(([prev, next]) => {
hasPrev = prev.length !== 0;
hasNext = next.length !== 0;
});
})
.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>