Revert "Add note detail button"

This reverts commit e481c2ae96.
This commit is contained in:
fly_mc 2024-10-16 13:30:07 +08:00
parent 752ec5d3e1
commit 212b623df1

View file

@ -141,9 +141,6 @@ SPDX-License-Identifier: AGPL-3.0-only
<button v-if="defaultStore.state.showClipButtonInNoteFooter" ref="clipButton" :class="$style.footerButton" class="_button" @mousedown.prevent="clip()">
<i class="ti ti-paperclip"></i>
</button>
<button ref="expandButton" :class="$style.footerButton" class="_button" @click.stop @click="expandNote(appearNote.id)">
<i class="ti ti-info-circle"></i>
</button>
<button ref="menuButton" :class="$style.footerButton" class="_button" @mousedown.prevent="showMenu()">
<i class="ti ti-dots"></i>
</button>
@ -218,7 +215,6 @@ import { isEnabledUrlPreview } from '@/instance.js';
import { type Keymap } from '@/scripts/hotkey.js';
import { focusPrev, focusNext } from '@/scripts/focus.js';
import { getAppearNote } from '@/scripts/get-appear-note.js';
import { useRouter } from '@/router/supplier.js';
const props = withDefaults(defineProps<{
note: Misskey.entities.Note;
@ -236,18 +232,12 @@ const emit = defineEmits<{
(ev: 'removeReaction', emoji: string): void;
}>();
const router = useRouter();
const inTimeline = inject<boolean>('inTimeline', false);
const inChannel = inject('inChannel', null);
const currentClip = inject<Ref<Misskey.entities.Clip> | null>('currentClip', null);
const note = ref(deepClone(props.note));
function expandNote(id: string) {
router.push(`/notes/${id}`);
}
// plugin
if (noteViewInterruptors.length > 0) {
onMounted(async () => {
@ -271,7 +261,6 @@ const isRenote = Misskey.note.isPureRenote(note.value);
const rootEl = shallowRef<HTMLElement>();
const menuButton = shallowRef<HTMLElement>();
const expandButton = shallowRef<HTMLElement>();
const renoteButton = shallowRef<HTMLElement>();
const renoteTime = shallowRef<HTMLElement>();
const reactButton = shallowRef<HTMLElement>();