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

540 lines
17 KiB
Vue
Raw Normal View History

2018-04-09 16:43:31 +00:00
<template>
2019-07-05 07:17:44 +00:00
<div
v-if="!hideStatus"
2021-04-25 10:33:02 +00:00
ref="root"
2020-07-27 22:27:11 +00:00
class="Status"
:class="[{ '-focused': isFocused }, { '-conversation': inlineExpanded }]"
2019-07-05 07:17:44 +00:00
>
<div
v-if="error"
class="alert error"
>
{{ error }}
<span
class="fa-scale-110 fa-old-padding"
2019-07-05 07:17:44 +00:00
@click="clearError"
2020-10-20 21:31:16 +00:00
>
<FAIcon icon="times" />
</span>
2019-04-27 13:36:10 +00:00
</div>
<template v-if="muted && !isPreview">
2020-09-29 10:18:37 +00:00
<div class="status-container muted">
2020-08-04 16:08:49 +00:00
<small class="status-username">
<FAIcon
v-if="muted && retweet"
class="fa-scale-110 fa-old-padding repeat-icon"
icon="retweet"
/>
<router-link :to="userProfileLink">
{{ status.user.screen_name_ui }}
</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>
<button
class="unmute button-unstyled"
2019-07-05 07:17:44 +00:00
@click.prevent="toggleMute"
2020-10-20 21:31:16 +00:00
>
<FAIcon
icon="eye-slash"
class="fa-scale-110 fa-old-padding"
2020-10-20 21:31:16 +00:00
/>
</button>
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"
2020-07-27 22:27:11 +00:00
class="pin"
2019-07-05 07:17:44 +00:00
>
2020-10-20 21:31:16 +00:00
<FAIcon
icon="thumbtack"
class="faint"
/>
2019-07-05 07:17:44 +00:00
<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]"
2020-07-27 22:27:11 +00:00
class="status-container repeat-info"
2019-07-05 07:17:44 +00:00
>
<UserAvatar
v-if="retweet"
2020-07-27 22:27:11 +00:00
class="left-side repeater-avatar"
:bot="rtBotIndicator"
2019-07-05 07:17:44 +00:00
:better-shadow="betterShadow"
:user="statusoid.user"
/>
2020-07-27 22:27:11 +00:00
<div class="right-side faint">
<span
2020-08-04 16:08:49 +00:00
class="status-username repeater-name"
:title="retweeter"
>
2019-07-05 07:17:44 +00:00
<router-link
v-if="retweeterHtml"
:to="retweeterProfileLink"
>
<RichContent
:html="retweeterHtml"
:emoji="retweeterUser.emoji"
/>
</router-link>
2019-07-05 07:17:44 +00:00
<router-link
v-else
:to="retweeterProfileLink"
>{{ retweeter }}</router-link>
</span>
2022-03-27 09:03:31 +00:00
{{ ' ' }}
<FAIcon
icon="retweet"
class="repeat-icon"
2019-07-05 07:17:44 +00:00
: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
v-if="!deleted"
2020-07-27 22:27:11 +00:00
:class="[userClass, { highlighted: userStyle, '-repeat': retweet && !inConversation }]"
2019-07-05 07:17:44 +00:00
:style="[ userStyle ]"
2020-07-27 22:27:11 +00:00
class="status-container"
2019-07-05 07:17:44 +00:00
:data-tags="tags"
>
<div
v-if="!noHeading"
2020-07-27 22:27:11 +00:00
class="left-side"
2019-07-05 07:17:44 +00:00
>
2022-03-22 17:43:11 +00:00
<a
:href="$router.resolve(userProfileLink).href"
2022-03-17 06:35:19 +00:00
@click.stop.prevent.capture="toggleUserExpanded"
2019-07-05 07:17:44 +00:00
>
<UserAvatar
2022-03-22 09:43:51 +00:00
class="post-avatar"
:bot="botIndicator"
2019-07-05 07:17:44 +00:00
:compact="compact"
:better-shadow="betterShadow"
:user="status.user"
/>
2022-03-22 17:43:11 +00:00
</a>
2018-04-09 16:43:31 +00:00
</div>
2020-07-27 22:27:11 +00:00
<div class="right-side">
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"
2020-07-27 22:27:11 +00:00
class="usercard"
2019-07-05 07:17:44 +00:00
/>
<div
v-if="!noHeading"
2020-07-27 22:27:11 +00:00
class="status-heading"
2019-07-05 07:17:44 +00:00
>
<div class="heading-name-row">
2020-07-27 22:27:11 +00:00
<div class="heading-left">
2019-07-05 07:17:44 +00:00
<h4
v-if="status.user.name_html"
2020-08-04 16:08:49 +00:00
class="status-username"
:title="status.user.name"
>
<RichContent
:html="status.user.name"
:emoji="status.user.emoji"
/>
</h4>
2019-07-05 07:17:44 +00:00
<h4
v-else
2020-08-04 16:08:49 +00:00
class="status-username"
:title="status.user.name"
2019-07-05 07:17:44 +00:00
>
{{ status.user.name }}
</h4>
<span class="nowrap">
<router-link
class="account-name"
:title="status.user.screen_name_ui"
:to="userProfileLink"
>
@{{ status.user.screen_name_ui }}
</router-link>
<img
v-if="!!(status.user && status.user.favicon)"
class="status-favicon"
:src="status.user.favicon"
:title="faviconAlt(status)"
>
</span>
</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"
:with-direction="true"
2019-07-05 07:17:44 +00:00
:auto-update="60"
/>
</router-link>
<span
2019-07-05 07:17:44 +00:00
v-if="status.visibility"
class="visibility-icon"
:title="visibilityLocalized"
2020-10-20 21:31:16 +00:00
>
<FAIcon
fixed-width
class="fa-scale-110"
2020-10-20 21:31:16 +00:00
:icon="visibilityIcon(status.visibility)"
/>
</span>
<button
v-if="expandable && !isPreview"
class="button-unstyled"
:title="$t('status.expand')"
@click.prevent="toggleExpanded"
>
2020-10-20 21:31:16 +00:00
<FAIcon
fixed-width
class="fa-scale-110"
2020-10-20 21:31:16 +00:00
icon="plus-square"
/>
</button>
<button
2019-07-05 07:17:44 +00:00
v-if="unmuted"
class="button-unstyled"
2019-07-05 07:17:44 +00:00
@click.prevent="toggleMute"
>
2020-10-20 21:31:16 +00:00
<FAIcon
fixed-width
2020-10-20 21:31:16 +00:00
icon="eye-slash"
class="fa-scale-110"
2020-10-20 21:31:16 +00:00
/>
</button>
2021-08-07 04:33:06 +00:00
<button
2021-08-07 22:53:23 +00:00
v-if="inThreadForest && replies && replies.length && !simpleTree"
2021-08-07 04:33:06 +00:00
class="button-unstyled"
:title="threadShowing ? $t('status.thread_hide') : $t('status.thread_show')"
:aria-expanded="threadShowing ? 'true' : 'false'"
@click.prevent="toggleThreadDisplay"
>
<FAIcon
fixed-width
class="fa-scale-110"
:icon="threadShowing ? 'chevron-up' : 'chevron-down'"
/>
</button>
<button
2021-08-07 22:53:23 +00:00
v-if="dive && !simpleTree"
class="button-unstyled"
:title="$t('status.show_only_conversation_under_this')"
@click.prevent="dive"
>
<FAIcon
fixed-width
class="fa-scale-110"
:icon="'angle-double-right'"
2021-08-07 04:33:06 +00:00
/>
</button>
</span>
</div>
<div
v-if="isReply || hasMentionsLine"
2021-06-11 08:52:50 +00:00
class="heading-reply-row"
>
2021-06-10 11:01:26 +00:00
<span
2019-07-08 02:42:08 +00:00
v-if="isReply"
2022-02-03 20:10:45 +00:00
class="glued-label reply-glued-label"
2019-07-08 02:42:08 +00:00
>
<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"
2020-08-04 16:41:03 +00:00
:class="{ '-strikethrough': !status.parent_visible }"
2019-07-08 02:42:08 +00:00
>
<button
class="button-unstyled reply-to"
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
>
<FAIcon
class="fa-scale-110 fa-old-padding"
icon="reply"
flip="horizontal"
2020-10-20 21:31:16 +00:00
/>
2022-03-23 14:15:05 +00:00
{{ ' ' }}
<span
class="reply-to-text"
>
{{ $t('status.reply_to') }}
</span>
</button>
</StatusPopover>
2020-09-29 10:18:37 +00:00
2019-07-17 16:50:49 +00:00
<span
v-else
2020-08-04 16:08:49 +00:00
class="reply-to-no-popover"
2019-07-17 16:50:49 +00:00
>
<span class="reply-to-text">{{ $t('status.reply_to') }}</span>
</span>
2021-06-10 11:01:26 +00:00
<MentionLink
:content="replyToName"
:url="replyProfileLink"
:user-id="status.in_reply_to_user_id"
:user-screen-name="status.in_reply_to_screen_name"
/>
</span>
2021-06-08 08:38:44 +00:00
2021-06-10 11:01:26 +00:00
<!-- This little wrapper is made for sole purpose of "gluing" -->
<!-- "Mentions" label to the first mention -->
<span
v-if="hasMentionsLine"
2021-06-10 11:01:26 +00:00
class="glued-label"
2019-07-05 07:17:44 +00:00
>
<span
2021-06-10 11:01:26 +00:00
class="mentions"
:aria-label="$t('tool_tip.mentions')"
@click.prevent="gotoOriginal(status.in_reply_to_status_id)"
2019-10-25 02:41:15 +00:00
>
2021-06-10 11:01:26 +00:00
<span
class="mentions-text"
>
2021-06-10 11:01:26 +00:00
{{ $t('status.mentions') }}
</span>
2018-04-09 16:43:31 +00:00
</span>
2021-06-10 11:01:26 +00:00
<MentionsLine
v-if="hasMentionsLine"
:mentions="mentionsLine.slice(0, 1)"
class="mentions-line-first"
/>
</span>
<MentionsLine
v-if="hasMentionsLine"
2021-06-10 11:01:26 +00:00
:mentions="mentionsLine.slice(1)"
class="mentions-line"
/>
2018-04-09 16:43:31 +00:00
</div>
<div
v-if="isEdited && editingAvailable && !isPreview"
class="heading-edited-row"
>
<i18n-t
keypath="status.edited_at"
tag="span"
>
<template #time>
<Timeago
:time="status.edited_at"
:auto-update="60"
:long-format="true"
:with-direction="true"
/>
</template>
</i18n-t>
</div>
2018-04-09 16:43:31 +00:00
</div>
<StatusContent
2021-06-11 08:52:50 +00:00
ref="content"
:status="status"
:no-heading="noHeading"
:highlight="highlight"
:focused="isFocused"
2021-08-07 14:28:45 +00:00
:controlled-showing-tall="controlledShowingTall"
:controlled-expanding-subject="controlledExpandingSubject"
:controlled-showing-long-subject="controlledShowingLongSubject"
:controlled-toggle-showing-tall="controlledToggleShowingTall"
:controlled-toggle-expanding-subject="controlledToggleExpandingSubject"
:controlled-toggle-showing-long-subject="controlledToggleShowingLongSubject"
2020-09-29 10:18:37 +00:00
@mediaplay="addMediaPlaying($event)"
@mediapause="removeMediaPlaying($event)"
@parseReady="setHeadTailLinks"
/>
2019-01-27 13:47:30 +00:00
<div
v-if="inConversation && !isPreview && replies && replies.length"
class="replies"
2021-06-11 08:52:50 +00:00
>
<button
v-if="showOtherRepliesAsButton && replies.length > 1"
class="button-unstyled -link faint"
:title="$tc('status.ancestor_follow', replies.length - 1, { numReplies: replies.length - 1 })"
@click.prevent="dive"
>
{{ $tc('status.replies_list_with_others', replies.length - 1, { numReplies: replies.length - 1 }) }}
</button>
<span
v-else
class="faint"
>
{{ $t('status.replies_list') }}
</span>
<StatusPopover
v-for="reply in replies"
:key="reply.id"
:status-id="reply.id"
2021-06-11 08:52:50 +00:00
>
<button
class="button-unstyled -link reply-link"
@click.prevent="gotoOriginal(reply.id)"
2021-06-11 08:52:50 +00:00
>
{{ reply.name }}
</button>
</StatusPopover>
</div>
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"
2020-07-27 22:27:11 +00:00
class="status-actions"
2019-07-05 07:17:44 +00:00
>
<reply-button
:replying="replying"
:status="status"
@toggle="toggleReplying"
/>
<quote-button
:visibility="status.visibility"
:quoting="quoting"
:status="status"
@toggle="toggleQuoting"
/>
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>
<div
v-else
2020-09-08 06:32:43 +00:00
class="gravestone"
>
<div class="left-side">
<UserAvatar
2022-03-22 09:43:51 +00:00
class="post-avatar"
:compact="compact"
:bot="botIndicator"
/>
</div>
<div class="right-side">
<div class="deleted-text">
{{ $t('status.status_deleted') }}
</div>
<reply-button
2020-09-08 06:32:43 +00:00
v-if="replying"
:replying="replying"
:status="status"
@toggle="toggleReplying"
/>
</div>
</div>
2019-07-05 07:17:44 +00:00
<div
v-if="replying"
2020-08-04 16:08:49 +00:00
class="status-container reply-form"
2019-07-05 07:17:44 +00:00
>
<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>
<div
v-if="quoting"
class="status-container quote-form"
>
<PostStatusForm
class="quote-body"
:quote-id="status.id"
:attentions="[status.user]"
:replied-user="status.user"
:copy-message-scope="status.visibility"
:subject="replySubject"
@posted="toggleQuoting"
/>
</div>
2018-04-09 16:43:31 +00:00
</template>
</div>
</template>
2016-10-28 13:19:42 +00:00
<script src="./status.js" ></script>
2020-09-29 10:18:37 +00:00
2020-07-27 22:27:11 +00:00
<style src="./status.scss" lang="scss"></style>