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>
|
2023-01-14 06:05:23 +00:00
|
|
|
<div :class="[$style.root, { [$style.collapsed]: collapsed }]">
|
2023-06-01 08:19:46 +00:00
|
|
|
<div>
|
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-01-14 06:05:23 +00:00
|
|
|
<MkA v-if="note.replyId" :class="$style.reply" :to="`/notes/${note.replyId}`"><i class="ti ti-arrow-back-up"></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-01-14 06:05:23 +00:00
|
|
|
<MkA v-if="note.renoteId" :class="$style.rp" :to="`/notes/${note.renoteId}`">RN: ...</MkA>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
<details v-if="note.files.length > 0">
|
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"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</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"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</details>
|
2023-07-08 10:01:47 +00:00
|
|
|
<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>
|
2021-11-19 09:56:30 +00:00
|
|
|
</button>
|
2023-07-08 10:01:47 +00:00
|
|
|
<button v-else-if="isLong && !collapsed" :class="$style.showLess" class="_button" @click="collapsed = true">
|
|
|
|
<span :class="$style.showLessLabel">{{ i18n.ts.showLess }}</span>
|
|
|
|
</button>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 03:02:10 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
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';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-14 03:02:10 +00:00
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
note: Misskey.entities.Note;
|
2022-01-14 03:02:10 +00:00
|
|
|
}>();
|
|
|
|
|
2023-07-21 09:58:57 +00:00
|
|
|
const isLong = shouldCollapsed(props.note);
|
2023-07-08 10:01:47 +00:00
|
|
|
|
|
|
|
const collapsed = $ref(isLong);
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 06:05:23 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
2021-11-19 09:56:30 +00:00
|
|
|
&.collapsed {
|
|
|
|
position: relative;
|
|
|
|
max-height: 9em;
|
2023-01-02 03:15:26 +00:00
|
|
|
overflow: clip;
|
2021-11-19 09:56:30 +00:00
|
|
|
|
|
|
|
> .fade {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
|
2023-01-14 06:05:23 +00:00
|
|
|
> .fadeLabel {
|
2021-11-19 09:56:30 +00:00
|
|
|
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%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2023-01-14 06:05:23 +00:00
|
|
|
> .fadeLabel {
|
2021-11-19 09:56:30 +00:00
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
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);
|
|
|
|
}
|
2023-07-08 10:01:47 +00:00
|
|
|
|
|
|
|
.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;
|
|
|
|
border-radius: 999px;
|
|
|
|
box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|