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

57 lines
1.2 KiB
Vue
Raw Normal View History

<template>
2021-06-22 17:47:35 +00:00
<div
class="StatusContent"
:class="{ '-compact': compact }"
>
<slot name="header" />
2021-06-07 16:51:04 +00:00
<StatusBody
:status="status"
2021-06-13 23:52:41 +00:00
:compact="compact"
2021-06-07 16:51:04 +00:00
:single-line="singleLine"
2021-06-14 07:30:08 +00:00
@parseReady="$emit('parseReady', $event)"
2021-06-07 16:51:04 +00:00
>
<div v-if="status.poll && status.poll.options">
<Poll
:base-poll="status.poll"
:emoji="status.emojis"
/>
</div>
<gallery
v-if="status.attachments.length !== 0"
2021-06-22 17:47:35 +00:00
class="attachments media-body"
:nsfw="nsfwClickthrough"
:attachments="status.attachments"
2021-06-22 17:47:35 +00:00
:limit="compact ? 1 : 0"
:size="attachmentSize"
@play="$emit('mediaplay', attachment.id)"
@pause="$emit('mediapause', attachment.id)"
/>
<div
2021-06-13 23:52:41 +00: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>
<script src="./status_content.js" ></script>
<style lang="scss">
@import '../../_variables.scss';
$status-margin: 0.75em;
2020-07-27 22:27:11 +00:00
.StatusContent {
flex: 1;
min-width: 0;
}
</style>