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
|
|
|
/>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="non-mention"
|
|
|
|
:class="[userClass, { highlighted: userStyle }]"
|
|
|
|
:style="[ userStyle ]"
|
2019-03-13 18:08:03 +00:00
|
|
|
>
|
2019-07-05 07:17:44 +00:00
|
|
|
<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"
|
|
|
|
/>
|
2019-03-13 18:08:03 +00:00
|
|
|
</a>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div class="notification-right">
|
|
|
|
<UserCard
|
|
|
|
v-if="userExpanded"
|
|
|
|
:user="getUser(notification)"
|
|
|
|
:rounded="true"
|
|
|
|
:bordered="true"
|
|
|
|
/>
|
2019-03-13 18:08:03 +00:00
|
|
|
<span class="notification-details">
|
|
|
|
<div class="name-and-action">
|
2019-07-05 07:17:44 +00:00
|
|
|
<span
|
|
|
|
v-if="!!notification.from_profile.name_html"
|
|
|
|
class="username"
|
|
|
|
:title="'@'+notification.from_profile.screen_name"
|
|
|
|
v-html="notification.from_profile.name_html"
|
|
|
|
/>
|
|
|
|
<span
|
|
|
|
v-else
|
|
|
|
class="username"
|
|
|
|
:title="'@'+notification.from_profile.screen_name"
|
|
|
|
>{{ notification.from_profile.name }}</span>
|
2019-03-13 18:08:03 +00:00
|
|
|
<span v-if="notification.type === 'like'">
|
2019-07-05 07:17:44 +00:00
|
|
|
<i class="fa icon-star lit" />
|
|
|
|
<small>{{ $t('notifications.favorited_you') }}</small>
|
2019-03-13 18:08:03 +00:00
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'repeat'">
|
2019-07-05 07:17:44 +00:00
|
|
|
<i
|
|
|
|
class="fa icon-retweet lit"
|
|
|
|
:title="$t('tool_tip.repeat')"
|
|
|
|
/>
|
|
|
|
<small>{{ $t('notifications.repeated_you') }}</small>
|
2019-03-13 18:08:03 +00:00
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'follow'">
|
2019-07-05 07:17:44 +00:00
|
|
|
<i class="fa icon-user-plus lit" />
|
|
|
|
<small>{{ $t('notifications.followed_you') }}</small>
|
2019-03-13 18:08:03 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="notification.type === 'follow'"
|
|
|
|
class="timeago"
|
|
|
|
>
|
2019-03-14 11:55:39 +00:00
|
|
|
<span class="faint">
|
2019-07-05 07:17:44 +00:00
|
|
|
<Timeago
|
|
|
|
:time="notification.created_at"
|
|
|
|
:auto-update="240"
|
|
|
|
/>
|
2019-03-14 11:55:39 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<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"
|
|
|
|
/>
|
2019-03-03 19:11:38 +00:00
|
|
|
</router-link>
|
|
|
|
</div>
|
2019-03-13 18:08:03 +00:00
|
|
|
</span>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="notification.type === 'follow'"
|
|
|
|
class="follow-text"
|
|
|
|
>
|
2019-03-31 18:50:34 +00:00
|
|
|
<router-link :to="userProfileLink(notification.from_profile)">
|
2019-07-05 07:17:44 +00:00
|
|
|
@{{ notification.from_profile.screen_name }}
|
2019-03-13 18:08:03 +00:00
|
|
|
</router-link>
|
2018-04-09 17:44:37 +00:00
|
|
|
</div>
|
2019-03-13 18:08:03 +00:00
|
|
|
<template v-else>
|
2019-07-05 07:17:44 +00:00
|
|
|
<status
|
|
|
|
class="faint"
|
|
|
|
:compact="true"
|
|
|
|
:statusoid="notification.action"
|
|
|
|
:no-heading="true"
|
|
|
|
/>
|
2019-03-13 18:08:03 +00:00
|
|
|
</template>
|
2018-04-09 17:44:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./notification.js"></script>
|