pleroma-fe/src/components/status_content/status_content.vue

66 lines
1.6 KiB
Vue
Raw Normal View History

<template>
2021-06-22 19:47:35 +02:00
<div
class="StatusContent"
:class="{ '-compact': compact }"
>
<slot name="header" />
2021-06-07 18:51:04 +02:00
<StatusBody
:status="status"
2021-06-14 01:52:41 +02:00
:compact="compact"
2021-06-07 18:51:04 +02:00
:single-line="singleLine"
2021-09-09 06:03:10 +02:00
:showing-tall="showingTall"
:expanding-subject="expandingSubject"
:showing-long-subject="showingLongSubject"
:toggle-showing-tall="toggleShowingTall"
:toggle-expanding-subject="toggleExpandingSubject"
:toggle-showing-long-subject="toggleShowingLongSubject"
2021-06-14 09:30:08 +02:00
@parseReady="$emit('parseReady', $event)"
2021-06-07 18:51:04 +02:00
>
<div v-if="status.poll && status.poll.options && !compact">
<Poll
:base-poll="status.poll"
:emoji="status.emojis"
/>
</div>
<div v-else-if="status.poll && status.poll.options && compact">
<FAIcon
icon="poll-h"
size="2x"
/>
</div>
<gallery
v-if="status.attachments.length !== 0"
2021-06-22 19:47:35 +02:00
class="attachments media-body"
:nsfw="nsfwClickthrough"
:attachments="status.attachments"
2021-06-22 19:47:35 +02:00
:limit="compact ? 1 : 0"
:size="attachmentSize"
@play="$emit('mediaplay', attachment.id)"
@pause="$emit('mediapause', attachment.id)"
/>
<div
2021-06-14 01:52:41 +02:00
v-if="status.card && !noHeading && !compact"
class="link-preview media-body"
>
<link-preview
:card="status.card"
:size="attachmentSize"
:nsfw="nsfwClickthrough"
/>
</div>
</StatusBody>
<slot name="footer" />
</div>
</template>
2022-07-31 11:35:48 +02:00
<script src="./status_content.js"></script>
<style lang="scss">
2020-07-28 00:27:11 +02:00
.StatusContent {
flex: 1;
min-width: 0;
}
</style>