2021-01-01 13:41:20 +00:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
v-if="!muted"
|
|
|
|
v-show="!isDeleted"
|
2022-05-26 13:53:09 +00:00
|
|
|
ref="el"
|
2021-01-01 13:41:20 +00:00
|
|
|
v-hotkey="keymap"
|
2023-01-06 00:41:14 +00:00
|
|
|
class="lxwezrsl"
|
2021-11-19 10:36:12 +00:00
|
|
|
:tabindex="!isDeleted ? '-1' : null"
|
|
|
|
:class="{ renote: isRenote }"
|
2021-01-01 13:41:20 +00:00
|
|
|
>
|
2022-01-14 01:25:51 +00:00
|
|
|
<MkNoteSub v-for="note in conversation" :key="note.id" class="reply-to-more" :note="note"/>
|
|
|
|
<MkNoteSub v-if="appearNote.reply" :note="appearNote.reply" class="reply-to"/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="isRenote" class="renote">
|
2021-01-01 13:41:20 +00:00
|
|
|
<MkAvatar class="avatar" :user="note.user"/>
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-repeat"></i>
|
2022-07-20 13:24:26 +00:00
|
|
|
<I18n :src="i18n.ts.renotedBy" tag="span">
|
2021-01-01 13:41:20 +00:00
|
|
|
<template #user>
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkA v-user-preview="note.userId" class="name" :to="userPage(note.user)">
|
2021-01-01 13:41:20 +00:00
|
|
|
<MkUserName :user="note.user"/>
|
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
<div class="info">
|
2021-11-19 10:36:12 +00:00
|
|
|
<button ref="renoteTime" class="_button time" @click="showRenoteMenu()">
|
2022-12-19 10:01:30 +00:00
|
|
|
<i v-if="isMyRenote" class="ti ti-dots dropdownIcon"></i>
|
2021-01-01 13:41:20 +00:00
|
|
|
<MkTime :time="note.createdAt"/>
|
|
|
|
</button>
|
2023-01-08 01:48:44 +00:00
|
|
|
<span v-if="note.visibility !== 'public'" style="{ margin-left: 0.5em; }" :title="i18n.ts._visibility[note.visibility]">
|
|
|
|
<i v-if="note.visibility === 'home'" class="ti ti-home"></i>
|
|
|
|
<i v-else-if="note.visibility === 'followers'" class="ti ti-lock-open"></i>
|
|
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
|
|
</span>
|
|
|
|
<span v-if="note.localOnly" style="{ margin-left: 0.5em; }" :title="i18n.ts._visibility['localOnly']"><i class="ti ti-world-off"></i></span>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<article class="article" @contextmenu.stop="onContextmenu">
|
|
|
|
<header class="header">
|
2021-04-17 14:52:54 +00:00
|
|
|
<MkAvatar class="avatar" :user="appearNote.user" :show-indicator="true"/>
|
2021-01-01 13:41:20 +00:00
|
|
|
<div class="body">
|
|
|
|
<div class="top">
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkA v-user-preview="appearNote.user.id" class="name" :to="userPage(appearNote.user)">
|
2022-11-27 00:04:09 +00:00
|
|
|
<MkUserName :nowrap="false" :user="appearNote.user"/>
|
2021-01-01 13:41:20 +00:00
|
|
|
</MkA>
|
2021-11-19 10:36:12 +00:00
|
|
|
<span v-if="appearNote.user.isBot" class="is-bot">bot</span>
|
2022-07-07 12:17:47 +00:00
|
|
|
<div class="info">
|
2023-01-08 01:48:44 +00:00
|
|
|
<span v-if="appearNote.visibility !== 'public'" style="{ margin-left: 0.5em; }" :title="i18n.ts._visibility[appearNote.visibility]">
|
|
|
|
<i v-if="appearNote.visibility === 'home'" class="ti ti-home"></i>
|
|
|
|
<i v-else-if="appearNote.visibility === 'followers'" class="ti ti-lock-open"></i>
|
|
|
|
<i v-else-if="appearNote.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
|
|
</span>
|
|
|
|
<span v-if="appearNote.localOnly" style="{ margin-left: 0.5em; }" :title="i18n.ts._visibility['localOnly']"><i class="ti ti-world-off"></i></span>
|
2022-07-07 12:17:47 +00:00
|
|
|
</div>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
2021-01-07 03:22:21 +00:00
|
|
|
<div class="username"><MkAcct :user="appearNote.user"/></div>
|
2021-01-30 02:10:33 +00:00
|
|
|
<MkInstanceTicker v-if="showTicker" class="ticker" :instance="appearNote.user.instance"/>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="main">
|
|
|
|
<div class="body">
|
|
|
|
<p v-if="appearNote.cw != null" class="cw">
|
2022-12-29 01:14:44 +00:00
|
|
|
<Mfm v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$i"/>
|
2022-12-30 04:56:22 +00:00
|
|
|
<MkCwButton v-model="showContent" :note="appearNote"/>
|
2021-01-01 13:41:20 +00:00
|
|
|
</p>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-show="appearNote.cw == null || showContent" class="content">
|
2021-01-01 13:41:20 +00:00
|
|
|
<div class="text">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span v-if="appearNote.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span>
|
2022-12-19 10:01:30 +00:00
|
|
|
<MkA v-if="appearNote.replyId" class="reply" :to="`/notes/${appearNote.replyId}`"><i class="ti ti-arrow-back-up"></i></MkA>
|
2022-12-29 01:14:44 +00:00
|
|
|
<Mfm v-if="appearNote.text" :text="appearNote.text" :author="appearNote.user" :i="$i"/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<a v-if="appearNote.renote != null" class="rp">RN:</a>
|
|
|
|
<div v-if="translating || translation" class="translation">
|
2021-08-15 11:26:44 +00:00
|
|
|
<MkLoading v-if="translating" mini/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-else class="translated">
|
2021-11-19 10:03:25 +00:00
|
|
|
<b>{{ $t('translatedFrom', { x: translation.sourceLang }) }}: </b>
|
2022-12-29 01:14:44 +00:00
|
|
|
<Mfm :text="translation.text" :author="appearNote.user" :i="$i"/>
|
2021-08-15 11:26:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="appearNote.files.length > 0" class="files">
|
2022-12-30 04:56:22 +00:00
|
|
|
<MkMediaList :media-list="appearNote.files"/>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
2022-12-30 04:56:22 +00:00
|
|
|
<MkPoll v-if="appearNote.poll" ref="pollViewer" :note="appearNote" class="poll"/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="true" class="url-preview"/>
|
2023-01-03 05:21:32 +00:00
|
|
|
<div v-if="appearNote.renote" class="renote"><MkNoteSimple :note="appearNote.renote" class="note"/></div>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
2022-12-19 10:01:30 +00:00
|
|
|
<MkA v-if="appearNote.channel && !inChannel" class="channel" :to="`/channels/${appearNote.channel.id}`"><i class="ti ti-device-tv"></i> {{ appearNote.channel.name }}</MkA>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="info">
|
2021-11-28 11:29:37 +00:00
|
|
|
<MkA class="created-at" :to="notePage(appearNote)">
|
|
|
|
<MkTime :time="appearNote.createdAt" mode="detail"/>
|
|
|
|
</MkA>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
2022-12-30 04:56:22 +00:00
|
|
|
<MkReactionsViewer ref="reactionsViewer" :note="appearNote"/>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button class="button _button" @click="reply()">
|
2022-12-19 23:35:49 +00:00
|
|
|
<i class="ti ti-arrow-back-up"></i>
|
2021-11-19 10:36:12 +00:00
|
|
|
<p v-if="appearNote.repliesCount > 0" class="count">{{ appearNote.repliesCount }}</p>
|
2021-01-01 13:41:20 +00:00
|
|
|
</button>
|
2023-01-08 01:20:28 +00:00
|
|
|
<button
|
|
|
|
v-if="canRenote"
|
|
|
|
ref="renoteButton"
|
|
|
|
class="button _button"
|
|
|
|
@mousedown="renote()"
|
|
|
|
>
|
|
|
|
<i class="ti ti-repeat"></i>
|
|
|
|
<p v-if="appearNote.renoteCount > 0" class="count">{{ appearNote.renoteCount }}</p>
|
|
|
|
</button>
|
|
|
|
<button v-else class="button _button" disabled>
|
|
|
|
<i class="ti ti-ban"></i>
|
|
|
|
</button>
|
2023-01-08 02:12:11 +00:00
|
|
|
<button v-if="appearNote.myReaction == null" ref="reactButton" class="button _button" @mousedown="react()">
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-plus"></i>
|
2021-01-01 13:41:20 +00:00
|
|
|
</button>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button v-if="appearNote.myReaction != null" ref="reactButton" class="button _button reacted" @click="undoReact(appearNote)">
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-minus"></i>
|
2021-01-01 13:41:20 +00:00
|
|
|
</button>
|
2023-01-08 02:12:11 +00:00
|
|
|
<button ref="menuButton" class="button _button" @mousedown="menu()">
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-dots"></i>
|
2021-01-01 13:41:20 +00:00
|
|
|
</button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</article>
|
2022-01-14 01:25:51 +00:00
|
|
|
<MkNoteSub v-for="note in replies" :key="note.id" :note="note" class="reply" :detail="true"/>
|
2021-01-01 13:41:20 +00:00
|
|
|
</div>
|
2022-12-27 09:29:39 +00:00
|
|
|
<div v-else class="_panel muted" @click="muted = false">
|
2022-07-20 13:24:26 +00:00
|
|
|
<I18n :src="i18n.ts.userSaysSomething" tag="small">
|
2021-01-01 13:41:20 +00:00
|
|
|
<template #name>
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkA v-user-preview="appearNote.userId" class="name" :to="userPage(appearNote.user)">
|
2021-01-01 13:41:20 +00:00
|
|
|
<MkUserName :user="appearNote.user"/>
|
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
<script lang="ts" setup>
|
2023-01-03 01:12:37 +00:00
|
|
|
import { computed, inject, onMounted, onUnmounted, reactive, ref, shallowRef } from 'vue';
|
2021-04-02 01:36:11 +00:00
|
|
|
import * as mfm from 'mfm-js';
|
2022-01-14 01:25:51 +00:00
|
|
|
import * as misskey from 'misskey-js';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkNoteSub from '@/components/MkNoteSub.vue';
|
2022-12-30 04:56:22 +00:00
|
|
|
import MkNoteSimple from '@/components/MkNoteSimple.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';
|
2023-01-08 01:20:28 +00:00
|
|
|
import MkUsersTooltip from '@/components/MkUsersTooltip.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
|
|
|
import MkInstanceTicker from '@/components/MkInstanceTicker.vue';
|
2021-11-12 14:53:10 +00:00
|
|
|
import { pleaseLogin } from '@/scripts/please-login';
|
|
|
|
import { checkWordMute } from '@/scripts/check-word-mute';
|
|
|
|
import { userPage } from '@/filters/user';
|
2021-11-28 11:29:37 +00:00
|
|
|
import { notePage } from '@/filters/note';
|
2021-11-12 14:53:10 +00:00
|
|
|
import * as os from '@/os';
|
2022-01-14 01:25:51 +00:00
|
|
|
import { defaultStore, noteViewInterruptors } from '@/store';
|
2021-11-12 14:53:10 +00:00
|
|
|
import { reactionPicker } from '@/scripts/reaction-picker';
|
|
|
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm';
|
2022-01-14 01:25:51 +00:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { getNoteMenu } from '@/scripts/get-note-menu';
|
|
|
|
import { useNoteCapture } from '@/scripts/use-note-capture';
|
2022-11-17 00:31:07 +00:00
|
|
|
import { deepClone } from '@/scripts/clone';
|
2023-01-08 01:20:28 +00:00
|
|
|
import { useTooltip } from '@/scripts/use-tooltip';
|
2022-01-14 01:25:51 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
pinned?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const inChannel = inject('inChannel', null);
|
|
|
|
|
2022-11-17 00:31:07 +00:00
|
|
|
let note = $ref(deepClone(props.note));
|
2022-03-04 16:23:34 +00:00
|
|
|
|
|
|
|
// plugin
|
|
|
|
if (noteViewInterruptors.length > 0) {
|
|
|
|
onMounted(async () => {
|
2022-11-17 00:31:07 +00:00
|
|
|
let result = deepClone(note);
|
2022-03-04 16:23:34 +00:00
|
|
|
for (const interruptor of noteViewInterruptors) {
|
|
|
|
result = await interruptor.handler(result);
|
|
|
|
}
|
|
|
|
note = result;
|
|
|
|
});
|
|
|
|
}
|
2022-02-11 13:14:14 +00:00
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
const isRenote = (
|
2022-02-11 13:14:14 +00:00
|
|
|
note.renote != null &&
|
|
|
|
note.text == null &&
|
|
|
|
note.fileIds.length === 0 &&
|
|
|
|
note.poll == null
|
2022-01-14 01:25:51 +00:00
|
|
|
);
|
|
|
|
|
2023-01-03 01:12:37 +00:00
|
|
|
const el = shallowRef<HTMLElement>();
|
|
|
|
const menuButton = shallowRef<HTMLElement>();
|
2023-01-08 01:20:28 +00:00
|
|
|
const renoteButton = shallowRef<HTMLElement>();
|
2023-01-03 01:12:37 +00:00
|
|
|
const renoteTime = shallowRef<HTMLElement>();
|
|
|
|
const reactButton = shallowRef<HTMLElement>();
|
2022-03-04 16:23:34 +00:00
|
|
|
let appearNote = $computed(() => isRenote ? note.renote as misskey.entities.Note : note);
|
2022-02-11 13:14:14 +00:00
|
|
|
const isMyRenote = $i && ($i.id === note.userId);
|
2022-01-14 01:25:51 +00:00
|
|
|
const showContent = ref(false);
|
|
|
|
const isDeleted = ref(false);
|
|
|
|
const muted = ref(checkWordMute(appearNote, $i, defaultStore.state.mutedWords));
|
|
|
|
const translation = ref(null);
|
|
|
|
const translating = ref(false);
|
|
|
|
const urls = appearNote.text ? extractUrlFromMfm(mfm.parse(appearNote.text)) : null;
|
|
|
|
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.user.instance);
|
|
|
|
const conversation = ref<misskey.entities.Note[]>([]);
|
|
|
|
const replies = ref<misskey.entities.Note[]>([]);
|
2023-01-08 01:20:28 +00:00
|
|
|
const canRenote = computed(() => ['public', 'home'].includes(appearNote.visibility) || appearNote.userId === $i.id);
|
2022-01-14 01:25:51 +00:00
|
|
|
|
|
|
|
const keymap = {
|
|
|
|
'r': () => reply(true),
|
|
|
|
'e|a|plus': () => react(true),
|
|
|
|
'q': () => renoteButton.value.renote(true),
|
|
|
|
'esc': blur,
|
|
|
|
'm|o': () => menu(true),
|
2022-05-26 13:53:09 +00:00
|
|
|
's': () => showContent.value !== showContent.value,
|
2022-01-14 01:25:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
useNoteCapture({
|
|
|
|
rootEl: el,
|
2022-02-11 13:14:14 +00:00
|
|
|
note: $$(appearNote),
|
|
|
|
isDeletedRef: isDeleted,
|
2022-01-14 01:25:51 +00:00
|
|
|
});
|
2021-01-01 13:41:20 +00:00
|
|
|
|
2023-01-08 01:20:28 +00:00
|
|
|
useTooltip(renoteButton, async (showing) => {
|
|
|
|
const renotes = await os.api('notes/renotes', {
|
|
|
|
noteId: appearNote.id,
|
|
|
|
limit: 11,
|
|
|
|
});
|
|
|
|
|
|
|
|
const users = renotes.map(x => x.user);
|
|
|
|
|
|
|
|
if (users.length < 1) return;
|
|
|
|
|
|
|
|
os.popup(MkUsersTooltip, {
|
|
|
|
showing,
|
|
|
|
users,
|
|
|
|
count: appearNote.renoteCount,
|
|
|
|
targetElement: renoteButton.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
});
|
|
|
|
|
|
|
|
function renote(viaKeyboard = false) {
|
|
|
|
pleaseLogin();
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.renote,
|
|
|
|
icon: 'ti ti-repeat',
|
|
|
|
action: () => {
|
|
|
|
os.api('notes/create', {
|
|
|
|
renoteId: appearNote.id,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
text: i18n.ts.quote,
|
|
|
|
icon: 'ti ti-quote',
|
|
|
|
action: () => {
|
|
|
|
os.post({
|
|
|
|
renote: appearNote,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}], renoteButton.value, {
|
|
|
|
viaKeyboard,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
function reply(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
|
|
|
os.post({
|
|
|
|
reply: appearNote,
|
|
|
|
animation: !viaKeyboard,
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function react(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
|
|
|
blur();
|
|
|
|
reactionPicker.show(reactButton.value, reaction => {
|
|
|
|
os.api('notes/reactions/create', {
|
|
|
|
noteId: appearNote.id,
|
2022-06-05 03:26:36 +00:00
|
|
|
reaction: reaction,
|
2021-01-01 13:41:20 +00:00
|
|
|
});
|
2022-01-14 01:25:51 +00:00
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function undoReact(note): void {
|
|
|
|
const oldReaction = note.myReaction;
|
|
|
|
if (!oldReaction) return;
|
|
|
|
os.api('notes/reactions/delete', {
|
2022-06-05 03:26:36 +00:00
|
|
|
noteId: note.id,
|
2022-01-14 01:25:51 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-18 12:35:57 +00:00
|
|
|
function onContextmenu(ev: MouseEvent): void {
|
2022-01-14 01:25:51 +00:00
|
|
|
const isLink = (el: HTMLElement) => {
|
|
|
|
if (el.tagName === 'A') return true;
|
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
};
|
2022-01-18 12:35:57 +00:00
|
|
|
if (isLink(ev.target)) return;
|
2022-01-14 01:25:51 +00:00
|
|
|
if (window.getSelection().toString() !== '') return;
|
|
|
|
|
|
|
|
if (defaultStore.state.useReactionPickerForContextMenu) {
|
2022-01-18 12:35:57 +00:00
|
|
|
ev.preventDefault();
|
2022-01-14 01:25:51 +00:00
|
|
|
react();
|
|
|
|
} else {
|
2022-06-18 09:27:09 +00:00
|
|
|
os.contextMenu(getNoteMenu({ note: note, translating, translation, menuButton, isDeleted }), ev).then(focus);
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function menu(viaKeyboard = false): void {
|
2022-06-18 09:27:09 +00:00
|
|
|
os.popupMenu(getNoteMenu({ note: note, translating, translation, menuButton, isDeleted }), menuButton.value, {
|
2022-06-05 03:26:36 +00:00
|
|
|
viaKeyboard,
|
2022-01-14 01:25:51 +00:00
|
|
|
}).then(focus);
|
|
|
|
}
|
|
|
|
|
|
|
|
function showRenoteMenu(viaKeyboard = false): void {
|
|
|
|
if (!isMyRenote) return;
|
|
|
|
os.popupMenu([{
|
2022-01-28 02:39:49 +00:00
|
|
|
text: i18n.ts.unrenote,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-trash',
|
2022-01-14 01:25:51 +00:00
|
|
|
danger: true,
|
|
|
|
action: () => {
|
|
|
|
os.api('notes/delete', {
|
2022-06-05 03:26:36 +00:00
|
|
|
noteId: note.id,
|
2022-01-14 01:25:51 +00:00
|
|
|
});
|
|
|
|
isDeleted.value = true;
|
2022-06-05 03:26:36 +00:00
|
|
|
},
|
2022-01-14 01:25:51 +00:00
|
|
|
}], renoteTime.value, {
|
2022-06-05 03:26:36 +00:00
|
|
|
viaKeyboard: viaKeyboard,
|
2022-01-14 01:25:51 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function focus() {
|
|
|
|
el.value.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
function blur() {
|
|
|
|
el.value.blur();
|
|
|
|
}
|
|
|
|
|
|
|
|
os.api('notes/children', {
|
|
|
|
noteId: appearNote.id,
|
2022-06-05 03:26:36 +00:00
|
|
|
limit: 30,
|
2022-01-14 01:25:51 +00:00
|
|
|
}).then(res => {
|
|
|
|
replies.value = res;
|
2021-01-01 13:41:20 +00:00
|
|
|
});
|
2022-01-14 01:25:51 +00:00
|
|
|
|
|
|
|
if (appearNote.replyId) {
|
|
|
|
os.api('notes/conversation', {
|
2022-06-05 03:26:36 +00:00
|
|
|
noteId: appearNote.replyId,
|
2022-01-14 01:25:51 +00:00
|
|
|
}).then(res => {
|
|
|
|
conversation.value = res.reverse();
|
|
|
|
});
|
|
|
|
}
|
2021-01-01 13:41:20 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-08-16 06:21:58 +00:00
|
|
|
.lxwezrsl {
|
2021-01-01 13:41:20 +00:00
|
|
|
position: relative;
|
|
|
|
transition: box-shadow 0.1s ease;
|
2023-01-02 03:15:26 +00:00
|
|
|
overflow: clip;
|
2021-01-01 13:41:20 +00:00
|
|
|
contain: content;
|
|
|
|
|
|
|
|
&: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: dashed 1px var(--focus);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .article > .main > .footer > .button {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .reply-to {
|
|
|
|
opacity: 0.7;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .reply-to-more {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .renote {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 16px 32px 8px 32px;
|
|
|
|
line-height: 28px;
|
|
|
|
white-space: pre;
|
|
|
|
color: var(--renote);
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i {
|
2021-01-01 13:41:20 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2021-01-01 13:41:20 +00:00
|
|
|
flex-shrink: 1;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
|
|
> .time {
|
|
|
|
flex-shrink: 0;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
> .dropdownIcon {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .renote + .article {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .article {
|
|
|
|
padding: 32px;
|
2022-07-16 13:16:01 +00:00
|
|
|
font-size: 1.2em;
|
2021-01-01 13:41:20 +00:00
|
|
|
|
|
|
|
> .header {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 16px;
|
2022-11-27 00:04:09 +00:00
|
|
|
align-items: center;
|
2021-01-01 13:41:20 +00:00
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
display: block;
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 58px;
|
|
|
|
height: 58px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
padding-left: 16px;
|
2021-01-23 08:26:54 +00:00
|
|
|
font-size: 0.95em;
|
2021-01-01 13:41:20 +00:00
|
|
|
|
|
|
|
> .top {
|
|
|
|
> .name {
|
|
|
|
font-weight: bold;
|
2022-11-27 00:04:09 +00:00
|
|
|
line-height: 1.3;
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .is-bot {
|
2022-11-27 00:04:09 +00:00
|
|
|
display: inline-block;
|
2021-01-01 13:41:20 +00:00
|
|
|
margin: 0 0.5em;
|
|
|
|
padding: 4px 6px;
|
|
|
|
font-size: 80%;
|
2022-11-27 00:04:09 +00:00
|
|
|
line-height: 1;
|
2021-04-10 03:40:50 +00:00
|
|
|
border: solid 0.5px var(--divider);
|
2021-01-01 13:41:20 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2022-07-07 12:17:47 +00:00
|
|
|
|
|
|
|
> .info {
|
|
|
|
float: right;
|
|
|
|
}
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
2022-11-27 00:04:09 +00:00
|
|
|
|
|
|
|
> .username {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
line-height: 1.3;
|
|
|
|
word-wrap: anywhere;
|
|
|
|
}
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
> .body {
|
2022-12-25 23:40:13 +00:00
|
|
|
container-type: inline-size;
|
|
|
|
|
2021-01-01 13:41:20 +00:00
|
|
|
> .cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
> .text {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
|
|
|
> .reply {
|
|
|
|
color: var(--accent);
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .rp {
|
|
|
|
margin-left: 4px;
|
|
|
|
font-style: oblique;
|
|
|
|
color: var(--renote);
|
|
|
|
}
|
2021-08-15 11:26:44 +00:00
|
|
|
|
|
|
|
> .translation {
|
|
|
|
border: solid 0.5px var(--divider);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 12px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .url-preview {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .poll {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .renote {
|
|
|
|
padding: 8px 0;
|
|
|
|
|
2023-01-03 05:21:32 +00:00
|
|
|
> .note {
|
2021-01-01 13:41:20 +00:00
|
|
|
padding: 16px;
|
|
|
|
border: dashed 1px var(--renote);
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .channel {
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .footer {
|
|
|
|
> .info {
|
|
|
|
margin: 16px 0;
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .count {
|
|
|
|
display: inline;
|
|
|
|
margin: 0 0 0 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.reacted {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .reply {
|
2021-04-10 03:40:50 +00:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2021-01-01 13:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-25 23:40:13 +00:00
|
|
|
@container (max-width: 500px) {
|
|
|
|
.lxwezrsl {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 450px) {
|
|
|
|
.lxwezrsl {
|
|
|
|
> .renote {
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .article {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .header {
|
|
|
|
> .avatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 350px) {
|
|
|
|
.lxwezrsl {
|
|
|
|
> .article {
|
|
|
|
> .main {
|
|
|
|
> .footer {
|
|
|
|
> .button {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 300px) {
|
|
|
|
.lxwezrsl {
|
|
|
|
font-size: 0.825em;
|
|
|
|
|
|
|
|
> .article {
|
|
|
|
> .header {
|
|
|
|
> .avatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
> .footer {
|
|
|
|
> .button {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
.muted {
|
2021-01-01 13:41:20 +00:00
|
|
|
padding: 8px;
|
|
|
|
text-align: center;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
</style>
|