2023-12-02 12:09:25 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
v-if="!muted"
|
|
|
|
v-show="!isDeleted"
|
|
|
|
ref="el"
|
|
|
|
v-hotkey="keymap"
|
|
|
|
:class="$style.root"
|
|
|
|
>
|
|
|
|
<div v-if="appearNote.reply && appearNote.reply.replyId && !conversationLoaded" style="padding: 16px">
|
|
|
|
<MkButton style="margin: 0 auto;" primary rounded @click="loadConversation">{{ i18n.ts.loadConversation }}</MkButton>
|
|
|
|
</div>
|
|
|
|
<div v-if="isRenote" :class="$style.renote">
|
|
|
|
<MkAvatar :class="$style.renoteAvatar" :user="note.user" link preview/>
|
|
|
|
<i class="ph-rocket-launch ph-bold ph-lg" style="margin-right: 4px;"></i>
|
|
|
|
<span :class="$style.renoteText">
|
|
|
|
<I18n :src="i18n.ts.renotedBy" tag="span">
|
|
|
|
<template #user>
|
|
|
|
<MkA v-user-preview="note.userId" :class="$style.renoteName" :to="userPage(note.user)">
|
|
|
|
<MkUserName :user="note.user"/>
|
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
</span>
|
|
|
|
<div :class="$style.renoteInfo">
|
|
|
|
<button ref="renoteTime" class="_button" :class="$style.renoteTime" @click="showRenoteMenu()">
|
|
|
|
<i v-if="isMyRenote" class="ph-dots-three ph-bold ph-lg" style="margin-right: 4px;"></i>
|
|
|
|
<MkTime :time="note.createdAt"/>
|
|
|
|
</button>
|
|
|
|
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
|
|
|
<i v-if="note.visibility === 'home'" class="ph-house ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="note.visibility === 'followers'" class="ph-lock ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ph-envelope ph-bold ph-lg"></i>
|
|
|
|
</span>
|
|
|
|
<span v-if="note.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ph-rocket ph-bold ph-lg"></i></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template v-if="appearNote.reply && appearNote.reply.replyId">
|
|
|
|
<SkNoteSub v-for="note in conversation" :key="note.id" :class="$style.replyToMore" :note="note" :expandAllCws="props.expandAllCws"/>
|
|
|
|
</template>
|
|
|
|
<SkNoteSub v-if="appearNote.reply" :note="appearNote.reply" :class="$style.replyTo" :expandAllCws="props.expandAllCws"/>
|
2024-01-03 13:42:51 +00:00
|
|
|
<article :id="appearNote.id" ref="noteEl" :class="$style.note" tabindex="-1" @contextmenu.stop="onContextmenu">
|
2023-12-02 12:09:25 +00:00
|
|
|
<header :class="$style.noteHeader">
|
|
|
|
<MkAvatar :class="$style.noteHeaderAvatar" :user="appearNote.user" indicator link preview/>
|
|
|
|
<div style="display: flex; align-items: center; white-space: nowrap; overflow: hidden;">
|
|
|
|
<div :class="$style.noteHeaderBody">
|
|
|
|
<div>
|
|
|
|
<MkA v-user-preview="appearNote.user.id" :class="$style.noteHeaderName" :to="userPage(appearNote.user)">
|
|
|
|
<MkUserName :nowrap="false" :user="appearNote.user"/>
|
|
|
|
</MkA>
|
|
|
|
<span v-if="appearNote.user.isBot" :class="$style.isBot">bot</span>
|
|
|
|
<span v-if="appearNote.user.badgeRoles" :class="$style.badgeRoles">
|
|
|
|
<img v-for="role in appearNote.user.badgeRoles" :key="role.id" v-tooltip="role.name" :class="$style.badgeRole" :src="role.iconUrl"/>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div :class="$style.noteHeaderUsername"><MkAcct :user="appearNote.user"/></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="display: flex; align-items: flex-end; margin-left: auto;">
|
|
|
|
<div :class="$style.noteHeaderBody">
|
|
|
|
<div :class="$style.noteHeaderInfo">
|
|
|
|
<span v-if="appearNote.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[appearNote.visibility]">
|
|
|
|
<i v-if="appearNote.visibility === 'home'" class="ph-house ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="appearNote.visibility === 'followers'" class="ph-lock ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="appearNote.visibility === 'specified'" ref="specified" class="ph-envelope ph-bold ph-lg"></i>
|
|
|
|
</span>
|
|
|
|
<span v-if="appearNote.updatedAt" ref="menuVersionsButton" style="margin-left: 0.5em;" title="Edited" @mousedown="menuVersions()"><i class="ph-pencil ph-bold ph-lg"></i></span>
|
|
|
|
<span v-if="appearNote.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ph-rocket ph-bold ph-lg"></i></span>
|
|
|
|
</div>
|
|
|
|
<SkInstanceTicker v-if="showTicker" :instance="appearNote.user.instance"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div :class="$style.noteContent">
|
|
|
|
<p v-if="appearNote.cw != null" :class="$style.cw">
|
|
|
|
<Mfm v-if="appearNote.cw != ''" style="margin-right: 8px;" :text="appearNote.cw" :author="appearNote.user" :nyaize="'respect'"/>
|
2023-12-23 01:09:23 +00:00
|
|
|
<MkCwButton v-model="showContent" :text="appearNote.text" :files="appearNote.files" :poll="appearNote.poll"/>
|
2023-12-02 12:09:25 +00:00
|
|
|
</p>
|
|
|
|
<div v-show="appearNote.cw == null || showContent">
|
|
|
|
<span v-if="appearNote.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span>
|
|
|
|
<Mfm
|
|
|
|
v-if="appearNote.text"
|
|
|
|
:parsedNodes="parsed"
|
|
|
|
:text="appearNote.text"
|
|
|
|
:author="appearNote.user"
|
|
|
|
:nyaize="'respect'"
|
|
|
|
:emojiUrls="appearNote.emojis"
|
|
|
|
:enableEmojiMenu="true"
|
|
|
|
:enableEmojiMenuReaction="true"
|
|
|
|
:isAnim="allowAnim"
|
|
|
|
/>
|
|
|
|
<a v-if="appearNote.renote != null" :class="$style.rn">RN:</a>
|
|
|
|
<div v-if="translating || translation" :class="$style.translation">
|
|
|
|
<MkLoading v-if="translating" mini/>
|
|
|
|
<div v-else>
|
2024-01-21 12:11:23 +00:00
|
|
|
<b>{{ i18n.tsx.translatedFrom({ x: translation.sourceLang }) }}: </b>
|
2023-12-02 12:09:25 +00:00
|
|
|
<Mfm :text="translation.text" :author="appearNote.user" :nyaize="'respect'" :emojiUrls="appearNote.emojis"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-12-23 01:09:23 +00:00
|
|
|
<MkButton v-if="!allowAnim && animated" :class="$style.playMFMButton" :small="true" @click="animatedMFM()" @click.stop><i class="ph-play ph-bold ph-lg "></i> {{ i18n.ts._animatedMFM.play }}</MkButton>
|
|
|
|
<MkButton v-else-if="!defaultStore.state.animatedMfm && allowAnim && animated" :class="$style.playMFMButton" :small="true" @click="animatedMFM()" @click.stop><i class="ph-stop ph-bold ph-lg "></i> {{ i18n.ts._animatedMFM.stop }}</MkButton>
|
2023-12-02 12:09:25 +00:00
|
|
|
<div v-if="appearNote.files.length > 0">
|
|
|
|
<MkMediaList :mediaList="appearNote.files"/>
|
|
|
|
</div>
|
|
|
|
<MkPoll v-if="appearNote.poll" ref="pollViewer" :note="appearNote" :class="$style.poll"/>
|
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="true" style="margin-top: 6px;"/>
|
|
|
|
<div v-if="appearNote.renote" :class="$style.quote"><SkNoteSimple :note="appearNote.renote" :class="$style.quoteNote" :expandAllCws="props.expandAllCws"/></div>
|
|
|
|
</div>
|
|
|
|
<MkA v-if="appearNote.channel && !inChannel" :class="$style.channel" :to="`/channels/${appearNote.channel.id}`"><i class="ph-television ph-bold ph-lg"></i> {{ appearNote.channel.name }}</MkA>
|
|
|
|
</div>
|
|
|
|
<footer :class="$style.footer">
|
|
|
|
<div :class="$style.noteFooterInfo">
|
|
|
|
<div v-if="appearNote.updatedAt">
|
|
|
|
{{ i18n.ts.edited }}: <MkTime :time="appearNote.updatedAt" mode="detail"/>
|
|
|
|
</div>
|
|
|
|
<MkA :to="notePage(appearNote)">
|
|
|
|
<MkTime :time="appearNote.createdAt" mode="detail" colored/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
<MkReactionsViewer ref="reactionsViewer" :note="appearNote"/>
|
|
|
|
<button class="_button" :class="$style.noteFooterButton" @click="reply()">
|
|
|
|
<i class="ph-arrow-u-up-left ph-bold ph-lg"></i>
|
|
|
|
<p v-if="appearNote.repliesCount > 0" :class="$style.noteFooterButtonCount">{{ appearNote.repliesCount }}</p>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
v-if="canRenote"
|
|
|
|
ref="renoteButton"
|
|
|
|
class="_button"
|
|
|
|
:class="$style.noteFooterButton"
|
|
|
|
:style="renoted ? 'color: var(--accent) !important;' : ''"
|
2023-12-03 23:19:34 +00:00
|
|
|
@mousedown="renoted ? undoRenote() : boostVisibility()"
|
2023-12-02 12:09:25 +00:00
|
|
|
>
|
|
|
|
<i class="ph-rocket-launch ph-bold ph-lg"></i>
|
|
|
|
<p v-if="appearNote.renoteCount > 0" :class="$style.noteFooterButtonCount">{{ appearNote.renoteCount }}</p>
|
|
|
|
</button>
|
|
|
|
<button v-else class="_button" :class="$style.noteFooterButton" disabled>
|
|
|
|
<i class="ph-prohibit ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
v-if="canRenote"
|
|
|
|
ref="quoteButton"
|
|
|
|
class="_button"
|
|
|
|
:class="$style.noteFooterButton"
|
|
|
|
@mousedown="quote()"
|
|
|
|
>
|
|
|
|
<i class="ph-quotes ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button v-if="appearNote.myReaction == null && appearNote.reactionAcceptance !== 'likeOnly'" ref="likeButton" :class="$style.noteFooterButton" class="_button" @mousedown="like()">
|
|
|
|
<i class="ph-heart ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button v-if="appearNote.myReaction == null" ref="reactButton" :class="$style.noteFooterButton" class="_button" @mousedown="react()">
|
|
|
|
<i v-if="appearNote.reactionAcceptance === 'likeOnly'" class="ph-heart ph-bold ph-lg"></i>
|
|
|
|
<i v-else class="ph-smiley ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button v-if="appearNote.myReaction != null" ref="reactButton" class="_button" :class="[$style.noteFooterButton, $style.reacted]" @click="undoReact(appearNote)">
|
|
|
|
<i class="ph-minus ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button v-if="defaultStore.state.showClipButtonInNoteFooter" ref="clipButton" class="_button" :class="$style.noteFooterButton" @mousedown="clip()">
|
|
|
|
<i class="ph-paperclip ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
<button ref="menuButton" class="_button" :class="$style.noteFooterButton" @mousedown="menu()">
|
|
|
|
<i class="ph-dots-three ph-bold ph-lg"></i>
|
|
|
|
</button>
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
<div :class="$style.tabs">
|
|
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'replies' }]" @click="tab = 'replies'"><i class="ph-arrow-u-up-left ph-bold ph-lg"></i> {{ i18n.ts.replies }}</button>
|
|
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'renotes' }]" @click="tab = 'renotes'"><i class="ph-rocket-launch ph-bold ph-lg"></i> {{ i18n.ts.renotes }}</button>
|
|
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'quotes' }]" @click="tab = 'quotes'"><i class="ph-quotes ph-bold ph-lg"></i> {{ i18n.ts._notification._types.quote }}</button>
|
|
|
|
<button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'reactions' }]" @click="tab = 'reactions'"><i class="ph-smiley ph-bold ph-lg"></i> {{ i18n.ts.reactions }}</button>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div v-if="tab === 'replies'" :class="$style.tab_replies">
|
|
|
|
<div v-if="!repliesLoaded" style="padding: 16px">
|
|
|
|
<MkButton style="margin: 0 auto;" primary rounded @click="loadReplies">{{ i18n.ts.loadReplies }}</MkButton>
|
|
|
|
</div>
|
2024-01-01 16:44:13 +00:00
|
|
|
<SkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true" :expandAllCws="props.expandAllCws" :onDeleteCallback="removeReply"/>
|
2023-12-02 12:09:25 +00:00
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
|
|
|
|
<MkPagination :pagination="renotesPagination" :disableAutoLoad="true">
|
|
|
|
<template #default="{ items }">
|
|
|
|
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
|
|
|
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
|
|
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
<div v-if="tab === 'quotes'" :class="$style.tab_replies">
|
|
|
|
<div v-if="!quotesLoaded" style="padding: 16px">
|
|
|
|
<MkButton style="margin: 0 auto;" primary rounded @click="loadQuotes">{{ i18n.ts.loadReplies }}</MkButton>
|
|
|
|
</div>
|
|
|
|
<SkNoteSub v-for="note in quotes" :key="note.id" :note="note" :class="$style.reply" :detail="true" :expandAllCws="props.expandAllCws"/>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'reactions'" :class="$style.tab_reactions">
|
|
|
|
<div :class="$style.reactionTabs">
|
|
|
|
<button v-for="reaction in Object.keys(appearNote.reactions)" :key="reaction" :class="[$style.reactionTab, { [$style.reactionTabActive]: reactionTabType === reaction }]" class="_button" @click="reactionTabType = reaction">
|
|
|
|
<MkReactionIcon :reaction="reaction"/>
|
|
|
|
<span style="margin-left: 4px;">{{ appearNote.reactions[reaction] }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<MkPagination v-if="reactionTabType" :key="reactionTabType" :pagination="reactionsPagination" :disableAutoLoad="true">
|
|
|
|
<template #default="{ items }">
|
|
|
|
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
|
|
|
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
|
|
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-else class="_panel" :class="$style.muted" @click="muted = false">
|
|
|
|
<I18n :src="i18n.ts.userSaysSomething" tag="small">
|
|
|
|
<template #name>
|
|
|
|
<MkA v-user-preview="appearNote.userId" :to="userPage(appearNote.user)">
|
|
|
|
<MkUserName :user="appearNote.user"/>
|
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-01-03 12:52:46 +00:00
|
|
|
import { computed, inject, onMounted, onUnmounted, onUpdated, provide, ref, shallowRef, watch } from 'vue';
|
2023-12-18 02:03:05 +00:00
|
|
|
import * as mfm from '@sharkey/sfm-js';
|
2023-12-02 12:09:25 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import SkNoteSub from '@/components/SkNoteSub.vue';
|
|
|
|
import SkNoteSimple from '@/components/SkNoteSimple.vue';
|
|
|
|
import MkReactionsViewer from '@/components/MkReactionsViewer.vue';
|
|
|
|
import MkMediaList from '@/components/MkMediaList.vue';
|
|
|
|
import MkCwButton from '@/components/MkCwButton.vue';
|
|
|
|
import MkPoll from '@/components/MkPoll.vue';
|
|
|
|
import MkUsersTooltip from '@/components/MkUsersTooltip.vue';
|
|
|
|
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
|
|
|
import SkInstanceTicker from '@/components/SkInstanceTicker.vue';
|
|
|
|
import { pleaseLogin } from '@/scripts/please-login.js';
|
|
|
|
import { checkWordMute } from '@/scripts/check-word-mute.js';
|
|
|
|
import { userPage } from '@/filters/user.js';
|
|
|
|
import { notePage } from '@/filters/note.js';
|
|
|
|
import * as os from '@/os.js';
|
2024-01-09 01:57:57 +00:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-12-23 01:09:23 +00:00
|
|
|
import * as sound from '@/scripts/sound.js';
|
2023-12-02 12:09:25 +00:00
|
|
|
import { defaultStore, noteViewInterruptors } from '@/store.js';
|
|
|
|
import { reactionPicker } from '@/scripts/reaction-picker.js';
|
|
|
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { getNoteClipMenu, getNoteMenu } from '@/scripts/get-note-menu.js';
|
|
|
|
import { getNoteVersionsMenu } from '@/scripts/get-note-versions-menu.js';
|
|
|
|
import { useNoteCapture } from '@/scripts/use-note-capture.js';
|
|
|
|
import { deepClone } from '@/scripts/clone.js';
|
|
|
|
import { useTooltip } from '@/scripts/use-tooltip.js';
|
|
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
|
|
import { checkAnimationFromMfm } from '@/scripts/check-animated-mfm.js';
|
|
|
|
import MkRippleEffect from '@/components/MkRippleEffect.vue';
|
|
|
|
import { showMovedDialog } from '@/scripts/show-moved-dialog.js';
|
|
|
|
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
2023-12-23 01:09:23 +00:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2023-12-02 12:09:25 +00:00
|
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
note: Misskey.entities.Note;
|
|
|
|
expandAllCws?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const inChannel = inject('inChannel', null);
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
const note = ref(deepClone(props.note));
|
2023-12-02 12:09:25 +00:00
|
|
|
|
|
|
|
// plugin
|
|
|
|
if (noteViewInterruptors.length > 0) {
|
|
|
|
onMounted(async () => {
|
2023-12-23 01:09:23 +00:00
|
|
|
let result: Misskey.entities.Note | null = deepClone(note.value);
|
2023-12-02 12:09:25 +00:00
|
|
|
for (const interruptor of noteViewInterruptors) {
|
|
|
|
try {
|
|
|
|
result = await interruptor.handler(result);
|
|
|
|
if (result === null) {
|
|
|
|
isDeleted.value = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
}
|
2023-12-23 01:09:23 +00:00
|
|
|
note.value = result;
|
2023-12-02 12:09:25 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const isRenote = (
|
2023-12-23 01:09:23 +00:00
|
|
|
note.value.renote != null &&
|
|
|
|
note.value.text == null &&
|
|
|
|
note.value.fileIds.length === 0 &&
|
|
|
|
note.value.poll == null
|
2023-12-02 12:09:25 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
const el = shallowRef<HTMLElement>();
|
2024-01-03 12:52:46 +00:00
|
|
|
const noteEl = shallowRef<HTMLElement>();
|
2023-12-02 12:09:25 +00:00
|
|
|
const menuButton = shallowRef<HTMLElement>();
|
|
|
|
const menuVersionsButton = shallowRef<HTMLElement>();
|
|
|
|
const renoteButton = shallowRef<HTMLElement>();
|
|
|
|
const renoteTime = shallowRef<HTMLElement>();
|
|
|
|
const reactButton = shallowRef<HTMLElement>();
|
|
|
|
const quoteButton = shallowRef<HTMLElement>();
|
|
|
|
const clipButton = shallowRef<HTMLElement>();
|
|
|
|
const likeButton = shallowRef<HTMLElement>();
|
2023-12-23 01:09:23 +00:00
|
|
|
const appearNote = computed(() => isRenote ? note.value.renote as Misskey.entities.Note : note.value);
|
|
|
|
const renoteUrl = appearNote.value.renote ? appearNote.value.renote.url : null;
|
|
|
|
const renoteUri = appearNote.value.renote ? appearNote.value.renote.uri : null;
|
|
|
|
const isMyRenote = $i && ($i.id === note.value.userId);
|
2023-12-03 18:35:39 +00:00
|
|
|
const showContent = ref(defaultStore.state.uncollapseCW);
|
2023-12-02 12:09:25 +00:00
|
|
|
const isDeleted = ref(false);
|
|
|
|
const renoted = ref(false);
|
2023-12-23 01:09:23 +00:00
|
|
|
const muted = ref($i ? checkWordMute(appearNote.value, $i, $i.mutedWords) : false);
|
2024-01-21 12:37:41 +00:00
|
|
|
const translation = ref<Misskey.entities.NotesTranslateResponse | null>(null);
|
2023-12-02 12:09:25 +00:00
|
|
|
const translating = ref(false);
|
2023-12-23 01:09:23 +00:00
|
|
|
const parsed = appearNote.value.text ? mfm.parse(appearNote.value.text) : null;
|
2023-12-02 12:09:25 +00:00
|
|
|
const urls = parsed ? extractUrlFromMfm(parsed).filter(u => u !== renoteUrl && u !== renoteUri) : null;
|
2023-12-23 01:09:23 +00:00
|
|
|
const animated = computed(() => parsed ? checkAnimationFromMfm(parsed) : null);
|
2023-12-02 12:09:25 +00:00
|
|
|
const allowAnim = ref(defaultStore.state.advancedMfm && defaultStore.state.animatedMfm ? true : false);
|
2023-12-23 01:09:23 +00:00
|
|
|
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.value.user.instance);
|
2023-12-02 12:09:25 +00:00
|
|
|
const conversation = ref<Misskey.entities.Note[]>([]);
|
|
|
|
const replies = ref<Misskey.entities.Note[]>([]);
|
|
|
|
const quotes = ref<Misskey.entities.Note[]>([]);
|
2023-12-23 01:09:23 +00:00
|
|
|
const canRenote = computed(() => ['public', 'home'].includes(appearNote.value.visibility) || appearNote.value.userId === $i.id);
|
2023-12-02 12:09:25 +00:00
|
|
|
const defaultLike = computed(() => defaultStore.state.like ? defaultStore.state.like : null);
|
|
|
|
|
|
|
|
watch(() => props.expandAllCws, (expandAllCws) => {
|
|
|
|
if (expandAllCws !== showContent.value) showContent.value = expandAllCws;
|
|
|
|
});
|
|
|
|
|
|
|
|
if ($i) {
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/renotes', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
userId: $i.id,
|
|
|
|
limit: 1,
|
|
|
|
}).then((res) => {
|
|
|
|
renoted.value = res.length > 0;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const keymap = {
|
|
|
|
'r': () => reply(true),
|
|
|
|
'e|a|plus': () => react(true),
|
|
|
|
'q': () => renoteButton.value.renote(true),
|
|
|
|
'esc': blur,
|
|
|
|
'm|o': () => menu(true),
|
|
|
|
's': () => showContent.value !== showContent.value,
|
|
|
|
};
|
|
|
|
|
|
|
|
provide('react', (reaction: string) => {
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/reactions/create', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
reaction: reaction,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
const tab = ref('replies');
|
2024-01-21 12:37:41 +00:00
|
|
|
const reactionTabType = ref<string | null>(null);
|
2023-12-02 12:09:25 +00:00
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
const renotesPagination = computed(() => ({
|
2023-12-02 12:09:25 +00:00
|
|
|
endpoint: 'notes/renotes',
|
|
|
|
limit: 10,
|
|
|
|
params: {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
const reactionsPagination = computed(() => ({
|
2023-12-02 12:09:25 +00:00
|
|
|
endpoint: 'notes/reactions',
|
|
|
|
limit: 10,
|
|
|
|
params: {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
|
|
|
type: reactionTabType.value,
|
2023-12-02 12:09:25 +00:00
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
2023-12-21 16:00:59 +00:00
|
|
|
async function addReplyTo(replyNote: Misskey.entities.Note) {
|
2024-01-01 16:44:13 +00:00
|
|
|
replies.value.unshift(replyNote);
|
|
|
|
appearNote.value.repliesCount += 1;
|
2023-12-21 16:00:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function removeReply(id: Misskey.entities.Note['id']) {
|
2024-01-01 16:44:13 +00:00
|
|
|
const replyIdx = replies.value.findIndex(note => note.id === id);
|
|
|
|
if (replyIdx >= 0) {
|
|
|
|
replies.value.splice(replyIdx, 1);
|
|
|
|
appearNote.value.repliesCount -= 1;
|
|
|
|
}
|
2023-12-19 09:07:32 +00:00
|
|
|
}
|
|
|
|
|
2023-12-02 12:09:25 +00:00
|
|
|
useNoteCapture({
|
|
|
|
rootEl: el,
|
2023-12-23 01:09:23 +00:00
|
|
|
note: appearNote,
|
|
|
|
pureNote: note,
|
2023-12-02 12:09:25 +00:00
|
|
|
isDeletedRef: isDeleted,
|
2023-12-19 09:07:32 +00:00
|
|
|
onReplyCallback: addReplyTo,
|
2023-12-02 12:09:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
useTooltip(renoteButton, async (showing) => {
|
2024-01-09 01:57:57 +00:00
|
|
|
const renotes = await misskeyApi('notes/renotes', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
limit: 11,
|
|
|
|
});
|
|
|
|
|
|
|
|
const users = renotes.map(x => x.user);
|
|
|
|
|
|
|
|
if (users.length < 1) return;
|
|
|
|
|
|
|
|
os.popup(MkUsersTooltip, {
|
|
|
|
showing,
|
|
|
|
users,
|
2023-12-23 01:09:23 +00:00
|
|
|
count: appearNote.value.renoteCount,
|
2023-12-02 12:09:25 +00:00
|
|
|
targetElement: renoteButton.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
});
|
|
|
|
|
|
|
|
useTooltip(quoteButton, async (showing) => {
|
2024-01-09 01:57:57 +00:00
|
|
|
const renotes = await misskeyApi('notes/renotes', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
limit: 11,
|
|
|
|
quote: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
const users = renotes.map(x => x.user);
|
|
|
|
|
|
|
|
if (users.length < 1) return;
|
|
|
|
|
|
|
|
os.popup(MkUsersTooltip, {
|
|
|
|
showing,
|
|
|
|
users,
|
2023-12-23 01:09:23 +00:00
|
|
|
count: appearNote.value.renoteCount,
|
2023-12-02 12:09:25 +00:00
|
|
|
targetElement: quoteButton.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
});
|
|
|
|
|
|
|
|
type Visibility = 'public' | 'home' | 'followers' | 'specified';
|
|
|
|
|
|
|
|
function smallerVisibility(a: Visibility | string, b: Visibility | string): Visibility {
|
|
|
|
if (a === 'specified' || b === 'specified') return 'specified';
|
|
|
|
if (a === 'followers' || b === 'followers') return 'followers';
|
|
|
|
if (a === 'home' || b === 'home') return 'home';
|
|
|
|
// if (a === 'public' || b === 'public')
|
|
|
|
return 'public';
|
|
|
|
}
|
|
|
|
|
2023-12-03 23:19:34 +00:00
|
|
|
function boostVisibility() {
|
2024-01-01 19:34:18 +00:00
|
|
|
if (!defaultStore.state.showVisibilitySelectorOnBoost) {
|
|
|
|
renote(defaultStore.state.visibilityOnBoost);
|
|
|
|
} else {
|
|
|
|
os.popupMenu([
|
|
|
|
{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
|
|
|
|
text: i18n.ts._visibility['public'],
|
|
|
|
action: () => {
|
|
|
|
renote('public');
|
|
|
|
},
|
2023-12-03 23:19:34 +00:00
|
|
|
},
|
2024-01-01 19:34:18 +00:00
|
|
|
{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'ph-house ph-bold ph-lg',
|
|
|
|
text: i18n.ts._visibility['home'],
|
|
|
|
action: () => {
|
|
|
|
renote('home');
|
|
|
|
},
|
2023-12-03 23:19:34 +00:00
|
|
|
},
|
2024-01-01 19:34:18 +00:00
|
|
|
{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'ph-lock ph-bold ph-lg',
|
|
|
|
text: i18n.ts._visibility['followers'],
|
|
|
|
action: () => {
|
|
|
|
renote('followers');
|
|
|
|
},
|
2023-12-03 23:19:34 +00:00
|
|
|
},
|
2024-01-01 19:34:18 +00:00
|
|
|
{
|
|
|
|
type: 'button',
|
|
|
|
icon: 'ph-planet ph-bold ph-lg',
|
|
|
|
text: i18n.ts._timelines.local,
|
|
|
|
action: () => {
|
|
|
|
renote('local');
|
|
|
|
},
|
|
|
|
}], renoteButton.value);
|
|
|
|
}
|
2023-12-03 23:19:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function renote(visibility: Visibility | 'local') {
|
2023-12-02 12:09:25 +00:00
|
|
|
pleaseLogin();
|
|
|
|
showMovedDialog();
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
if (appearNote.value.channel) {
|
2023-12-02 12:09:25 +00:00
|
|
|
const el = renoteButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/create', {
|
2023-12-23 01:09:23 +00:00
|
|
|
renoteId: appearNote.value.id,
|
|
|
|
channelId: appearNote.value.channelId,
|
2023-12-02 12:09:25 +00:00
|
|
|
}).then(() => {
|
|
|
|
os.toast(i18n.ts.renoted);
|
|
|
|
renoted.value = true;
|
|
|
|
});
|
2023-12-23 01:09:23 +00:00
|
|
|
} else if (!appearNote.value.channel || appearNote.value.channel?.allowRenoteToExternal) {
|
2023-12-02 12:09:25 +00:00
|
|
|
const el = renoteButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
|
|
|
|
const configuredVisibility = defaultStore.state.rememberNoteVisibility ? defaultStore.state.visibility : defaultStore.state.defaultNoteVisibility;
|
2023-12-03 23:19:34 +00:00
|
|
|
const localOnlySetting = defaultStore.state.rememberNoteVisibility ? defaultStore.state.localOnly : defaultStore.state.defaultNoteLocalOnly;
|
2023-12-02 12:09:25 +00:00
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
let noteVisibility = visibility === 'local' || visibility === 'specified' ? smallerVisibility(appearNote.value.visibility, configuredVisibility) : smallerVisibility(visibility, configuredVisibility);
|
|
|
|
if (appearNote.value.channel?.isSensitive) {
|
|
|
|
noteVisibility = smallerVisibility(visibility === 'local' || visibility === 'specified' ? appearNote.value.visibility : visibility, 'home');
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/create', {
|
2023-12-03 23:19:34 +00:00
|
|
|
localOnly: visibility === 'local' ? true : localOnlySetting,
|
|
|
|
visibility: noteVisibility,
|
2023-12-23 01:09:23 +00:00
|
|
|
renoteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
}).then(() => {
|
|
|
|
os.toast(i18n.ts.renoted);
|
|
|
|
renoted.value = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function quote() {
|
|
|
|
pleaseLogin();
|
|
|
|
showMovedDialog();
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
if (appearNote.value.channel) {
|
2023-12-02 12:09:25 +00:00
|
|
|
os.post({
|
2023-12-23 01:09:23 +00:00
|
|
|
renote: appearNote.value,
|
|
|
|
channel: appearNote.value.channel,
|
2023-12-02 12:09:25 +00:00
|
|
|
}).then(() => {
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/renotes', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
userId: $i.id,
|
|
|
|
limit: 1,
|
|
|
|
quote: true,
|
|
|
|
}).then((res) => {
|
|
|
|
if (!(res.length > 0)) return;
|
|
|
|
const el = quoteButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el && res.length > 0) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
|
|
|
|
os.toast(i18n.ts.quoted);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
os.post({
|
2023-12-23 01:09:23 +00:00
|
|
|
renote: appearNote.value,
|
2023-12-02 12:09:25 +00:00
|
|
|
}).then(() => {
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/renotes', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
userId: $i.id,
|
|
|
|
limit: 1,
|
|
|
|
quote: true,
|
|
|
|
}).then((res) => {
|
|
|
|
if (!(res.length > 0)) return;
|
|
|
|
const el = quoteButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el && res.length > 0) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
|
|
|
|
os.toast(i18n.ts.quoted);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function reply(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
|
|
|
showMovedDialog();
|
|
|
|
os.post({
|
2023-12-23 01:09:23 +00:00
|
|
|
reply: appearNote.value,
|
|
|
|
channel: appearNote.value.channel,
|
2023-12-02 12:09:25 +00:00
|
|
|
animation: !viaKeyboard,
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function react(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
|
|
|
showMovedDialog();
|
2023-12-23 01:09:23 +00:00
|
|
|
if (appearNote.value.reactionAcceptance === 'likeOnly') {
|
2024-01-21 12:37:41 +00:00
|
|
|
sound.playMisskeySfx('reaction');
|
|
|
|
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/like', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
override: defaultLike.value,
|
|
|
|
});
|
|
|
|
const el = reactButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
blur();
|
|
|
|
reactionPicker.show(reactButton.value, reaction => {
|
2024-01-09 09:35:10 +00:00
|
|
|
sound.playMisskeySfx('reaction');
|
2023-12-23 01:09:23 +00:00
|
|
|
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/reactions/create', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
reaction: reaction,
|
|
|
|
});
|
2023-12-23 01:09:23 +00:00
|
|
|
if (appearNote.value.text && appearNote.value.text.length > 100 && (Date.now() - new Date(appearNote.value.createdAt).getTime() < 1000 * 3)) {
|
2023-12-02 12:09:25 +00:00
|
|
|
claimAchievement('reactWithoutRead');
|
|
|
|
}
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function like(): void {
|
|
|
|
pleaseLogin();
|
|
|
|
showMovedDialog();
|
2024-01-09 09:35:10 +00:00
|
|
|
sound.playMisskeySfx('reaction');
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/like', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
override: defaultLike.value,
|
|
|
|
});
|
|
|
|
const el = likeButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function undoReact(note): void {
|
|
|
|
const oldReaction = note.myReaction;
|
|
|
|
if (!oldReaction) return;
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/reactions/delete', {
|
2023-12-02 12:09:25 +00:00
|
|
|
noteId: note.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function undoRenote() : void {
|
|
|
|
if (!renoted.value) return;
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/unrenote', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
});
|
|
|
|
os.toast(i18n.ts.rmboost);
|
|
|
|
renoted.value = false;
|
|
|
|
|
|
|
|
const el = renoteButton.value as HTMLElement | null | undefined;
|
|
|
|
if (el) {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.offsetWidth / 2);
|
|
|
|
const y = rect.top + (el.offsetHeight / 2);
|
|
|
|
os.popup(MkRippleEffect, { x, y }, {}, 'end');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onContextmenu(ev: MouseEvent): void {
|
|
|
|
const isLink = (el: HTMLElement) => {
|
|
|
|
if (el.tagName === 'A') return true;
|
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (isLink(ev.target)) return;
|
|
|
|
if (window.getSelection().toString() !== '') return;
|
|
|
|
|
|
|
|
if (defaultStore.state.useReactionPickerForContextMenu) {
|
|
|
|
ev.preventDefault();
|
|
|
|
react();
|
|
|
|
} else {
|
2023-12-23 01:09:23 +00:00
|
|
|
const { menu, cleanup } = getNoteMenu({ note: note.value, translating, translation, menuButton, isDeleted });
|
2023-12-02 12:09:25 +00:00
|
|
|
os.contextMenu(menu, ev).then(focus).finally(cleanup);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function menu(viaKeyboard = false): void {
|
2023-12-23 01:09:23 +00:00
|
|
|
const { menu, cleanup } = getNoteMenu({ note: note.value, translating, translation, menuButton, isDeleted });
|
2023-12-02 12:09:25 +00:00
|
|
|
os.popupMenu(menu, menuButton.value, {
|
|
|
|
viaKeyboard,
|
|
|
|
}).then(focus).finally(cleanup);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function menuVersions(viaKeyboard = false): Promise<void> {
|
2023-12-23 01:09:23 +00:00
|
|
|
const { menu, cleanup } = await getNoteVersionsMenu({ note: note.value, menuVersionsButton });
|
2023-12-02 12:09:25 +00:00
|
|
|
os.popupMenu(menu, menuVersionsButton.value, {
|
|
|
|
viaKeyboard,
|
|
|
|
}).then(focus).finally(cleanup);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function clip() {
|
2023-12-23 01:09:23 +00:00
|
|
|
os.popupMenu(await getNoteClipMenu({ note: note.value, isDeleted }), clipButton.value).then(focus);
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showRenoteMenu(viaKeyboard = false): void {
|
|
|
|
if (!isMyRenote) return;
|
|
|
|
pleaseLogin();
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.unrenote,
|
|
|
|
icon: 'ph-trash ph-bold ph-lg',
|
|
|
|
danger: true,
|
|
|
|
action: () => {
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/delete', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: note.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
});
|
|
|
|
isDeleted.value = true;
|
|
|
|
},
|
|
|
|
}], renoteTime.value, {
|
|
|
|
viaKeyboard: viaKeyboard,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function focus() {
|
2024-01-03 12:52:46 +00:00
|
|
|
noteEl.value?.focus();
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function blur() {
|
2024-01-03 12:52:46 +00:00
|
|
|
noteEl.value?.blur();
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const repliesLoaded = ref(false);
|
|
|
|
|
|
|
|
function loadReplies() {
|
|
|
|
repliesLoaded.value = true;
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/children', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
limit: 30,
|
|
|
|
showQuotes: false,
|
|
|
|
}).then(res => {
|
|
|
|
replies.value = res;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadReplies();
|
|
|
|
|
|
|
|
const quotesLoaded = ref(false);
|
|
|
|
|
|
|
|
function loadQuotes() {
|
|
|
|
quotesLoaded.value = true;
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/renotes', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-12-02 12:09:25 +00:00
|
|
|
limit: 30,
|
|
|
|
quote: true,
|
|
|
|
}).then(res => {
|
|
|
|
quotes.value = res;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadQuotes();
|
|
|
|
|
|
|
|
const conversationLoaded = ref(false);
|
|
|
|
|
|
|
|
function loadConversation() {
|
|
|
|
conversationLoaded.value = true;
|
2024-01-09 01:57:57 +00:00
|
|
|
misskeyApi('notes/conversation', {
|
2023-12-23 01:09:23 +00:00
|
|
|
noteId: appearNote.value.replyId,
|
2023-12-02 12:09:25 +00:00
|
|
|
}).then(res => {
|
|
|
|
conversation.value = res.reverse();
|
2024-01-03 12:52:46 +00:00
|
|
|
focus();
|
2023-12-02 12:09:25 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
if (appearNote.value.reply && appearNote.value.reply.replyId && defaultStore.state.autoloadConversation) loadConversation();
|
2023-12-02 12:09:25 +00:00
|
|
|
|
|
|
|
function animatedMFM() {
|
|
|
|
if (allowAnim.value) {
|
|
|
|
allowAnim.value = false;
|
|
|
|
} else {
|
|
|
|
os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts._animatedMFM._alert.text,
|
|
|
|
okText: i18n.ts._animatedMFM._alert.confirm,
|
|
|
|
}).then((res) => { if (!res.canceled) allowAnim.value = true; });
|
|
|
|
}
|
|
|
|
}
|
2024-01-03 12:52:46 +00:00
|
|
|
|
|
|
|
let isScrolling = false;
|
|
|
|
|
|
|
|
function setScrolling() {
|
|
|
|
isScrolling = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
document.addEventListener('wheel', setScrolling);
|
|
|
|
isScrolling = false;
|
|
|
|
noteEl.value?.scrollIntoView({ block: 'center' });
|
|
|
|
});
|
|
|
|
|
|
|
|
onUpdated(() => {
|
|
|
|
if (!isScrolling) {
|
|
|
|
noteEl.value?.scrollIntoView({ block: 'center' });
|
|
|
|
if (location.hash) {
|
|
|
|
location.replace(location.hash); // Jump to highlighted reply
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
document.removeEventListener('wheel', setScrolling);
|
|
|
|
});
|
2023-12-02 12:09:25 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
position: relative;
|
|
|
|
transition: box-shadow 0.1s ease;
|
|
|
|
overflow: clip;
|
|
|
|
contain: content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
margin-top: 0.4em;
|
|
|
|
width: max-content;
|
|
|
|
min-width: min-content;
|
|
|
|
max-width: fit-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.replyTo {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.replyToMore {
|
2024-01-01 16:44:13 +00:00
|
|
|
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.renote {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 16px 32px 8px 32px;
|
|
|
|
line-height: 28px;
|
|
|
|
white-space: pre;
|
|
|
|
color: var(--renote);
|
|
|
|
}
|
|
|
|
|
|
|
|
.renoteAvatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
border-radius: var(--radius-sm);
|
|
|
|
}
|
|
|
|
|
|
|
|
.renoteText {
|
|
|
|
overflow: hidden;
|
|
|
|
flex-shrink: 1;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.renoteName {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.renoteInfo {
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.renoteTime {
|
|
|
|
flex-shrink: 0;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.renote + .note {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note {
|
2024-01-03 12:52:46 +00:00
|
|
|
position: relative;
|
2023-12-02 12:09:25 +00:00
|
|
|
padding: 32px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&:hover > .main > .footer > .button {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2024-01-03 12:52:46 +00:00
|
|
|
|
|
|
|
&:focus-visible {
|
|
|
|
outline: none;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
pointer-events: none;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: calc(100% - 8px);
|
|
|
|
height: calc(100% - 8px);
|
|
|
|
border: solid 1px var(--focus);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
}
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeader {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
align-items: center;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderAvatar {
|
|
|
|
display: block;
|
|
|
|
flex-shrink: 0;
|
2024-01-01 16:44:13 +00:00
|
|
|
width: var(--avatar);
|
|
|
|
height: var(--avatar);
|
2023-12-02 12:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderBody {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
padding-left: 16px;
|
|
|
|
font-size: 0.95em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderName {
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.isBot {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0.5em;
|
|
|
|
padding: 4px 6px;
|
|
|
|
font-size: 80%;
|
|
|
|
line-height: 1;
|
|
|
|
border: solid 0.5px var(--divider);
|
|
|
|
border-radius: var(--radius-xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderInfo {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderUsername {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
line-height: 1.3;
|
|
|
|
word-wrap: anywhere;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.playMFMButton {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteContent {
|
|
|
|
container-type: inline-size;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteReplyTarget {
|
|
|
|
color: var(--accent);
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rn {
|
|
|
|
margin-left: 4px;
|
|
|
|
font-style: oblique;
|
|
|
|
color: var(--renote);
|
|
|
|
}
|
|
|
|
|
|
|
|
.translation {
|
|
|
|
border: solid 0.5px var(--divider);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 12px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quote {
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quoteNote {
|
|
|
|
padding: 16px;
|
2023-12-31 14:55:00 +00:00
|
|
|
border: solid 1px var(--renote);
|
2023-12-02 12:09:25 +00:00
|
|
|
border-radius: var(--radius-sm);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
.channel {
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteFooterInfo {
|
|
|
|
margin: 16px 0;
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteFooterButton {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteFooterButtonCount {
|
|
|
|
display: inline;
|
|
|
|
margin: 0 0 0 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&.reacted {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply:not(:first-child) {
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
border-bottom: solid 0.5px var(--divider);
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab {
|
|
|
|
flex: 1;
|
|
|
|
padding: 12px 8px;
|
|
|
|
border-top: solid 2px transparent;
|
|
|
|
border-bottom: solid 2px transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabActive {
|
|
|
|
border-bottom: solid 2px var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab_renotes {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab_reactions {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactionTabs {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactionTab {
|
|
|
|
padding: 4px 6px;
|
|
|
|
border: solid 1px var(--divider);
|
|
|
|
border-radius: var(--radius-sm);
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactionTabActive {
|
|
|
|
border-color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 500px) {
|
|
|
|
.root {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 450px) {
|
|
|
|
.renote {
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderAvatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 350px) {
|
|
|
|
.noteFooterButton {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 0.1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 300px) {
|
|
|
|
.root {
|
|
|
|
font-size: 0.825em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteHeaderAvatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noteFooterButton {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 0.1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
flex-shrink: 0 !important;
|
|
|
|
display: block !important;
|
|
|
|
margin: 0 10px 0 0 !important;
|
|
|
|
width: 40px !important;
|
|
|
|
height: 40px !important;
|
|
|
|
border-radius: var(--radius-sm) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.muted {
|
|
|
|
padding: 8px;
|
|
|
|
text-align: center;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badgeRoles {
|
|
|
|
margin: 0 .5em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badgeRole {
|
|
|
|
height: 1.3em;
|
|
|
|
vertical-align: -20%;
|
|
|
|
|
|
|
|
& + .badgeRole {
|
|
|
|
margin-left: 0.2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|