egirlskey/packages/frontend/src/components/MkSubNoteContent.vue

123 lines
3.2 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-01-14 06:05:23 +00:00
<div :class="[$style.root, { [$style.collapsed]: collapsed }]">
<div @click="defaultStore.state.clickToOpen ? noteclick(note.id) : undefined">
2022-07-20 13:24:26 +00:00
<span v-if="note.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span>
<span v-if="note.deletedAt" style="opacity: 0.5">({{ i18n.ts.deleted }})</span>
2023-09-30 22:46:42 +00:00
<MkA v-if="note.replyId" :class="$style.reply" :to="`/notes/${note.replyId}`" v-on:click.stop><i class="ph-arrow-bend-left-up ph-bold pg-lg"></i></MkA>
2023-05-19 04:58:09 +00:00
<Mfm v-if="note.text" :text="note.text" :author="note.user" :i="$i" :emojiUrls="note.emojis"/>
2023-09-22 23:26:57 +00:00
<MkA v-if="note.renoteId" :class="$style.rp" :to="`/notes/${note.renoteId}`" v-on:click.stop>RN: ...</MkA>
</div>
2023-09-28 09:46:24 +00:00
<details v-if="note.files.length > 0" :open="!defaultStore.state.collapseFiles">
2023-04-01 05:01:57 +00:00
<summary>({{ i18n.t('withNFiles', { n: note.files.length }) }})</summary>
2023-05-19 04:58:09 +00:00
<MkMediaList :mediaList="note.files"/>
</details>
<details v-if="note.poll">
2022-07-20 13:24:26 +00:00
<summary>{{ i18n.ts.poll }}</summary>
2022-12-30 04:56:22 +00:00
<MkPoll :note="note"/>
</details>
<button v-if="isLong && collapsed" :class="$style.fade" class="_button" @click="collapsed = false">
2023-01-14 06:05:23 +00:00
<span :class="$style.fadeLabel">{{ i18n.ts.showMore }}</span>
</button>
<button v-else-if="isLong && !collapsed" :class="$style.showLess" class="_button" @click="collapsed = true">
<span :class="$style.showLessLabel">{{ i18n.ts.showLess }}</span>
</button>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
import * as Misskey from 'misskey-js';
2022-12-30 04:56:22 +00:00
import MkMediaList from '@/components/MkMediaList.vue';
import MkPoll from '@/components/MkPoll.vue';
2023-09-19 07:37:43 +00:00
import { i18n } from '@/i18n.js';
import { $i } from '@/account.js';
import { shouldCollapsed } from '@/scripts/collapsed.js';
2023-09-28 09:46:24 +00:00
import { defaultStore } from '@/store.js';
2023-09-22 23:26:57 +00:00
import { useRouter } from '@/router.js';
const props = defineProps<{
note: Misskey.entities.Note;
}>();
2023-09-22 23:26:57 +00:00
const router = useRouter();
function noteclick(id: string) {
router.push(`/notes/${id}`);
}
const isLong = shouldCollapsed(props.note);
const collapsed = $ref(isLong);
</script>
2023-01-14 06:05:23 +00:00
<style lang="scss" module>
.root {
overflow-wrap: break-word;
&.collapsed {
position: relative;
max-height: 9em;
overflow: clip;
> .fade {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 64px;
2023-10-15 23:39:02 +00:00
--mix: color-mix(in srgb, var(--panel) 10%, transparent);
background: linear-gradient(0deg, var(--mix), transparent);
backdrop-filter: blur(1px);
2023-01-14 06:05:23 +00:00
> .fadeLabel {
display: inline-block;
background: var(--panel);
padding: 6px 10px;
font-size: 0.8em;
2023-09-30 23:20:20 +00:00
border-radius: 4px;
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
}
&:hover {
2023-01-14 06:05:23 +00:00
> .fadeLabel {
background: var(--panelHighlight);
}
}
}
}
}
2023-01-14 06:05:23 +00:00
.reply {
margin-right: 6px;
color: var(--accent);
}
.rp {
margin-left: 4px;
font-style: oblique;
color: var(--renote);
}
.showLess {
width: 100%;
margin-top: 14px;
position: sticky;
bottom: calc(var(--stickyBottom, 0px) + 14px);
}
.showLessLabel {
display: inline-block;
background: var(--popup);
padding: 6px 10px;
font-size: 0.8em;
2023-09-30 23:20:20 +00:00
border-radius: 4px;
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
}
</style>