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

283 lines
8.7 KiB
Vue
Raw Normal View History

<template>
<article
2019-03-31 20:50:34 +02:00
v-if="notification.type === 'mention'"
>
<Status
class="Notification"
:compact="true"
:statusoid="notification.status"
@interacted="interacted"
/>
</article>
<article v-else>
<div
v-if="needMute && !unmuted"
2020-08-17 23:26:02 +02:00
class="Notification container -muted"
2019-07-05 09:17:44 +02:00
>
<small>
<user-link
:user="notification.from_profile"
:at="false"
/>
</small>
<button
class="button-unstyled unmute"
@click.prevent="toggleMute"
>
<FAIcon
class="fa-scale-110 fa-old-padding"
icon="eye-slash"
/>
</button>
</div>
<div
v-else
class="Notification non-mention"
:class="[userClass, { highlighted: userStyle }, '-type--' + notification.type]"
:style="[ userStyle ]"
>
<a
class="avatar-container"
2022-03-22 18:43:11 +01:00
:href="$router.resolve(userProfileLink).href"
@click.prevent
>
<UserPopover
2022-07-31 11:35:48 +02:00
:user-id="notification.from_profile.id"
:overlay-centers="true"
>
<UserAvatar
class="post-avatar"
:bot="botIndicator"
:compact="true"
:better-shadow="betterShadow"
:user="notification.from_profile"
/>
</UserPopover>
</a>
<div class="notification-right">
<span class="notification-details">
<div class="name-and-action">
<!-- eslint-disable vue/no-v-html -->
<bdi v-if="!!notification.from_profile.name_html">
<RichContent
class="username"
:title="'@'+notification.from_profile.screen_name_ui"
:html="notification.from_profile.name_html"
:emoji="notification.from_profile.emoji"
/>
</bdi>
<!-- eslint-enable vue/no-v-html -->
<span
v-else
class="username"
:title="'@'+notification.from_profile.screen_name_ui"
2022-03-23 15:08:45 +01:00
>
{{ notification.from_profile.name }}
</span>
{{ ' ' }}
<span v-if="notification.type === 'like'">
2020-10-20 23:31:16 +02:00
<FAIcon
class="type-icon"
icon="star"
/>
2022-03-23 15:08:45 +01:00
{{ ' ' }}
<small>{{ $t('notifications.favorited_you') }}</small>
</span>
<span v-if="notification.type === 'repeat'">
<FAIcon
2020-10-20 23:31:16 +02:00
class="type-icon"
icon="retweet"
:title="$t('tool_tip.repeat')"
/>
2022-03-23 15:08:45 +01:00
{{ ' ' }}
<small>{{ $t('notifications.repeated_you') }}</small>
</span>
<span v-if="notification.type === 'follow'">
2020-10-20 23:31:16 +02:00
<FAIcon
class="type-icon"
icon="user-plus"
/>
2022-03-23 15:08:45 +01:00
{{ ' ' }}
<small>{{ $t('notifications.followed_you') }}</small>
</span>
<span v-if="notification.type === 'follow_request'">
2020-10-20 23:31:16 +02:00
<FAIcon
class="type-icon"
icon="user"
/>
2022-03-23 15:08:45 +01:00
{{ ' ' }}
<small>{{ $t('notifications.follow_request') }}</small>
</span>
2019-12-10 16:00:10 +01:00
<span v-if="notification.type === 'move'">
2020-10-20 23:31:16 +02:00
<FAIcon
class="type-icon"
icon="suitcase-rolling"
/>
2022-03-23 15:08:45 +01:00
{{ ' ' }}
2019-12-11 10:20:23 +01:00
<small>{{ $t('notifications.migrated_to') }}</small>
2019-12-10 16:00:10 +01:00
</span>
<span v-if="notification.type === 'pleroma:emoji_reaction'">
<small>
2022-03-29 14:35:18 +02:00
<i18n-t
scope="global"
keypath="notifications.reacted_with"
>
2022-12-18 20:04:58 +01:00
<img
v-if="notification.emoji_url"
class="emoji-reaction-emoji emoji-reaction-emoji-image"
:src="notification.emoji_url"
:alt="notification.emoji"
:title="notification.emoji"
2022-12-18 20:04:58 +01:00
>
<span
v-else
class="emoji-reaction-emoji"
>{{ notification.emoji }}</span>
2021-04-25 12:25:42 +02:00
</i18n-t>
</small>
</span>
<span v-if="notification.type === 'pleroma:report'">
<small>{{ $t('notifications.submitted_report') }}</small>
</span>
<span v-if="notification.type === 'poll'">
<FAIcon
class="type-icon"
icon="poll-h"
/>
{{ ' ' }}
<small>{{ $t('notifications.poll_ended') }}</small>
</span>
</div>
<div
v-if="isStatusNotification"
class="timeago"
>
<router-link
v-if="notification.status"
:to="{ name: 'conversation', params: { id: notification.status.id } }"
2024-01-31 16:39:51 +01:00
class="timeago-link faint"
>
<Timeago
:time="notification.created_at"
:auto-update="240"
/>
</router-link>
<button
class="button-unstyled expand-icon"
2022-12-21 21:58:41 +01:00
:title="$t('tool_tip.toggle_expand')"
2022-12-22 11:31:36 +01:00
:aria-expanded="statusExpanded"
2023-03-14 20:50:43 +01:00
@click.prevent="toggleStatusExpanded"
>
<FAIcon
class="fa-scale-110"
fixed-width
:icon="statusExpanded ? 'compress-alt' : 'expand-alt'"
/>
</button>
</div>
<div
v-else
class="timeago"
>
<span class="faint">
<Timeago
:time="notification.created_at"
:auto-update="240"
/>
</span>
</div>
<button
v-if="needMute"
class="button-unstyled"
2022-12-21 21:58:41 +01:00
:title="$t('tool_tip.toggle_mute')"
2022-12-22 11:31:36 +01:00
:aria-expanded="!unmuted"
@click.prevent="toggleMute"
2020-11-24 15:10:03 +01:00
>
<FAIcon
class="fa-scale-110 fa-old-padding"
icon="eye-slash"
/>
</button>
</span>
2019-07-05 09:17:44 +02:00
<div
v-if="notification.type === 'follow' || notification.type === 'follow_request'"
class="follow-text"
2019-07-05 09:17:44 +02:00
>
<user-link
class="follow-name"
:user="notification.from_profile"
/>
<div
v-if="notification.type === 'follow_request'"
style="white-space: nowrap;"
>
<button
class="button-unstyled"
:title="$t('tool_tip.accept_follow_request')"
@click="approveUser()"
>
<FAIcon
icon="check"
class="fa-scale-110 fa-old-padding follow-request-accept"
/>
</button>
<button
class="button-unstyled"
:title="$t('tool_tip.reject_follow_request')"
@click="denyUser()"
>
<FAIcon
icon="times"
class="fa-scale-110 fa-old-padding follow-request-reject"
/>
</button>
</div>
</div>
2019-12-10 16:00:10 +01:00
<div
v-else-if="notification.type === 'move'"
class="move-text"
>
<user-link
:user="notification.target"
/>
2019-12-10 16:00:10 +01:00
</div>
2021-01-11 18:32:58 +01:00
<Report
v-else-if="notification.type === 'pleroma:report'"
2021-01-18 14:26:08 +01:00
:report-id="notification.report.id"
2021-01-11 18:32:58 +01:00
/>
<template v-else>
2021-06-14 01:52:41 +02:00
<StatusContent
:compact="!statusExpanded"
:status="notification.status"
/>
</template>
</div>
</div>
<teleport to="#modal">
<confirm-modal
v-if="showingApproveConfirmDialog"
:title="$t('user_card.approve_confirm_title')"
:confirm-text="$t('user_card.approve_confirm_accept_button')"
:cancel-text="$t('user_card.approve_confirm_cancel_button')"
@accepted="doApprove"
@cancelled="hideApproveConfirmDialog"
>
{{ $t('user_card.approve_confirm', { user: user.screen_name_ui }) }}
</confirm-modal>
<confirm-modal
v-if="showingDenyConfirmDialog"
:title="$t('user_card.deny_confirm_title')"
:confirm-text="$t('user_card.deny_confirm_accept_button')"
:cancel-text="$t('user_card.deny_confirm_cancel_button')"
@accepted="doDeny"
@cancelled="hideDenyConfirmDialog"
>
{{ $t('user_card.deny_confirm', { user: user.screen_name_ui }) }}
</confirm-modal>
</teleport>
</article>
</template>
<script src="./notification.js"></script>
2020-08-17 23:26:02 +02:00
<style src="./notification.scss" lang="scss"></style>