2020-04-27 02:53:04 -07:00
|
|
|
<template>
|
2021-06-22 10:47:35 -07:00
|
|
|
<div
|
|
|
|
class="StatusContent"
|
|
|
|
:class="{ '-compact': compact }"
|
|
|
|
>
|
2020-04-27 02:53:04 -07:00
|
|
|
<slot name="header" />
|
2021-06-07 09:51:04 -07:00
|
|
|
<StatusBody
|
|
|
|
:status="status"
|
2021-06-13 16:52:41 -07:00
|
|
|
:compact="compact"
|
2021-06-07 09:51:04 -07:00
|
|
|
:single-line="singleLine"
|
2021-09-08 21:03:10 -07: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 00:30:08 -07:00
|
|
|
@parseReady="$emit('parseReady', $event)"
|
2021-06-07 09:51:04 -07:00
|
|
|
>
|
2021-08-15 08:26:37 -07:00
|
|
|
<div v-if="status.poll && status.poll.options && !compact">
|
2021-08-13 03:06:42 -07:00
|
|
|
<Poll
|
|
|
|
:base-poll="status.poll"
|
|
|
|
:emoji="status.emojis"
|
|
|
|
/>
|
2021-06-07 08:41:55 -07:00
|
|
|
</div>
|
|
|
|
|
2021-08-15 08:26:37 -07:00
|
|
|
<div v-else-if="status.poll && status.poll.options && compact">
|
|
|
|
<FAIcon
|
|
|
|
icon="poll-h"
|
|
|
|
size="2x"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2021-06-17 06:29:46 -07:00
|
|
|
<gallery
|
|
|
|
v-if="status.attachments.length !== 0"
|
2021-06-22 10:47:35 -07:00
|
|
|
class="attachments media-body"
|
2021-06-17 06:29:46 -07:00
|
|
|
:nsfw="nsfwClickthrough"
|
|
|
|
:attachments="status.attachments"
|
2021-06-22 10:47:35 -07:00
|
|
|
:limit="compact ? 1 : 0"
|
2021-06-17 06:29:46 -07:00
|
|
|
:size="attachmentSize"
|
|
|
|
@play="$emit('mediaplay', attachment.id)"
|
|
|
|
@pause="$emit('mediapause', attachment.id)"
|
|
|
|
/>
|
2020-04-27 02:53:04 -07:00
|
|
|
|
2021-06-07 08:41:55 -07:00
|
|
|
<div
|
2021-06-13 16:52:41 -07:00
|
|
|
v-if="status.card && !noHeading && !compact"
|
2021-06-07 08:41:55 -07:00
|
|
|
class="link-preview media-body"
|
|
|
|
>
|
|
|
|
<link-preview
|
|
|
|
:card="status.card"
|
|
|
|
:size="attachmentSize"
|
|
|
|
:nsfw="nsfwClickthrough"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-06-07 09:50:26 -07:00
|
|
|
</StatusBody>
|
2020-04-27 02:53:04 -07:00
|
|
|
<slot name="footer" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./status_content.js" ></script>
|
|
|
|
<style lang="scss">
|
2020-07-27 15:27:11 -07:00
|
|
|
.StatusContent {
|
2020-04-27 02:53:04 -07:00
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
</style>
|