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

379 lines
12 KiB
Vue
Raw Normal View History

2018-04-09 16:43:31 +00:00
<template>
2019-07-06 21:54:17 +00:00
<!-- eslint-disable vue/no-v-html -->
2019-07-05 07:17:44 +00:00
<div
v-if="!hideStatus"
class="status-el"
:class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]"
>
<div
v-if="error"
class="alert error"
>
{{ error }}
<i
class="button-icon icon-cancel"
@click="clearError"
/>
2019-04-27 13:36:10 +00:00
</div>
<template v-if="muted && !isPreview">
2018-04-09 16:43:31 +00:00
<div class="media status container muted">
2020-06-06 20:08:52 +00:00
<small class="username">
<i
v-if="muted && retweet"
class="button-icon icon-retweet"
/>
<router-link :to="userProfileLink">
2019-07-05 07:17:44 +00:00
{{ status.user.screen_name }}
</router-link>
</small>
<small
2020-06-06 20:08:52 +00:00
v-if="showReasonMutedThread"
class="mute-thread"
>
{{ $t('status.thread_muted') }}
</small>
<small
v-if="showReasonMutedThread && muteWordHits.length > 0"
2020-06-06 20:08:52 +00:00
class="mute-thread"
>
{{ $t('status.thread_muted_and_words') }}
</small>
2020-06-06 20:08:52 +00:00
<small
class="mute-words"
:title="muteWordHits.join(', ')"
>
{{ muteWordHits.join(', ') }}
</small>
2019-07-05 07:17:44 +00:00
<a
href="#"
class="unmute"
@click.prevent="toggleMute"
><i class="button-icon icon-eye-off" /></a>
2018-04-09 16:43:31 +00:00
</div>
</template>
<template v-else>
2019-07-05 07:17:44 +00:00
<div
2019-08-15 17:07:07 +00:00
v-if="showPinned"
2019-07-05 07:17:44 +00:00
class="status-pin"
>
<i class="fa icon-pin faint" />
<span class="faint">{{ $t('status.pinned') }}</span>
</div>
2019-07-05 07:17:44 +00:00
<div
v-if="retweet && !noHeading && !inConversation"
:class="[repeaterClass, { highlighted: repeaterStyle }]"
:style="[repeaterStyle]"
class="media container retweet-info"
>
<UserAvatar
v-if="retweet"
class="media-left"
:better-shadow="betterShadow"
:user="statusoid.user"
/>
<div class="media-body faint">
<span
class="user-name"
:title="retweeter"
>
2019-07-05 07:17:44 +00:00
<router-link
v-if="retweeterHtml"
:to="retweeterProfileLink"
v-html="retweeterHtml"
/>
<router-link
v-else
:to="retweeterProfileLink"
>{{ retweeter }}</router-link>
</span>
2019-07-05 07:17:44 +00:00
<i
class="fa icon-retweet retweeted"
:title="$t('tool_tip.repeat')"
/>
{{ $t('timeline.repeated') }}
2018-04-09 16:43:31 +00:00
</div>
</div>
2019-07-05 07:17:44 +00:00
<div
:class="[userClass, { highlighted: userStyle, 'is-retweet': retweet && !inConversation }]"
:style="[ userStyle ]"
class="media status"
:data-tags="tags"
>
<div
v-if="!noHeading"
class="media-left"
>
<router-link
:to="userProfileLink"
@click.stop.prevent.capture.native="toggleUserExpanded"
>
<UserAvatar
:compact="compact"
:better-shadow="betterShadow"
:user="status.user"
/>
</router-link>
2018-04-09 16:43:31 +00:00
</div>
<div class="status-body">
2019-07-05 07:17:44 +00:00
<UserCard
v-if="userExpanded"
2020-04-23 11:27:27 +00:00
:user-id="status.user.id"
2019-07-05 07:17:44 +00:00
:rounded="true"
:bordered="true"
class="status-usercard"
/>
<div
v-if="!noHeading"
class="media-heading"
>
<div class="heading-name-row">
<div class="name-and-account-name">
2019-07-05 07:17:44 +00:00
<h4
v-if="status.user.name_html"
class="user-name"
:title="status.user.name"
2019-07-05 07:17:44 +00:00
v-html="status.user.name_html"
/>
<h4
v-else
class="user-name"
:title="status.user.name"
2019-07-05 07:17:44 +00:00
>
{{ status.user.name }}
</h4>
<router-link
class="account-name"
:title="status.user.screen_name"
2019-07-05 07:17:44 +00:00
:to="userProfileLink"
>
{{ status.user.screen_name }}
</router-link>
2020-06-18 14:09:30 +00:00
<img
class="status-favicon"
v-if="!!(status.user && status.user.favicon)"
:src="status.user.favicon"
>
</div>
<span class="heading-right">
2019-07-05 07:17:44 +00:00
<router-link
class="timeago faint-link"
:to="{ name: 'conversation', params: { id: status.id } }"
>
<Timeago
:time="status.created_at"
:auto-update="60"
/>
</router-link>
2019-07-05 07:17:44 +00:00
<div
v-if="status.visibility"
class="button-icon visibility-icon"
>
<i
:class="visibilityIcon(status.visibility)"
:title="status.visibility | capitalize"
/>
</div>
2019-07-05 07:17:44 +00:00
<a
v-if="!status.is_local && !isPreview"
:href="status.external_url"
target="_blank"
class="source_url"
title="Source"
>
<i class="button-icon icon-link-ext-alt" />
</a>
2019-04-26 20:22:03 +00:00
<template v-if="expandable && !isPreview">
2019-07-05 07:17:44 +00:00
<a
href="#"
title="Expand"
@click.prevent="toggleExpanded"
>
<i class="button-icon icon-plus-squared" />
2019-04-26 20:22:03 +00:00
</a>
</template>
2019-07-05 07:17:44 +00:00
<a
v-if="unmuted"
href="#"
@click.prevent="toggleMute"
><i class="button-icon icon-eye-off" /></a>
</span>
</div>
<div class="heading-reply-row">
2019-07-08 02:42:08 +00:00
<div
v-if="isReply"
class="reply-to-and-accountname"
>
<StatusPopover
2019-07-17 16:50:49 +00:00
v-if="!isPreview"
:status-id="status.parent_visible && status.in_reply_to_status_id"
2020-02-28 16:39:47 +00:00
class="reply-to-popover"
style="min-width: 0"
2019-07-08 02:42:08 +00:00
>
2019-07-01 17:46:09 +00:00
<a
class="reply-to"
2019-07-08 02:42:08 +00:00
href="#"
2019-07-01 17:46:09 +00:00
:aria-label="$t('tool_tip.reply')"
2019-07-08 02:42:08 +00:00
@click.prevent="gotoOriginal(status.in_reply_to_status_id)"
2019-07-01 17:46:09 +00:00
>
2019-07-17 16:50:49 +00:00
<i class="button-icon icon-reply" />
<span
class="faint-link reply-to-text"
:class="{ 'strikethrough': !status.parent_visible }"
>
{{ $t('status.reply_to') }}
</span>
2019-07-01 17:46:09 +00:00
</a>
</StatusPopover>
2019-07-17 16:50:49 +00:00
<span
v-else
class="reply-to"
>
<span class="reply-to-text">{{ $t('status.reply_to') }}</span>
</span>
<router-link
:title="replyToName"
:to="replyProfileLink"
>
2019-07-05 07:17:44 +00:00
{{ replyToName }}
</router-link>
2019-07-05 07:17:44 +00:00
<span
v-if="replies && replies.length"
class="faint replies-separator"
>
-
2018-04-09 16:43:31 +00:00
</span>
</div>
2019-07-05 07:17:44 +00:00
<div
2019-10-25 02:41:15 +00:00
v-if="inConversation && !isPreview && replies && replies.length"
2019-07-05 07:17:44 +00:00
class="replies"
>
2019-10-25 02:41:15 +00:00
<span class="faint">{{ $t('status.replies_list') }}</span>
<StatusPopover
2019-10-25 02:41:15 +00:00
v-for="reply in replies"
:key="reply.id"
:status-id="reply.id"
2019-10-25 02:41:15 +00:00
>
<a
href="#"
class="reply-link"
2019-10-25 02:41:15 +00:00
@click.prevent="gotoOriginal(reply.id)"
>{{ reply.name }}</a>
</StatusPopover>
</div>
2018-04-09 16:43:31 +00:00
</div>
</div>
<StatusContent
:status="status"
:no-heading="noHeading"
:highlight="highlight"
:focused="isFocused"
/>
2019-01-27 13:47:30 +00:00
2019-04-06 18:54:23 +00:00
<transition name="fade">
2019-07-05 07:17:44 +00:00
<div
v-if="!hidePostStats && isFocused && combinedFavsAndRepeatsUsers.length > 0"
2019-07-05 07:17:44 +00:00
class="favs-repeated-users"
>
<div class="stats">
<UserListPopover
2019-07-05 07:17:44 +00:00
v-if="statusFromGlobalRepository.rebloggedBy && statusFromGlobalRepository.rebloggedBy.length > 0"
:users="statusFromGlobalRepository.rebloggedBy"
2019-07-05 07:17:44 +00:00
>
<div class="stat-count">
<a class="stat-title">{{ $t('status.repeats') }}</a>
<div class="stat-number">
{{ statusFromGlobalRepository.rebloggedBy.length }}
</div>
2019-07-05 07:17:44 +00:00
</div>
</UserListPopover>
<UserListPopover
2019-07-05 07:17:44 +00:00
v-if="statusFromGlobalRepository.favoritedBy && statusFromGlobalRepository.favoritedBy.length > 0"
:users="statusFromGlobalRepository.favoritedBy"
2019-07-05 07:17:44 +00:00
>
<div
class="stat-count"
>
<a class="stat-title">{{ $t('status.favorites') }}</a>
<div class="stat-number">
{{ statusFromGlobalRepository.favoritedBy.length }}
</div>
2019-07-05 07:17:44 +00:00
</div>
</UserListPopover>
<div class="avatar-row">
2019-07-05 07:17:44 +00:00
<AvatarList :users="combinedFavsAndRepeatsUsers" />
</div>
</div>
2019-04-06 18:54:23 +00:00
</div>
</transition>
2020-01-14 08:06:14 +00:00
<EmojiReactions
v-if="(mergedConfig.emojiReactionsOnTimeline || isFocused) && (!noHeading && !isPreview)"
2020-01-14 08:06:14 +00:00
:status="status"
/>
2019-07-05 07:17:44 +00:00
<div
v-if="!noHeading && !isPreview"
class="status-actions media-body"
>
<div>
2019-07-05 07:17:44 +00:00
<i
v-if="loggedIn"
class="button-icon icon-reply"
:title="$t('tool_tip.reply')"
:class="{'button-icon-active': replying}"
@click.prevent="toggleReplying"
/>
<i
v-else
class="button-icon button-icon-disabled icon-reply"
:title="$t('tool_tip.reply')"
/>
<span v-if="status.replies_count > 0">{{ status.replies_count }}</span>
2018-04-09 16:43:31 +00:00
</div>
2019-07-05 07:17:44 +00:00
<retweet-button
:visibility="status.visibility"
:logged-in="loggedIn"
:status="status"
/>
<favorite-button
:logged-in="loggedIn"
:status="status"
/>
<ReactButton
2020-05-07 21:10:49 +00:00
v-if="loggedIn"
:status="status"
/>
2019-07-05 07:17:44 +00:00
<extra-buttons
:status="status"
@onError="showError"
@onSuccess="clearError"
/>
2018-04-09 16:43:31 +00:00
</div>
</div>
</div>
2019-07-05 07:17:44 +00:00
<div
v-if="replying"
class="container"
>
<PostStatusForm
2019-07-05 07:17:44 +00:00
class="reply-body"
:reply-to="status.id"
:attentions="status.attentions"
:replied-user="status.user"
:copy-message-scope="status.visibility"
:subject="replySubject"
@posted="toggleReplying"
/>
2018-04-09 16:43:31 +00:00
</div>
</template>
</div>
2019-07-06 21:54:17 +00:00
<!-- eslint-enable vue/no-v-html -->
2018-04-09 16:43:31 +00:00
</template>
2016-10-28 13:19:42 +00:00
<script src="./status.js" ></script>
2020-07-27 19:49:57 +00:00
<style src="./status.css" lang="scss"></style>