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