2018-04-10 03:44:37 +10:00
|
|
|
<template>
|
2018-12-29 06:39:54 +11:00
|
|
|
<status v-if="notification.type === 'mention'" :compact="true" :statusoid="notification.status"></status>
|
2018-06-18 19:09:14 +10:00
|
|
|
<div class="non-mention" :class="[userClass, { highlighted: userStyle }]" :style="[ userStyle ]"v-else>
|
2018-04-11 02:25:24 +10:00
|
|
|
<a class='avatar-container' :href="notification.action.user.statusnet_profile_url" @click.stop.prevent.capture="toggleUserExpanded">
|
2019-02-03 07:33:02 +11:00
|
|
|
<UserAvatar :compact="true" :betterShadow="betterShadow" :src="notification.action.user.profile_image_url_original"/>
|
2018-04-10 03:44:37 +10:00
|
|
|
</a>
|
|
|
|
<div class='notification-right'>
|
2019-03-05 18:32:23 +11:00
|
|
|
<UserCardContent :user="notification.action.user" :rounded="true" :bordered="true" v-if="userExpanded"/>
|
2018-04-10 03:44:37 +10:00
|
|
|
<span class="notification-details">
|
2018-04-11 02:25:24 +10:00
|
|
|
<div class="name-and-action">
|
2018-08-09 19:52:34 +10:00
|
|
|
<span class="username" v-if="!!notification.action.user.name_html" :title="'@'+notification.action.user.screen_name" v-html="notification.action.user.name_html"></span>
|
|
|
|
<span class="username" v-else :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2018-08-12 21:14:34 +10:00
|
|
|
<span v-if="notification.type === 'like'">
|
2018-04-11 02:25:24 +10:00
|
|
|
<i class="fa icon-star lit"></i>
|
|
|
|
<small>{{$t('notifications.favorited_you')}}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'repeat'">
|
2018-12-04 04:12:43 +11:00
|
|
|
<i class="fa icon-retweet lit" :title="$t('tool_tip.repeat')"></i>
|
2018-04-11 02:25:24 +10:00
|
|
|
<small>{{$t('notifications.repeated_you')}}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'follow'">
|
|
|
|
<i class="fa icon-user-plus lit"></i>
|
|
|
|
<small>{{$t('notifications.followed_you')}}</small>
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-03-04 06:15:53 +11:00
|
|
|
<div class="timeago">
|
2019-03-04 06:11:38 +11:00
|
|
|
<router-link v-if="notification.status" :to="{ name: 'conversation', params: { id: notification.status.id } }" class="faint-link">
|
|
|
|
<timeago :since="notification.action.created_at" :auto-update="240"></timeago>
|
|
|
|
</router-link>
|
|
|
|
</div>
|
2018-04-10 03:44:37 +10:00
|
|
|
</span>
|
|
|
|
<div class="follow-text" v-if="notification.type === 'follow'">
|
2018-12-29 06:39:54 +11:00
|
|
|
<router-link :to="userProfileLink(notification.action.user)">
|
2018-12-14 03:57:11 +11:00
|
|
|
@{{notification.action.user.screen_name}}
|
|
|
|
</router-link>
|
2018-04-10 03:44:37 +10:00
|
|
|
</div>
|
2018-08-16 20:41:45 +10:00
|
|
|
<template v-else>
|
2018-12-29 06:39:54 +11:00
|
|
|
<status class="faint" :compact="true" :statusoid="notification.status" :noHeading="true"></status>
|
2018-08-16 20:41:45 +10:00
|
|
|
</template>
|
2018-04-10 03:44:37 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./notification.js"></script>
|