notification.vue (8980B)
- <template>
- <article
- v-if="notification.type === 'mention' || notification.type === 'status'"
- >
- <Status
- class="Notification"
- :compact="true"
- :statusoid="notification.status"
- @interacted="interacted"
- />
- </article>
- <article v-else>
- <div
- v-if="needMute && !unmuted"
- class="Notification container -muted"
- >
- <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"
- :href="$router.resolve(userProfileLink).href"
- @click.prevent
- >
- <UserPopover
- :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"
- >
- {{ notification.from_profile.name }}
- </span>
- {{ ' ' }}
- <span v-if="notification.type === 'like'">
- <FAIcon
- class="type-icon"
- icon="star"
- />
- {{ ' ' }}
- <small>{{ $t('notifications.favorited_you') }}</small>
- </span>
- <span v-if="notification.type === 'repeat'">
- <FAIcon
- class="type-icon"
- icon="retweet"
- :title="$t('tool_tip.repeat')"
- />
- {{ ' ' }}
- <small>{{ $t('notifications.repeated_you') }}</small>
- </span>
- <span v-if="notification.type === 'follow'">
- <FAIcon
- class="type-icon"
- icon="user-plus"
- />
- {{ ' ' }}
- <small>{{ $t('notifications.followed_you') }}</small>
- </span>
- <span v-if="notification.type === 'follow_request'">
- <FAIcon
- class="type-icon"
- icon="user"
- />
- {{ ' ' }}
- <small>{{ $t('notifications.follow_request') }}</small>
- </span>
- <span v-if="notification.type === 'move'">
- <FAIcon
- class="type-icon"
- icon="suitcase-rolling"
- />
- {{ ' ' }}
- <small>{{ $t('notifications.migrated_to') }}</small>
- </span>
- <span v-if="notification.type === 'pleroma:emoji_reaction'">
- <small>
- <i18n-t
- scope="global"
- keypath="notifications.reacted_with"
- >
- <img
- v-if="notification.emoji_url"
- class="emoji-reaction-emoji emoji-reaction-emoji-image"
- :src="notification.emoji_url"
- :alt="notification.emoji"
- :title="notification.emoji"
- >
- <span
- v-else
- class="emoji-reaction-emoji"
- >{{ notification.emoji }}</span>
- </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 } }"
- class="timeago-link faint"
- >
- <Timeago
- :time="notification.created_at"
- :auto-update="240"
- />
- </router-link>
- <button
- class="button-unstyled expand-icon"
- :title="$t('tool_tip.toggle_expand')"
- :aria-expanded="statusExpanded"
- @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"
- :title="$t('tool_tip.toggle_mute')"
- :aria-expanded="!unmuted"
- @click.prevent="toggleMute"
- >
- <FAIcon
- class="fa-scale-110 fa-old-padding"
- icon="eye-slash"
- />
- </button>
- </span>
- <div
- v-if="notification.type === 'follow' || notification.type === 'follow_request'"
- class="follow-text"
- >
- <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>
- <div
- v-else-if="notification.type === 'move'"
- class="move-text"
- >
- <user-link
- :user="notification.target"
- />
- </div>
- <Report
- v-else-if="notification.type === 'pleroma:report'"
- :report-id="notification.report.id"
- />
- <template v-else>
- <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>
- <style src="./notification.scss" lang="scss"></style>