2018-04-09 17:44:37 +00:00
|
|
|
<template>
|
2020-10-19 19:35:46 +00:00
|
|
|
<Status
|
2019-03-31 18:50:34 +00:00
|
|
|
v-if="notification.type === 'mention'"
|
2021-06-08 13:14:01 +00:00
|
|
|
class="Notification"
|
2019-03-31 18:50:34 +00:00
|
|
|
:compact="true"
|
2019-03-13 18:08:03 +00:00
|
|
|
:statusoid="notification.status"
|
2019-07-05 07:17:44 +00:00
|
|
|
/>
|
2019-09-06 15:15:22 +00:00
|
|
|
<div v-else>
|
|
|
|
<div
|
|
|
|
v-if="needMute && !unmuted"
|
2020-08-17 21:26:02 +00:00
|
|
|
class="Notification container -muted"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2019-09-06 15:15:22 +00:00
|
|
|
<small>
|
|
|
|
<router-link :to="userProfileLink">
|
2021-02-26 14:23:11 +00:00
|
|
|
{{ notification.from_profile.screen_name_ui }}
|
2019-09-06 15:15:22 +00:00
|
|
|
</router-link>
|
|
|
|
</small>
|
2020-11-24 10:32:42 +00:00
|
|
|
<button
|
|
|
|
class="button-unstyled unmute"
|
2019-09-06 15:15:22 +00:00
|
|
|
@click.prevent="toggleMute"
|
2020-11-24 15:47:37 +00:00
|
|
|
>
|
|
|
|
<FAIcon
|
|
|
|
class="fa-scale-110 fa-old-padding"
|
|
|
|
icon="eye-slash"
|
|
|
|
/>
|
|
|
|
</button>
|
2019-09-06 15:15:22 +00:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-else
|
2020-10-19 19:35:46 +00:00
|
|
|
class="Notification non-mention"
|
|
|
|
:class="[userClass, { highlighted: userStyle }, '-type--' + notification.type]"
|
2019-09-06 15:15:22 +00:00
|
|
|
:style="[ userStyle ]"
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
class="avatar-container"
|
|
|
|
:href="notification.from_profile.statusnet_profile_url"
|
|
|
|
@click.stop.prevent.capture="toggleUserExpanded"
|
|
|
|
>
|
|
|
|
<UserAvatar
|
|
|
|
:compact="true"
|
|
|
|
:better-shadow="betterShadow"
|
|
|
|
:user="notification.from_profile"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
<div class="notification-right">
|
|
|
|
<UserCard
|
|
|
|
v-if="userExpanded"
|
2020-04-21 20:27:51 +00:00
|
|
|
:user-id="getUser(notification).id"
|
2019-09-06 15:15:22 +00:00
|
|
|
:rounded="true"
|
|
|
|
:bordered="true"
|
|
|
|
/>
|
|
|
|
<span class="notification-details">
|
|
|
|
<div class="name-and-action">
|
|
|
|
<!-- eslint-disable vue/no-v-html -->
|
2021-08-13 10:06:42 +00:00
|
|
|
<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>
|
2019-09-06 15:15:22 +00:00
|
|
|
<!-- eslint-enable vue/no-v-html -->
|
|
|
|
<span
|
|
|
|
v-else
|
|
|
|
class="username"
|
2021-02-26 14:23:11 +00:00
|
|
|
:title="'@'+notification.from_profile.screen_name_ui"
|
2019-09-06 15:15:22 +00:00
|
|
|
>{{ notification.from_profile.name }}</span>
|
|
|
|
<span v-if="notification.type === 'like'">
|
2020-10-20 21:31:16 +00:00
|
|
|
<FAIcon
|
|
|
|
class="type-icon"
|
|
|
|
icon="star"
|
|
|
|
/>
|
2019-09-06 15:15:22 +00:00
|
|
|
<small>{{ $t('notifications.favorited_you') }}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'repeat'">
|
2020-10-19 19:35:46 +00:00
|
|
|
<FAIcon
|
2020-10-20 21:31:16 +00:00
|
|
|
class="type-icon"
|
|
|
|
icon="retweet"
|
2019-09-06 15:15:22 +00:00
|
|
|
:title="$t('tool_tip.repeat')"
|
|
|
|
/>
|
|
|
|
<small>{{ $t('notifications.repeated_you') }}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'follow'">
|
2020-10-20 21:31:16 +00:00
|
|
|
<FAIcon
|
|
|
|
class="type-icon"
|
|
|
|
icon="user-plus"
|
|
|
|
/>
|
2019-09-06 15:15:22 +00:00
|
|
|
<small>{{ $t('notifications.followed_you') }}</small>
|
|
|
|
</span>
|
2020-04-25 04:04:39 +00:00
|
|
|
<span v-if="notification.type === 'follow_request'">
|
2020-10-20 21:31:16 +00:00
|
|
|
<FAIcon
|
|
|
|
class="type-icon"
|
|
|
|
icon="user"
|
|
|
|
/>
|
2020-04-25 04:04:39 +00:00
|
|
|
<small>{{ $t('notifications.follow_request') }}</small>
|
|
|
|
</span>
|
2019-12-10 15:00:10 +00:00
|
|
|
<span v-if="notification.type === 'move'">
|
2020-10-20 21:31:16 +00:00
|
|
|
<FAIcon
|
|
|
|
class="type-icon"
|
|
|
|
icon="suitcase-rolling"
|
|
|
|
/>
|
2019-12-11 09:20:23 +00:00
|
|
|
<small>{{ $t('notifications.migrated_to') }}</small>
|
2019-12-10 15:00:10 +00:00
|
|
|
</span>
|
2020-02-11 12:24:51 +00:00
|
|
|
<span v-if="notification.type === 'pleroma:emoji_reaction'">
|
|
|
|
<small>
|
2021-04-25 10:25:42 +00:00
|
|
|
<i18n-t keypath="notifications.reacted_with">
|
2020-02-11 12:24:51 +00:00
|
|
|
<span class="emoji-reaction-emoji">{{ notification.emoji }}</span>
|
2021-04-25 10:25:42 +00:00
|
|
|
</i18n-t>
|
2020-02-11 12:24:51 +00:00
|
|
|
</small>
|
|
|
|
</span>
|
2019-09-06 15:15:22 +00:00
|
|
|
</div>
|
|
|
|
<div
|
2020-04-25 04:04:39 +00:00
|
|
|
v-if="isStatusNotification"
|
2019-09-06 15:15:22 +00:00
|
|
|
class="timeago"
|
|
|
|
>
|
2020-04-25 04:04:39 +00:00
|
|
|
<router-link
|
|
|
|
v-if="notification.status"
|
|
|
|
:to="{ name: 'conversation', params: { id: notification.status.id } }"
|
|
|
|
class="faint-link"
|
|
|
|
>
|
2019-09-06 15:15:22 +00:00
|
|
|
<Timeago
|
|
|
|
:time="notification.created_at"
|
|
|
|
:auto-update="240"
|
|
|
|
/>
|
2020-04-25 04:04:39 +00:00
|
|
|
</router-link>
|
2019-09-06 15:15:22 +00:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="timeago"
|
|
|
|
>
|
2020-04-25 04:04:39 +00:00
|
|
|
<span class="faint">
|
2019-09-06 15:15:22 +00:00
|
|
|
<Timeago
|
|
|
|
:time="notification.created_at"
|
|
|
|
:auto-update="240"
|
|
|
|
/>
|
2020-04-25 04:04:39 +00:00
|
|
|
</span>
|
2019-09-06 15:15:22 +00:00
|
|
|
</div>
|
2020-11-24 10:32:42 +00:00
|
|
|
<button
|
2019-09-06 15:15:22 +00:00
|
|
|
v-if="needMute"
|
2020-11-24 10:32:42 +00:00
|
|
|
class="button-unstyled"
|
2019-09-06 15:15:22 +00:00
|
|
|
@click.prevent="toggleMute"
|
2020-11-24 14:10:03 +00:00
|
|
|
>
|
|
|
|
<FAIcon
|
|
|
|
class="fa-scale-110 fa-old-padding"
|
|
|
|
icon="eye-slash"
|
|
|
|
/>
|
|
|
|
</button>
|
2019-09-06 15:15:22 +00:00
|
|
|
</span>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
2020-04-25 04:04:39 +00:00
|
|
|
v-if="notification.type === 'follow' || notification.type === 'follow_request'"
|
2019-09-06 15:15:22 +00:00
|
|
|
class="follow-text"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2020-04-25 04:04:39 +00:00
|
|
|
<router-link
|
|
|
|
:to="userProfileLink"
|
|
|
|
class="follow-name"
|
|
|
|
>
|
2021-02-26 14:23:11 +00:00
|
|
|
@{{ notification.from_profile.screen_name_ui }}
|
2019-03-03 19:11:38 +00:00
|
|
|
</router-link>
|
2020-04-25 04:04:39 +00:00
|
|
|
<div
|
|
|
|
v-if="notification.type === 'follow_request'"
|
|
|
|
style="white-space: nowrap;"
|
|
|
|
>
|
2020-10-19 19:35:46 +00:00
|
|
|
<FAIcon
|
|
|
|
icon="check"
|
2020-10-28 19:31:16 +00:00
|
|
|
class="fa-scale-110 fa-old-padding follow-request-accept"
|
2020-04-25 04:04:39 +00:00
|
|
|
:title="$t('tool_tip.accept_follow_request')"
|
|
|
|
@click="approveUser()"
|
|
|
|
/>
|
2020-10-19 19:35:46 +00:00
|
|
|
<FAIcon
|
|
|
|
icon="times"
|
2020-10-28 19:31:16 +00:00
|
|
|
class="fa-scale-110 fa-old-padding follow-request-reject"
|
2020-05-02 07:19:47 +00:00
|
|
|
:title="$t('tool_tip.reject_follow_request')"
|
2020-04-25 04:04:39 +00:00
|
|
|
@click="denyUser()"
|
|
|
|
/>
|
|
|
|
</div>
|
2019-03-03 19:11:38 +00:00
|
|
|
</div>
|
2019-12-10 15:00:10 +00:00
|
|
|
<div
|
|
|
|
v-else-if="notification.type === 'move'"
|
|
|
|
class="move-text"
|
|
|
|
>
|
2019-12-10 19:02:25 +00:00
|
|
|
<router-link :to="targetUserProfileLink">
|
2021-02-26 14:23:11 +00:00
|
|
|
@{{ notification.target.screen_name_ui }}
|
2019-12-10 15:00:10 +00:00
|
|
|
</router-link>
|
|
|
|
</div>
|
2019-09-06 15:15:22 +00:00
|
|
|
<template v-else>
|
2021-06-13 23:52:41 +00:00
|
|
|
<StatusContent
|
2019-09-06 15:15:22 +00:00
|
|
|
class="faint"
|
2021-06-13 23:52:41 +00:00
|
|
|
:compact="true"
|
2020-05-25 22:01:25 +00:00
|
|
|
:status="notification.action"
|
2019-09-06 15:15:22 +00:00
|
|
|
/>
|
|
|
|
</template>
|
2018-04-09 17:44:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./notification.js"></script>
|
2020-08-17 21:26:02 +00:00
|
|
|
<style src="./notification.scss" lang="scss"></style>
|