Revert footer changes

This commit is contained in:
Freeplay 2023-02-20 13:30:15 -05:00
parent 514cc3d8d2
commit 294d940800
4 changed files with 12 additions and 16 deletions

View File

@ -1,6 +1,6 @@
<template>
<footer ref="el" class="footer" @click.stop.prevent>
<XReactionsViewer v-if="!conversation" ref="reactionsViewer" :note="appearNote"/>
<XReactionsViewer ref="reactionsViewer" :note="appearNote"/>
<button v-tooltip.noDelay.bottom="i18n.ts.reply" class="button _button" @click="reply()">
<template v-if="appearNote.reply"><i class="ph-arrow-u-up-left-bold ph-lg"></i></template>
<template v-else><i class="ph-arrow-bend-up-left-bold ph-lg"></i></template>
@ -18,7 +18,6 @@
<button ref="menuButton" v-tooltip.noDelay.bottom="i18n.ts.more" class="button _button" @click="menu()">
<i class="ph-dots-three-outline-bold ph-lg"></i>
</button>
<XReactionsViewer v-if="conversation" ref="reactionsViewer" :note="appearNote"/>
</footer>
</template>
@ -41,7 +40,6 @@ import { useNoteCapture } from '@/scripts/use-note-capture';
const props = defineProps<{
note: misskey.entities.Note;
conversation?: misskey.entities.Note[];
}>();
let note = $ref(deepClone(props.note));

View File

@ -17,7 +17,7 @@
<MkSubNoteContent class="text" :note="note" :detailed="true"/>
</div>
</div>
<MkNoteFooter :note="note" :conversation="conversation"></MkNoteFooter>
<MkNoteFooter :note="note"></MkNoteFooter>
</div>
</div>
<template v-if="conversation">
@ -65,7 +65,6 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
<style lang="scss" scoped>
.wrpstxzv {
padding: 16px 32px;
// --divider: rgba(255,255,255,0.5); // for now
&.children {
padding: 10px 0 0 var(--indent);

View File

@ -21,11 +21,10 @@ const isMe = computed(() => $i && $i.id === props.note.userId);
<style lang="scss" scoped>
.tdflqwzn {
margin: 0px -2px 0 -2px;
margin-inline: -2px;
margin-top: .2em;
width: 100%;
.reply & {
width: auto;
}
&:empty {
display: none;
}

View File

@ -5,13 +5,13 @@
<MkA v-if="note.replyId" class="reply" :to="`/notes/${note.replyId}`"><i class="ph-arrow-bend-up-left-bold ph-lg"></i></MkA>
<Mfm v-if="note.text" :text="note.text" :author="note.user" :i="$i" :custom-emojis="note.emojis"/>
<MkA v-if="note.renoteId" class="rp" :to="`/notes/${note.renoteId}`">{{ i18n.ts.quoteAttached }}: ...</MkA>
</div>
<template v-if="detailed">
<!-- <div v-if="note.renoteId" class="renote">
<XNoteSimple :note="note.renote"/>
</div> -->
<MkUrlPreview v-for="url in urls" :key="url" :url="url" :compact="true" :detail="false" class="url-preview"/>
</template>
</div>
<div v-if="note.files.length > 0">
<XMediaList :media-list="note.files"/>
</div>