2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
|
|
|
<div
|
2023-11-23 09:56:20 +00:00
|
|
|
v-if="!hardMuted && !muted"
|
2020-07-26 23:46:21 +00:00
|
|
|
v-show="!isDeleted"
|
2022-01-14 01:25:51 +00:00
|
|
|
ref="el"
|
2020-01-29 19:37:25 +00:00
|
|
|
v-hotkey="keymap"
|
2023-02-28 11:53:32 +00:00
|
|
|
:class="[$style.root, { [$style.showActionsOnlyHover]: defaultStore.state.showNoteActionsOnlyHover }]"
|
2023-02-11 04:05:36 +00:00
|
|
|
:tabindex="!isDeleted ? '-1' : undefined"
|
2020-01-29 19:37:25 +00:00
|
|
|
>
|
2023-02-11 01:27:59 +00:00
|
|
|
<MkNoteSub v-if="appearNote.reply && !renoteCollapsed" :note="appearNote.reply" :class="$style.replyTo"/>
|
2023-01-09 20:17:54 +00:00
|
|
|
<div v-if="pinned" :class="$style.tip"><i class="ti ti-pin"></i> {{ i18n.ts.pinnedNote }}</div>
|
2023-02-14 04:17:00 +00:00
|
|
|
<!--<div v-if="appearNote._prId_" class="tip"><i class="ti ti-speakerphone"></i> {{ i18n.ts.promotion }}<button class="_textButton hide" @click="readPromo()">{{ i18n.ts.hideThisNote }} <i class="ti ti-x"></i></button></div>-->
|
2023-01-09 20:17:54 +00:00
|
|
|
<!--<div v-if="appearNote._featuredId_" class="tip"><i class="ti ti-bolt"></i> {{ i18n.ts.featured }}</div>-->
|
|
|
|
<div v-if="isRenote" :class="$style.renote">
|
2023-05-02 00:36:40 +00:00
|
|
|
<div v-if="note.channel" :class="$style.colorBar" :style="{ background: note.channel.color }"></div>
|
2023-02-11 00:41:54 +00:00
|
|
|
<MkAvatar :class="$style.renoteAvatar" :user="note.user" link preview/>
|
2023-01-09 20:17:54 +00:00
|
|
|
<i class="ti ti-repeat" style="margin-right: 4px;"></i>
|
|
|
|
<I18n :src="i18n.ts.renotedBy" tag="span" :class="$style.renoteText">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template #user>
|
2023-01-09 20:17:54 +00:00
|
|
|
<MkA v-user-preview="note.userId" :class="$style.renoteUserName" :to="userPage(note.user)">
|
2023-02-08 11:07:19 +00:00
|
|
|
<MkUserName :user="note.user"/>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2023-01-09 20:17:54 +00:00
|
|
|
<div :class="$style.renoteInfo">
|
|
|
|
<button ref="renoteTime" :class="$style.renoteTime" class="_button" @click="showRenoteMenu()">
|
2023-09-05 08:25:08 +00:00
|
|
|
<i class="ti ti-dots" :class="$style.renoteMenu"></i>
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkTime :time="note.createdAt"/>
|
2020-05-15 11:39:11 +00:00
|
|
|
</button>
|
2023-01-09 00:04:35 +00:00
|
|
|
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
2023-01-08 01:48:44 +00:00
|
|
|
<i v-if="note.visibility === 'home'" class="ti ti-home"></i>
|
2023-01-09 04:32:48 +00:00
|
|
|
<i v-else-if="note.visibility === 'followers'" class="ti ti-lock"></i>
|
2023-01-08 01:48:44 +00:00
|
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
|
|
</span>
|
2023-04-05 05:30:03 +00:00
|
|
|
<span v-if="note.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ti ti-rocket-off"></i></span>
|
2023-03-01 05:54:02 +00:00
|
|
|
<span v-if="note.channel" style="margin-left: 0.5em;" :title="note.channel.name"><i class="ti ti-device-tv"></i></span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-11 00:41:54 +00:00
|
|
|
<div v-if="renoteCollapsed" :class="$style.collapsedRenoteTarget">
|
|
|
|
<MkAvatar :class="$style.collapsedRenoteTargetAvatar" :user="appearNote.user" link preview/>
|
2023-11-15 02:09:54 +00:00
|
|
|
<Mfm :text="getNoteSummary(appearNote)" :plain="true" :nowrap="true" :author="appearNote.user" :nyaize="'respect'" :class="$style.collapsedRenoteTargetText" @click="renoteCollapsed = false"/>
|
2023-02-11 00:41:54 +00:00
|
|
|
</div>
|
|
|
|
<article v-else :class="$style.article" @contextmenu.stop="onContextmenu">
|
2023-05-02 00:36:40 +00:00
|
|
|
<div v-if="appearNote.channel" :class="$style.colorBar" :style="{ background: appearNote.channel.color }"></div>
|
2023-11-03 06:35:07 +00:00
|
|
|
<MkAvatar :class="$style.avatar" :user="appearNote.user" :link="!mock" :preview="!mock"/>
|
2023-01-09 20:17:54 +00:00
|
|
|
<div :class="$style.main">
|
2023-06-01 08:19:46 +00:00
|
|
|
<MkNoteHeader :note="appearNote" :mini="true"/>
|
|
|
|
<MkInstanceTicker v-if="showTicker" :instance="appearNote.user.instance"/>
|
2023-01-09 20:22:47 +00:00
|
|
|
<div style="container-type: inline-size;">
|
2023-01-09 20:17:54 +00:00
|
|
|
<p v-if="appearNote.cw != null" :class="$style.cw">
|
2023-11-15 02:09:54 +00:00
|
|
|
<Mfm v-if="appearNote.cw != ''" style="margin-right: 8px;" :text="appearNote.cw" :author="appearNote.user" :nyaize="'respect'"/>
|
2023-12-18 10:49:19 +00:00
|
|
|
<MkCwButton v-model="showContent" :text="appearNote.text" :renote="appearNote" :files="appearNote.files" :poll="appearNote.poll" style="margin: 4px 0;"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</p>
|
2023-01-09 20:22:47 +00:00
|
|
|
<div v-show="appearNote.cw == null || showContent" :class="[{ [$style.contentCollapsed]: collapsed }]">
|
2023-01-09 20:17:54 +00:00
|
|
|
<div :class="$style.text">
|
2022-01-28 02:39:49 +00:00
|
|
|
<span v-if="appearNote.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span>
|
2023-01-09 20:17:54 +00:00
|
|
|
<MkA v-if="appearNote.replyId" :class="$style.replyIcon" :to="`/notes/${appearNote.replyId}`"><i class="ti ti-arrow-back-up"></i></MkA>
|
2023-11-04 09:27:22 +00:00
|
|
|
<Mfm
|
|
|
|
v-if="appearNote.text"
|
|
|
|
:parsedNodes="parsed"
|
|
|
|
:text="appearNote.text"
|
|
|
|
:author="appearNote.user"
|
2023-11-15 02:09:54 +00:00
|
|
|
:nyaize="'respect'"
|
2023-11-04 09:27:22 +00:00
|
|
|
:emojiUrls="appearNote.emojis"
|
|
|
|
:enableEmojiMenu="true"
|
|
|
|
:enableEmojiMenuReaction="true"
|
|
|
|
/>
|
2023-01-09 20:17:54 +00:00
|
|
|
<div v-if="translating || translation" :class="$style.translation">
|
2021-08-15 11:26:44 +00:00
|
|
|
<MkLoading v-if="translating" mini/>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div v-else>
|
2023-04-01 05:01:57 +00:00
|
|
|
<b>{{ i18n.t('translatedFrom', { x: translation.sourceLang }) }}: </b>
|
2023-11-15 02:09:54 +00:00
|
|
|
<Mfm :text="translation.text" :author="appearNote.user" :nyaize="'respect'" :emojiUrls="appearNote.emojis"/>
|
2021-08-15 11:26:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div v-if="appearNote.files.length > 0">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkMediaList :mediaList="appearNote.files"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-02-11 00:41:54 +00:00
|
|
|
<MkPoll v-if="appearNote.poll" :note="appearNote" :class="$style.poll"/>
|
2023-01-09 20:17:54 +00:00
|
|
|
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="false" :class="$style.urlPreview"/>
|
|
|
|
<div v-if="appearNote.renote" :class="$style.quote"><MkNoteSimple :note="appearNote.renote" :class="$style.quoteNote"/></div>
|
|
|
|
<button v-if="isLong && collapsed" :class="$style.collapsed" class="_button" @click="collapsed = false">
|
|
|
|
<span :class="$style.collapsedLabel">{{ i18n.ts.showMore }}</span>
|
2020-12-30 00:58:57 +00:00
|
|
|
</button>
|
2023-01-09 20:17:54 +00:00
|
|
|
<button v-else-if="isLong && !collapsed" :class="$style.showLess" class="_button" @click="collapsed = true">
|
|
|
|
<span :class="$style.showLessLabel">{{ i18n.ts.showLess }}</span>
|
2022-08-01 08:55:24 +00:00
|
|
|
</button>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-09 20:17:54 +00:00
|
|
|
<MkA v-if="appearNote.channel && !inChannel" :class="$style.channel" :to="`/channels/${appearNote.channel.id}`"><i class="ti ti-device-tv"></i> {{ appearNote.channel.name }}</MkA>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-11-03 06:35:07 +00:00
|
|
|
<MkReactionsViewer :note="appearNote" :maxNumber="16" @mockUpdateMyReaction="emitUpdReaction">
|
2023-02-28 11:53:32 +00:00
|
|
|
<template #more>
|
2023-09-17 01:33:33 +00:00
|
|
|
<div :class="$style.reactionOmitted">{{ i18n.ts.more }}</div>
|
2023-02-28 11:53:32 +00:00
|
|
|
</template>
|
|
|
|
</MkReactionsViewer>
|
2023-01-09 20:17:54 +00:00
|
|
|
<footer :class="$style.footer">
|
|
|
|
<button :class="$style.footerButton" class="_button" @click="reply()">
|
2022-12-19 23:35:49 +00:00
|
|
|
<i class="ti ti-arrow-back-up"></i>
|
2023-01-09 20:17:54 +00:00
|
|
|
<p v-if="appearNote.repliesCount > 0" :class="$style.footerButtonCount">{{ appearNote.repliesCount }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
2023-01-08 01:20:28 +00:00
|
|
|
<button
|
|
|
|
v-if="canRenote"
|
|
|
|
ref="renoteButton"
|
2023-01-09 20:17:54 +00:00
|
|
|
:class="$style.footerButton"
|
|
|
|
class="_button"
|
2023-01-08 01:20:28 +00:00
|
|
|
@mousedown="renote()"
|
|
|
|
>
|
|
|
|
<i class="ti ti-repeat"></i>
|
2023-01-09 20:17:54 +00:00
|
|
|
<p v-if="appearNote.renoteCount > 0" :class="$style.footerButtonCount">{{ appearNote.renoteCount }}</p>
|
2023-01-08 01:20:28 +00:00
|
|
|
</button>
|
2023-01-09 20:17:54 +00:00
|
|
|
<button v-else :class="$style.footerButton" class="_button" disabled>
|
2023-01-08 01:20:28 +00:00
|
|
|
<i class="ti ti-ban"></i>
|
|
|
|
</button>
|
2023-01-09 20:17:54 +00:00
|
|
|
<button v-if="appearNote.myReaction == null" ref="reactButton" :class="$style.footerButton" class="_button" @mousedown="react()">
|
2023-03-07 23:56:47 +00:00
|
|
|
<i v-if="appearNote.reactionAcceptance === 'likeOnly'" class="ti ti-heart"></i>
|
|
|
|
<i v-else class="ti ti-plus"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
2023-01-09 20:17:54 +00:00
|
|
|
<button v-if="appearNote.myReaction != null" ref="reactButton" :class="$style.footerButton" class="_button" @click="undoReact(appearNote)">
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-minus"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
2023-03-24 07:54:37 +00:00
|
|
|
<button v-if="defaultStore.state.showClipButtonInNoteFooter" ref="clipButton" :class="$style.footerButton" class="_button" @mousedown="clip()">
|
|
|
|
<i class="ti ti-paperclip"></i>
|
|
|
|
</button>
|
2023-01-09 20:17:54 +00:00
|
|
|
<button ref="menuButton" :class="$style.footerButton" class="_button" @mousedown="menu()">
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-dots"></i>
|
2020-01-29 19:37:25 +00:00
|
|
|
</button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</div>
|
2023-11-23 09:56:20 +00:00
|
|
|
<div v-else-if="!hardMuted" :class="$style.muted" @click="muted = false">
|
2022-01-28 02:39:49 +00:00
|
|
|
<I18n :src="i18n.ts.userSaysSomething" tag="small">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template #name>
|
2023-01-09 20:17:54 +00:00
|
|
|
<MkA v-user-preview="appearNote.userId" :to="userPage(appearNote.user)">
|
2023-02-08 11:07:19 +00:00
|
|
|
<MkUserName :user="appearNote.user"/>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2020-07-27 04:34:20 +00:00
|
|
|
</div>
|
2023-11-27 05:47:25 +00:00
|
|
|
<div v-else>
|
|
|
|
<!--
|
2023-11-27 06:29:39 +00:00
|
|
|
MkDateSeparatedList uses TransitionGroup which requires single element in the child elements
|
|
|
|
so MkNote create empty div instead of no elements
|
2023-11-27 05:47:25 +00:00
|
|
|
-->
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
<script lang="ts" setup>
|
2023-11-03 06:35:07 +00:00
|
|
|
import { computed, inject, onMounted, ref, shallowRef, Ref, defineAsyncComponent, watch, provide } from 'vue';
|
2021-04-02 01:36:11 +00:00
|
|
|
import * as mfm from 'mfm-js';
|
2023-09-04 04:33:38 +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 MkNoteHeader from '@/components/MkNoteHeader.vue';
|
|
|
|
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';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { pleaseLogin } from '@/scripts/please-login.js';
|
|
|
|
import { focusPrev, focusNext } from '@/scripts/focus.js';
|
|
|
|
import { checkWordMute } from '@/scripts/check-word-mute.js';
|
|
|
|
import { userPage } from '@/filters/user.js';
|
|
|
|
import * as os from '@/os.js';
|
2023-11-26 04:04:44 +00:00
|
|
|
import * as sound from '@/scripts/sound.js';
|
2023-09-19 07:37:43 +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';
|
2023-11-03 08:34:23 +00:00
|
|
|
import { getAbuseNoteMenu, getCopyNoteLinkMenu, getNoteClipMenu, getNoteMenu, getRenoteMenu } from '@/scripts/get-note-menu.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
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 { getNoteSummary } from '@/scripts/get-note-summary.js';
|
2023-10-03 11:26:11 +00:00
|
|
|
import { MenuItem } from '@/types/menu.js';
|
2023-03-01 05:55:57 +00:00
|
|
|
import MkRippleEffect from '@/components/MkRippleEffect.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { showMovedDialog } from '@/scripts/show-moved-dialog.js';
|
|
|
|
import { shouldCollapsed } from '@/scripts/collapsed.js';
|
2022-01-14 01:25:51 +00:00
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
note: Misskey.entities.Note;
|
2022-01-14 01:25:51 +00:00
|
|
|
pinned?: boolean;
|
2023-11-03 06:35:07 +00:00
|
|
|
mock?: boolean;
|
2023-11-23 09:56:20 +00:00
|
|
|
withHardMute?: boolean;
|
2023-11-03 06:35:07 +00:00
|
|
|
}>(), {
|
|
|
|
mock: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
provide('mock', props.mock);
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'reaction', emoji: string): void;
|
|
|
|
(ev: 'removeReaction', emoji: string): void;
|
2022-01-14 01:25:51 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const inChannel = inject('inChannel', null);
|
2023-09-04 04:33:38 +00:00
|
|
|
const currentClip = inject<Ref<Misskey.entities.Clip> | null>('currentClip', null);
|
2022-01-14 01:25:51 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const note = ref(deepClone(props.note));
|
2022-03-04 16:22:57 +00:00
|
|
|
|
|
|
|
// plugin
|
|
|
|
if (noteViewInterruptors.length > 0) {
|
|
|
|
onMounted(async () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
let result: Misskey.entities.Note | null = deepClone(note.value);
|
2022-03-04 16:22:57 +00:00
|
|
|
for (const interruptor of noteViewInterruptors) {
|
2023-11-06 02:21:43 +00:00
|
|
|
try {
|
|
|
|
result = await interruptor.handler(result);
|
|
|
|
if (result === null) {
|
|
|
|
isDeleted.value = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2022-03-04 16:22:57 +00:00
|
|
|
}
|
2023-12-07 05:42:09 +00:00
|
|
|
note.value = result;
|
2022-03-04 16:22:57 +00:00
|
|
|
});
|
|
|
|
}
|
2022-02-11 12:35:28 +00:00
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
const isRenote = (
|
2023-12-07 05:42:09 +00:00
|
|
|
note.value.renote != null &&
|
|
|
|
note.value.text == null &&
|
2023-12-18 10:49:19 +00:00
|
|
|
note.value.cw == null &&
|
2023-12-07 05:42:09 +00:00
|
|
|
note.value.fileIds.length === 0 &&
|
|
|
|
note.value.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>();
|
2023-03-24 07:54:37 +00:00
|
|
|
const clipButton = shallowRef<HTMLElement>();
|
2023-12-07 05:42:09 +00:00
|
|
|
const appearNote = computed(() => isRenote ? note.value.renote as Misskey.entities.Note : note.value);
|
|
|
|
const isMyRenote = $i && ($i.id === note.value.userId);
|
2022-01-14 01:25:51 +00:00
|
|
|
const showContent = ref(false);
|
2023-12-07 05:42:09 +00:00
|
|
|
const parsed = computed(() => appearNote.value.text ? mfm.parse(appearNote.value.text) : null);
|
|
|
|
const urls = computed(() => parsed.value ? extractUrlFromMfm(parsed.value) : null);
|
|
|
|
const isLong = shouldCollapsed(appearNote.value, urls.value ?? []);
|
|
|
|
const collapsed = ref(appearNote.value.cw == null && isLong);
|
2022-01-14 01:25:51 +00:00
|
|
|
const isDeleted = ref(false);
|
2023-12-07 05:42:09 +00:00
|
|
|
const muted = ref(checkMute(appearNote.value, $i?.mutedWords));
|
|
|
|
const hardMuted = ref(props.withHardMute && checkMute(appearNote.value, $i?.hardMutedWords));
|
2023-02-11 04:05:36 +00:00
|
|
|
const translation = ref<any>(null);
|
2022-01-14 01:25:51 +00:00
|
|
|
const translating = ref(false);
|
2023-12-07 05:42:09 +00:00
|
|
|
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.value.user.instance);
|
|
|
|
const canRenote = computed(() => ['public', 'home'].includes(appearNote.value.visibility) || (appearNote.value.visibility === 'followers' && appearNote.value.userId === $i.id));
|
|
|
|
const renoteCollapsed = ref(defaultStore.state.collapseRenotes && isRenote && (($i && ($i.id === note.value.userId || $i.id === appearNote.value.userId)) || (appearNote.value.myReaction != null)));
|
2022-01-14 01:25:51 +00:00
|
|
|
|
2023-11-23 09:56:20 +00:00
|
|
|
function checkMute(note: Misskey.entities.Note, mutedWords: Array<string | string[]> | undefined | null): boolean {
|
|
|
|
if (mutedWords == null) return false;
|
|
|
|
|
|
|
|
if (checkWordMute(note, $i, mutedWords)) return true;
|
|
|
|
if (note.reply && checkWordMute(note.reply, $i, mutedWords)) return true;
|
|
|
|
if (note.renote && checkWordMute(note.renote, $i, mutedWords)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
const keymap = {
|
|
|
|
'r': () => reply(true),
|
|
|
|
'e|a|plus': () => react(true),
|
|
|
|
'q': () => renoteButton.value.renote(true),
|
|
|
|
'up|k|shift+tab': focusBefore,
|
|
|
|
'down|j|tab': focusAfter,
|
|
|
|
'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
|
|
|
};
|
|
|
|
|
2023-11-04 09:27:22 +00:00
|
|
|
provide('react', (reaction: string) => {
|
|
|
|
os.api('notes/reactions/create', {
|
2023-12-07 05:42:09 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-11-04 09:27:22 +00:00
|
|
|
reaction: reaction,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
watch(() => props.note, (to) => {
|
2023-12-07 05:42:09 +00:00
|
|
|
note.value = deepClone(to);
|
2023-11-03 06:35:07 +00:00
|
|
|
}, { deep: true });
|
|
|
|
} else {
|
|
|
|
useNoteCapture({
|
|
|
|
rootEl: el,
|
2023-12-07 05:42:09 +00:00
|
|
|
note: appearNote,
|
|
|
|
pureNote: note,
|
2023-11-03 06:35:07 +00:00
|
|
|
isDeletedRef: isDeleted,
|
2023-01-08 01:20:28 +00:00
|
|
|
});
|
2023-11-03 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!props.mock) {
|
|
|
|
useTooltip(renoteButton, async (showing) => {
|
|
|
|
const renotes = await os.api('notes/renotes', {
|
2023-12-07 05:42:09 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-11-03 06:35:07 +00:00
|
|
|
limit: 11,
|
|
|
|
});
|
2023-01-08 01:20:28 +00:00
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
const users = renotes.map(x => x.user);
|
2023-01-08 01:20:28 +00:00
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (users.length < 1) return;
|
2023-01-08 01:20:28 +00:00
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
os.popup(MkUsersTooltip, {
|
|
|
|
showing,
|
|
|
|
users,
|
2023-12-07 05:42:09 +00:00
|
|
|
count: appearNote.value.renoteCount,
|
2023-11-03 06:35:07 +00:00
|
|
|
targetElement: renoteButton.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
});
|
|
|
|
}
|
2023-01-08 01:20:28 +00:00
|
|
|
|
|
|
|
function renote(viaKeyboard = false) {
|
|
|
|
pleaseLogin();
|
enhance: account migration (#10592)
* copy block and mute then create follow and unfollow jobs
* copy block and mute and update lists when detecting an account has moved
* no need to care promise orders
* refactor updating actor and target
* automatically accept if a locked account had accepted an old account
* fix exception format
* prevent the old account from calling some endpoints
* do not unfollow when moving
* adjust following and follower counts
* check movedToUri when receiving a follow request
* skip if no need to adjust
* Revert "disable account migration"
This reverts commit 2321214c98591bcfe1385c1ab5bf0ff7b471ae1d.
* fix translation specifier
* fix checking alsoKnownAs and uri
* fix updating account
* fix refollowing locked account
* decrease followersCount if followed by the old account
* adjust following and followers counts when unfollowing
* fix copying mutings
* prohibit moved account from moving again
* fix move service
* allow app creation after moving
* fix lint
* remove unnecessary field
* fix cache update
* add e2e test
* add e2e test of accepting the new account automatically
* force follow if any error happens
* remove unnecessary joins
* use Array.map instead of for const of
* ユーザーリストの移行は追加のみを行う
* nanka iroiro
* fix misskey-js?
* :v:
* 移行を行ったアカウントからのフォローリクエストの自動許可を調整
* newUriを外に出す
* newUriを外に出す2
* clean up
* fix newUri
* prevent moving if the destination account has already moved
* set alsoKnownAs via /i/update
* fix database initialization
* add return type
* prohibit updating alsoKnownAs after moving
* skip to add to alsoKnownAs if toUrl is known
* skip adding to the list if it already has
* use Acct.parse instead
* rename error code
* :art:
* 制限を5から10に緩和
* movedTo(Uri), alsoKnownAsはユーザーidを返すように
* test api res
* fix
* 元アカウントはミュートし続ける
* :art:
* unfollow
* fix
* getUserUriをUserEntityServiceに
* ?
* job!
* :art:
* instance => server
* accountMovedShort, forbiddenBecauseYouAreMigrated
* accountMovedShort
* fix test
* import, pin禁止
* 実績を凍結する
* clean up
* :v:
* change message
* ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに
* Revert "ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに"
This reverts commit 3bd7be35d8aa455cb01ae58f8172a71a50485db1.
* validateAlsoKnownAs
* 移行後2時間以内はインポート可能なファイルサイズを拡大
* clean up
* どうせactorをupdatePersonで更新するならupdatePersonしか移行処理を発行しないことにする
* handle error?
* リモートからの移行処理の条件を是正
* log, port
* fix
* fix
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
* fix indent
* fix
* experimental
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2023-04-29 15:09:29 +00:00
|
|
|
showMovedDialog();
|
2023-02-12 01:59:22 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const { menu } = getRenoteMenu({ note: note.value, renoteButton, mock: props.mock });
|
2023-11-03 08:34:23 +00:00
|
|
|
os.popupMenu(menu, renoteButton.value, {
|
2023-01-08 01:20:28 +00:00
|
|
|
viaKeyboard,
|
2023-11-06 10:26:17 +00:00
|
|
|
});
|
2023-01-08 01:20:28 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
function reply(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
os.post({
|
2023-12-07 05:42:09 +00:00
|
|
|
reply: appearNote.value,
|
|
|
|
channel: appearNote.value.channel,
|
2022-01-14 01:25:51 +00:00
|
|
|
animation: !viaKeyboard,
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function react(viaKeyboard = false): void {
|
|
|
|
pleaseLogin();
|
enhance: account migration (#10592)
* copy block and mute then create follow and unfollow jobs
* copy block and mute and update lists when detecting an account has moved
* no need to care promise orders
* refactor updating actor and target
* automatically accept if a locked account had accepted an old account
* fix exception format
* prevent the old account from calling some endpoints
* do not unfollow when moving
* adjust following and follower counts
* check movedToUri when receiving a follow request
* skip if no need to adjust
* Revert "disable account migration"
This reverts commit 2321214c98591bcfe1385c1ab5bf0ff7b471ae1d.
* fix translation specifier
* fix checking alsoKnownAs and uri
* fix updating account
* fix refollowing locked account
* decrease followersCount if followed by the old account
* adjust following and followers counts when unfollowing
* fix copying mutings
* prohibit moved account from moving again
* fix move service
* allow app creation after moving
* fix lint
* remove unnecessary field
* fix cache update
* add e2e test
* add e2e test of accepting the new account automatically
* force follow if any error happens
* remove unnecessary joins
* use Array.map instead of for const of
* ユーザーリストの移行は追加のみを行う
* nanka iroiro
* fix misskey-js?
* :v:
* 移行を行ったアカウントからのフォローリクエストの自動許可を調整
* newUriを外に出す
* newUriを外に出す2
* clean up
* fix newUri
* prevent moving if the destination account has already moved
* set alsoKnownAs via /i/update
* fix database initialization
* add return type
* prohibit updating alsoKnownAs after moving
* skip to add to alsoKnownAs if toUrl is known
* skip adding to the list if it already has
* use Acct.parse instead
* rename error code
* :art:
* 制限を5から10に緩和
* movedTo(Uri), alsoKnownAsはユーザーidを返すように
* test api res
* fix
* 元アカウントはミュートし続ける
* :art:
* unfollow
* fix
* getUserUriをUserEntityServiceに
* ?
* job!
* :art:
* instance => server
* accountMovedShort, forbiddenBecauseYouAreMigrated
* accountMovedShort
* fix test
* import, pin禁止
* 実績を凍結する
* clean up
* :v:
* change message
* ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに
* Revert "ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに"
This reverts commit 3bd7be35d8aa455cb01ae58f8172a71a50485db1.
* validateAlsoKnownAs
* 移行後2時間以内はインポート可能なファイルサイズを拡大
* clean up
* どうせactorをupdatePersonで更新するならupdatePersonしか移行処理を発行しないことにする
* handle error?
* リモートからの移行処理の条件を是正
* log, port
* fix
* fix
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
* fix indent
* fix
* experimental
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2023-04-29 15:09:29 +00:00
|
|
|
showMovedDialog();
|
2023-12-07 05:42:09 +00:00
|
|
|
if (appearNote.value.reactionAcceptance === 'likeOnly') {
|
2023-11-26 04:04:44 +00:00
|
|
|
sound.play('reaction');
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
os.api('notes/reactions/create', {
|
2023-12-07 05:42:09 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-03-07 23:56:47 +00:00
|
|
|
reaction: '❤️',
|
2022-01-14 01:25:51 +00:00
|
|
|
});
|
2023-03-07 23:56:47 +00:00
|
|
|
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');
|
2023-01-21 04:14:55 +00:00
|
|
|
}
|
2023-03-07 23:56:47 +00:00
|
|
|
} else {
|
|
|
|
blur();
|
|
|
|
reactionPicker.show(reactButton.value, reaction => {
|
2023-11-26 04:04:44 +00:00
|
|
|
sound.play('reaction');
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
emit('reaction', reaction);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-07 23:56:47 +00:00
|
|
|
os.api('notes/reactions/create', {
|
2023-12-07 05:42:09 +00:00
|
|
|
noteId: appearNote.value.id,
|
2023-03-07 23:56:47 +00:00
|
|
|
reaction: reaction,
|
|
|
|
});
|
2023-12-07 05:42:09 +00:00
|
|
|
if (appearNote.value.text && appearNote.value.text.length > 100 && (Date.now() - new Date(appearNote.value.createdAt).getTime() < 1000 * 3)) {
|
2023-03-07 23:56:47 +00:00
|
|
|
claimAchievement('reactWithoutRead');
|
|
|
|
}
|
|
|
|
}, () => {
|
|
|
|
focus();
|
|
|
|
});
|
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function undoReact(note): void {
|
|
|
|
const oldReaction = note.myReaction;
|
|
|
|
if (!oldReaction) return;
|
2023-11-03 06:35:07 +00:00
|
|
|
|
|
|
|
if (props.mock) {
|
|
|
|
emit('removeReaction', oldReaction);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
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 {
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
const isLink = (el: HTMLElement) => {
|
|
|
|
if (el.tagName === 'A') return true;
|
2023-06-02 07:31:25 +00:00
|
|
|
// 再生速度の選択などのために、Audio要素のコンテキストメニューはブラウザデフォルトとする。
|
|
|
|
if (el.tagName === 'AUDIO') return true;
|
2022-01-14 01:25:51 +00:00
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
2020-01-29 19:37:25 +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 {
|
2023-12-07 05:42:09 +00:00
|
|
|
const { menu, cleanup } = getNoteMenu({ note: note.value, translating, translation, menuButton, isDeleted, currentClip: currentClip?.value });
|
2023-08-01 06:32:03 +00:00
|
|
|
os.contextMenu(menu, ev).then(focus).finally(cleanup);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function menu(viaKeyboard = false): void {
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const { menu, cleanup } = getNoteMenu({ note: note.value, translating, translation, menuButton, isDeleted, currentClip: currentClip?.value });
|
2023-08-01 06:32:03 +00:00
|
|
|
os.popupMenu(menu, menuButton.value, {
|
2022-06-05 03:26:36 +00:00
|
|
|
viaKeyboard,
|
2023-08-01 06:32:03 +00:00
|
|
|
}).then(focus).finally(cleanup);
|
2022-01-14 01:25:51 +00:00
|
|
|
}
|
|
|
|
|
2023-03-24 07:54:37 +00:00
|
|
|
async function clip() {
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
os.popupMenu(await getNoteClipMenu({ note: note.value, isDeleted, currentClip: currentClip?.value }), clipButton.value).then(focus);
|
2023-03-24 07:54:37 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
function showRenoteMenu(viaKeyboard = false): void {
|
2023-11-03 06:35:07 +00:00
|
|
|
if (props.mock) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-05 10:29:52 +00:00
|
|
|
function getUnrenote(): MenuItem {
|
|
|
|
return {
|
|
|
|
text: i18n.ts.unrenote,
|
|
|
|
icon: 'ti ti-trash',
|
|
|
|
danger: true,
|
|
|
|
action: () => {
|
|
|
|
os.api('notes/delete', {
|
2023-12-07 05:42:09 +00:00
|
|
|
noteId: note.value.id,
|
2023-09-05 10:29:52 +00:00
|
|
|
});
|
|
|
|
isDeleted.value = true;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-09-05 08:25:08 +00:00
|
|
|
if (isMyRenote) {
|
|
|
|
pleaseLogin();
|
|
|
|
os.popupMenu([
|
2023-12-07 05:42:09 +00:00
|
|
|
getCopyNoteLinkMenu(note.value, i18n.ts.copyLinkRenote),
|
2023-12-12 01:26:37 +00:00
|
|
|
{ type: 'divider' },
|
2023-09-05 10:29:52 +00:00
|
|
|
getUnrenote(),
|
2023-09-05 08:25:08 +00:00
|
|
|
], renoteTime.value, {
|
|
|
|
viaKeyboard: viaKeyboard,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
os.popupMenu([
|
2023-12-07 05:42:09 +00:00
|
|
|
getCopyNoteLinkMenu(note.value, i18n.ts.copyLinkRenote),
|
2023-12-12 01:26:37 +00:00
|
|
|
{ type: 'divider' },
|
2023-12-07 05:42:09 +00:00
|
|
|
getAbuseNoteMenu(note.value, i18n.ts.reportAbuseRenote),
|
2023-09-05 10:29:52 +00:00
|
|
|
$i.isModerator || $i.isAdmin ? getUnrenote() : undefined,
|
2023-09-05 08:25:08 +00:00
|
|
|
], renoteTime.value, {
|
|
|
|
viaKeyboard: viaKeyboard,
|
|
|
|
});
|
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function focus() {
|
|
|
|
el.value.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
function blur() {
|
|
|
|
el.value.blur();
|
|
|
|
}
|
|
|
|
|
|
|
|
function focusBefore() {
|
|
|
|
focusPrev(el.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function focusAfter() {
|
|
|
|
focusNext(el.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function readPromo() {
|
|
|
|
os.api('promo/read', {
|
2023-12-07 05:42:09 +00:00
|
|
|
noteId: appearNote.value.id,
|
2022-01-14 01:25:51 +00:00
|
|
|
});
|
|
|
|
isDeleted.value = true;
|
|
|
|
}
|
2023-11-03 06:35:07 +00:00
|
|
|
|
|
|
|
function emitUpdReaction(emoji: string, delta: number) {
|
|
|
|
if (delta < 0) {
|
|
|
|
emit('removeReaction', emoji);
|
|
|
|
} else if (delta > 0) {
|
|
|
|
emit('reaction', emoji);
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
position: relative;
|
|
|
|
transition: box-shadow 0.1s ease;
|
2021-11-28 11:07:37 +00:00
|
|
|
font-size: 1.05em;
|
2022-07-13 12:41:06 +00:00
|
|
|
overflow: clip;
|
2020-10-17 11:12:00 +00:00
|
|
|
contain: content;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-26 13:56:01 +00:00
|
|
|
// これらの指定はパフォーマンス向上には有効だが、ノートの高さは一定でないため、
|
|
|
|
// 下の方までスクロールすると上のノートの高さがここで決め打ちされたものに変化し、表示しているノートの位置が変わってしまう
|
|
|
|
// ノートがマウントされたときに自身の高さを取得し contain-intrinsic-size を設定しなおせばほぼ解決できそうだが、
|
|
|
|
// 今度はその処理自体がパフォーマンス低下の原因にならないか懸念される。また、被リアクションでも高さは変化するため、やはり多少のズレは生じる
|
|
|
|
// 一度レンダリングされた要素はブラウザがよしなにサイズを覚えておいてくれるような実装になるまで待った方が良さそう(なるのか?)
|
|
|
|
//content-visibility: auto;
|
|
|
|
//contain-intrinsic-size: 0 128px;
|
|
|
|
|
2021-10-02 17:46:58 +00:00
|
|
|
&:focus-visible {
|
2020-01-29 19:37:25 +00:00
|
|
|
outline: none;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
&: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;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2023-04-13 06:43:10 +00:00
|
|
|
.footer {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
&:hover > .article > .main > .footer > .footerButton {
|
2020-01-29 19:37:25 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-02-28 11:53:32 +00:00
|
|
|
|
|
|
|
&.showActionsOnlyHover {
|
|
|
|
.footer {
|
|
|
|
visibility: hidden;
|
|
|
|
position: absolute;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
padding: 0 4px;
|
2023-03-01 01:56:51 +00:00
|
|
|
margin-bottom: 0 !important;
|
2023-02-28 11:53:32 +00:00
|
|
|
background: var(--popup);
|
2023-03-01 05:46:53 +00:00
|
|
|
border-radius: 8px;
|
2023-02-28 11:53:32 +00:00
|
|
|
box-shadow: 0px 4px 32px var(--shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footerButton {
|
2023-03-01 05:46:53 +00:00
|
|
|
font-size: 90%;
|
2023-02-28 11:53:32 +00:00
|
|
|
|
|
|
|
&:not(:last-child) {
|
2023-03-01 01:56:51 +00:00
|
|
|
margin-right: 0;
|
2023-02-28 11:53:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.showActionsOnlyHover:hover {
|
|
|
|
.footer {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.tip {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 16px 32px 8px 32px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-size: 90%;
|
|
|
|
white-space: pre;
|
|
|
|
color: #d28a3f;
|
|
|
|
}
|
2020-02-18 09:14:38 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.tip + .article {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.replyTo {
|
|
|
|
opacity: 0.7;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renote {
|
2023-05-02 00:36:40 +00:00
|
|
|
position: relative;
|
2023-01-09 20:17:54 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 16px 32px 8px 32px;
|
|
|
|
line-height: 28px;
|
|
|
|
white-space: pre;
|
|
|
|
color: var(--renote);
|
2023-01-09 20:40:51 +00:00
|
|
|
|
|
|
|
& + .article {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
2023-05-02 00:36:40 +00:00
|
|
|
|
|
|
|
> .colorBar {
|
|
|
|
height: calc(100% - 6px);
|
|
|
|
}
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2020-03-20 10:19:28 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renoteAvatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renoteText {
|
|
|
|
overflow: hidden;
|
|
|
|
flex-shrink: 1;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renoteUserName {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renoteInfo {
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renoteTime {
|
|
|
|
flex-shrink: 0;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.renoteMenu {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2020-05-15 11:39:11 +00:00
|
|
|
|
2023-02-11 00:41:54 +00:00
|
|
|
.collapsedRenoteTarget {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
line-height: 28px;
|
|
|
|
white-space: pre;
|
|
|
|
padding: 0 32px 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsedRenoteTargetAvatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsedRenoteTargetText {
|
|
|
|
overflow: hidden;
|
|
|
|
flex-shrink: 1;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: 90%;
|
|
|
|
opacity: 0.7;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.article {
|
2023-03-01 01:56:51 +00:00
|
|
|
position: relative;
|
2023-01-09 20:17:54 +00:00
|
|
|
display: flex;
|
2023-03-01 01:56:51 +00:00
|
|
|
padding: 28px 32px;
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 00:36:40 +00:00
|
|
|
.colorBar {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
left: 8px;
|
|
|
|
width: 5px;
|
|
|
|
height: calc(100% - 16px);
|
|
|
|
border-radius: 999px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.avatar {
|
|
|
|
flex-shrink: 0;
|
2023-01-10 02:19:56 +00:00
|
|
|
display: block !important;
|
2023-03-01 01:56:51 +00:00
|
|
|
margin: 0 14px 0 0;
|
2023-01-09 20:17:54 +00:00
|
|
|
width: 58px;
|
|
|
|
height: 58px;
|
2023-01-10 02:19:56 +00:00
|
|
|
position: sticky !important;
|
2023-01-09 20:17:54 +00:00
|
|
|
top: calc(22px + var(--stickyTop, 0px));
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.showLess {
|
|
|
|
width: 100%;
|
2023-03-02 09:40:43 +00:00
|
|
|
margin-top: 14px;
|
2023-01-09 20:17:54 +00:00
|
|
|
position: sticky;
|
2023-03-02 09:40:43 +00:00
|
|
|
bottom: calc(var(--stickyBottom, 0px) + 14px);
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 00:03:07 +00:00
|
|
|
.showLessLabel {
|
2023-01-09 20:17:54 +00:00
|
|
|
display: inline-block;
|
|
|
|
background: var(--popup);
|
|
|
|
padding: 6px 10px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.contentCollapsed {
|
|
|
|
position: relative;
|
|
|
|
max-height: 9em;
|
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsed {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2023-05-07 12:37:11 +00:00
|
|
|
z-index: 2;
|
2023-01-09 20:17:54 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
|
|
|
|
&:hover > .collapsedLabel {
|
|
|
|
background: var(--panelHighlight);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.collapsedLabel {
|
|
|
|
display: inline-block;
|
|
|
|
background: var(--panel);
|
|
|
|
padding: 6px 10px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.text {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.replyIcon {
|
|
|
|
color: var(--accent);
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.translation {
|
|
|
|
border: solid 0.5px var(--divider);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 12px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.urlPreview {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quote {
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quoteNote {
|
|
|
|
padding: 16px;
|
|
|
|
border: dashed 1px var(--renote);
|
|
|
|
border-radius: 8px;
|
2023-07-26 08:24:13 +00:00
|
|
|
overflow: clip;
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.channel {
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
2023-03-01 01:56:51 +00:00
|
|
|
.footer {
|
|
|
|
margin-bottom: -14px;
|
|
|
|
}
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.footerButton {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 28px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-03-21 03:32:40 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
2020-03-21 03:32:40 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.footerButtonCount {
|
|
|
|
display: inline;
|
|
|
|
margin: 0 0 0 8px;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2023-02-25 08:49:54 +00:00
|
|
|
@container (max-width: 580px) {
|
2023-01-09 20:17:54 +00:00
|
|
|
.root {
|
2023-02-25 08:49:54 +00:00
|
|
|
font-size: 0.95em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.renote {
|
|
|
|
padding: 12px 26px 0 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article {
|
2023-03-01 01:56:51 +00:00
|
|
|
padding: 24px 26px;
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2022-07-16 06:19:52 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.avatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-02-25 08:49:54 +00:00
|
|
|
@container (max-width: 500px) {
|
|
|
|
.root {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.renote {
|
|
|
|
padding: 10px 22px 0 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article {
|
2023-03-01 01:56:51 +00:00
|
|
|
padding: 20px 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
margin-bottom: -8px;
|
2023-02-25 08:49:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 480px) {
|
2023-01-09 20:17:54 +00:00
|
|
|
.renote {
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.tip {
|
|
|
|
padding: 8px 16px 0 16px;
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-02-11 00:41:54 +00:00
|
|
|
.collapsedRenoteTarget {
|
|
|
|
padding: 0 16px 9px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.article {
|
2023-03-01 01:56:51 +00:00
|
|
|
padding: 14px 16px;
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2023-02-25 08:49:54 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-02-25 08:49:54 +00:00
|
|
|
@container (max-width: 450px) {
|
2023-01-09 20:17:54 +00:00
|
|
|
.avatar {
|
2023-03-01 01:56:51 +00:00
|
|
|
margin: 0 10px 0 0;
|
2023-01-09 20:17:54 +00:00
|
|
|
width: 46px;
|
|
|
|
height: 46px;
|
|
|
|
top: calc(14px + var(--stickyTop, 0px));
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-02-25 08:49:54 +00:00
|
|
|
@container (max-width: 400px) {
|
2023-03-01 01:56:51 +00:00
|
|
|
.root:not(.showActionsOnlyHover) {
|
|
|
|
.footerButton {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-02-25 08:49:54 +00:00
|
|
|
@container (max-width: 350px) {
|
2023-03-01 01:56:51 +00:00
|
|
|
.root:not(.showActionsOnlyHover) {
|
|
|
|
.footerButton {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
2023-02-25 08:49:54 +00:00
|
|
|
}
|
|
|
|
}
|
2023-05-02 00:36:40 +00:00
|
|
|
|
|
|
|
.colorBar {
|
|
|
|
top: 6px;
|
|
|
|
left: 6px;
|
|
|
|
width: 4px;
|
|
|
|
height: calc(100% - 12px);
|
|
|
|
}
|
2023-02-25 08:49:54 +00:00
|
|
|
}
|
|
|
|
|
2022-12-25 23:40:13 +00:00
|
|
|
@container (max-width: 300px) {
|
2023-01-09 20:17:54 +00:00
|
|
|
.avatar {
|
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
2023-03-01 01:56:51 +00:00
|
|
|
.root:not(.showActionsOnlyHover) {
|
|
|
|
.footerButton {
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-07-27 04:34:20 +00:00
|
|
|
|
2023-02-12 01:46:14 +00:00
|
|
|
@container (max-width: 250px) {
|
|
|
|
.quoteNote {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
.muted {
|
2020-07-27 04:34:20 +00:00
|
|
|
padding: 8px;
|
|
|
|
text-align: center;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2023-02-11 04:05:36 +00:00
|
|
|
|
2023-09-17 01:33:33 +00:00
|
|
|
.reactionOmitted {
|
2023-02-11 04:05:36 +00:00
|
|
|
display: inline-block;
|
|
|
|
height: 32px;
|
|
|
|
margin: 2px;
|
|
|
|
padding: 0 6px;
|
|
|
|
opacity: .8;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|