109 lines
3.3 KiB
Vue
109 lines
3.3 KiB
Vue
<template>
|
|
<div class="StatusBody">
|
|
<div class="body">
|
|
<div
|
|
v-if="status.summary_html"
|
|
class="summary-wrapper"
|
|
:class="{ '-tall': (longSubject && !showingLongSubject) }"
|
|
>
|
|
<RichContent
|
|
class="media-body summary"
|
|
:html="status.summary_raw_html"
|
|
:emoji="status.emojis"
|
|
/>
|
|
<button
|
|
v-if="longSubject && showingLongSubject"
|
|
class="button-unstyled -link tall-subject-hider"
|
|
@click.prevent="showingLongSubject=false"
|
|
>
|
|
{{ $t("status.hide_full_subject") }}
|
|
</button>
|
|
<button
|
|
v-else-if="longSubject"
|
|
class="button-unstyled -link tall-subject-hider"
|
|
@click.prevent="showingLongSubject=true"
|
|
>
|
|
{{ $t("status.show_full_subject") }}
|
|
</button>
|
|
</div>
|
|
<div
|
|
:class="{'-tall-status': hideTallStatus}"
|
|
class="text-wrapper"
|
|
>
|
|
<button
|
|
v-if="hideTallStatus"
|
|
class="button-unstyled -link tall-status-hider"
|
|
:class="{ '-focused': focused }"
|
|
@click.prevent="toggleShowMore"
|
|
>
|
|
{{ $t("general.show_more") }}
|
|
</button>
|
|
<span
|
|
v-if="!hideSubjectStatus && !(singleLine && status.summary_html)"
|
|
class="rich-content-wrapper"
|
|
>
|
|
<MentionsLine
|
|
v-if="!hideMentions && firstMentions && firstMentions.length > 0"
|
|
:mentions="firstMentions"
|
|
/>
|
|
<RichContent
|
|
:class="{ '-single-line': singleLine }"
|
|
class="text media-body"
|
|
:html="status.raw_html"
|
|
:emoji="status.emojis"
|
|
:handle-links="true"
|
|
:hide-mentions="hideMentions"
|
|
:greentext="mergedConfig.greentext"
|
|
@parseReady="setHeadTailLinks"
|
|
/>
|
|
<MentionsLine
|
|
v-if="!hideMentions && lastMentions.length > 0 && firstMentions.length <= 1"
|
|
:mentions="lastMentions"
|
|
/>
|
|
</span>
|
|
|
|
<button
|
|
v-if="hideSubjectStatus"
|
|
class="button-unstyled -link cw-status-hider"
|
|
@click.prevent="toggleShowMore"
|
|
>
|
|
{{ $t("status.show_content") }}
|
|
<FAIcon
|
|
v-if="attachmentTypes.includes('image')"
|
|
icon="image"
|
|
/>
|
|
<FAIcon
|
|
v-if="attachmentTypes.includes('video')"
|
|
icon="video"
|
|
/>
|
|
<FAIcon
|
|
v-if="attachmentTypes.includes('audio')"
|
|
icon="music"
|
|
/>
|
|
<FAIcon
|
|
v-if="attachmentTypes.includes('unknown')"
|
|
icon="file"
|
|
/>
|
|
<FAIcon
|
|
v-if="status.poll && status.poll.options"
|
|
icon="poll-h"
|
|
/>
|
|
<FAIcon
|
|
v-if="status.card"
|
|
icon="link"
|
|
/>
|
|
</button>
|
|
<button
|
|
v-if="showingMore && !fullContent"
|
|
class="button-unstyled -link status-unhider"
|
|
@click.prevent="toggleShowMore"
|
|
>
|
|
{{ tallStatus ? $t("general.show_less") : $t("status.hide_content") }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<slot v-if="!hideSubjectStatus" />
|
|
</div>
|
|
</template>
|
|
<script src="./status_body.js" ></script>
|
|
<style lang="scss" src="./status_body.scss" />
|