2018-04-09 17:44:37 +00:00
|
|
|
<template>
|
2019-04-01 16:13:11 +00:00
|
|
|
<status
|
2019-03-31 18:50:34 +00:00
|
|
|
v-if="notification.type === 'mention'"
|
|
|
|
: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"
|
|
|
|
class="container muted"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2019-09-06 15:15:22 +00:00
|
|
|
<small>
|
|
|
|
<router-link :to="userProfileLink">
|
|
|
|
{{ notification.from_profile.screen_name }}
|
|
|
|
</router-link>
|
|
|
|
</small>
|
|
|
|
<a
|
|
|
|
href="#"
|
|
|
|
class="unmute"
|
|
|
|
@click.prevent="toggleMute"
|
|
|
|
><i class="button-icon icon-eye-off" /></a>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="non-mention"
|
|
|
|
:class="[userClass, { highlighted: userStyle }]"
|
|
|
|
: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"
|
|
|
|
:user="getUser(notification)"
|
|
|
|
:rounded="true"
|
|
|
|
:bordered="true"
|
|
|
|
/>
|
|
|
|
<span class="notification-details">
|
|
|
|
<div class="name-and-action">
|
|
|
|
<!-- eslint-disable vue/no-v-html -->
|
|
|
|
<span
|
|
|
|
v-if="!!notification.from_profile.name_html"
|
|
|
|
class="username"
|
|
|
|
:title="'@'+notification.from_profile.screen_name"
|
|
|
|
v-html="notification.from_profile.name_html"
|
2019-07-05 07:17:44 +00:00
|
|
|
/>
|
2019-09-06 15:15:22 +00:00
|
|
|
<!-- eslint-enable vue/no-v-html -->
|
|
|
|
<span
|
|
|
|
v-else
|
|
|
|
class="username"
|
|
|
|
:title="'@'+notification.from_profile.screen_name"
|
|
|
|
>{{ notification.from_profile.name }}</span>
|
|
|
|
<span v-if="notification.type === 'like'">
|
|
|
|
<i class="fa icon-star lit" />
|
|
|
|
<small>{{ $t('notifications.favorited_you') }}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'repeat'">
|
|
|
|
<i
|
|
|
|
class="fa icon-retweet lit"
|
|
|
|
:title="$t('tool_tip.repeat')"
|
|
|
|
/>
|
|
|
|
<small>{{ $t('notifications.repeated_you') }}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'follow'">
|
|
|
|
<i class="fa icon-user-plus lit" />
|
|
|
|
<small>{{ $t('notifications.followed_you') }}</small>
|
|
|
|
</span>
|
2019-12-10 15:00:10 +00:00
|
|
|
<span v-if="notification.type === 'move'">
|
|
|
|
<i class="fa icon-arrow-curved lit" />
|
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>
|
|
|
|
<i18n path="notifications.reacted_with">
|
|
|
|
<span class="emoji-reaction-emoji">{{ notification.emoji }}</span>
|
|
|
|
</i18n>
|
|
|
|
</small>
|
|
|
|
</span>
|
2019-09-06 15:15:22 +00:00
|
|
|
</div>
|
|
|
|
<div
|
2019-12-10 15:00:10 +00:00
|
|
|
v-if="notification.type === 'follow' || notification.type === 'move'"
|
2019-09-06 15:15:22 +00:00
|
|
|
class="timeago"
|
|
|
|
>
|
|
|
|
<span class="faint">
|
|
|
|
<Timeago
|
|
|
|
:time="notification.created_at"
|
|
|
|
:auto-update="240"
|
|
|
|
/>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="timeago"
|
|
|
|
>
|
|
|
|
<router-link
|
|
|
|
v-if="notification.status"
|
|
|
|
:to="{ name: 'conversation', params: { id: notification.status.id } }"
|
|
|
|
class="faint-link"
|
|
|
|
>
|
|
|
|
<Timeago
|
|
|
|
:time="notification.created_at"
|
|
|
|
:auto-update="240"
|
|
|
|
/>
|
|
|
|
</router-link>
|
|
|
|
</div>
|
|
|
|
<a
|
|
|
|
v-if="needMute"
|
|
|
|
href="#"
|
|
|
|
@click.prevent="toggleMute"
|
|
|
|
><i class="button-icon icon-eye-off" /></a>
|
|
|
|
</span>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="notification.type === 'follow'"
|
2019-09-06 15:15:22 +00:00
|
|
|
class="follow-text"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2019-09-06 15:15:22 +00:00
|
|
|
<router-link :to="userProfileLink">
|
|
|
|
@{{ notification.from_profile.screen_name }}
|
2019-03-03 19:11:38 +00:00
|
|
|
</router-link>
|
|
|
|
</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">
|
2019-12-10 15:00:10 +00:00
|
|
|
@{{ notification.target.screen_name }}
|
|
|
|
</router-link>
|
|
|
|
</div>
|
2019-09-06 15:15:22 +00:00
|
|
|
<template v-else>
|
|
|
|
<status
|
|
|
|
class="faint"
|
|
|
|
:compact="true"
|
|
|
|
:statusoid="notification.action"
|
|
|
|
:no-heading="true"
|
|
|
|
/>
|
|
|
|
</template>
|
2018-04-09 17:44:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./notification.js"></script>
|