2016-11-28 05:44:56 +11:00
|
|
|
<template>
|
|
|
|
<div class="notifications">
|
2017-01-16 01:44:56 +11:00
|
|
|
<div class="panel panel-default base00-background">
|
2017-11-17 11:17:36 +11:00
|
|
|
<div class="panel-heading base02-background base04">
|
2017-03-08 00:55:00 +11:00
|
|
|
<span class="unseen-count" v-if="unseenCount">{{unseenCount}}</span>
|
2017-11-08 01:14:37 +11:00
|
|
|
{{$t('notifications.notifications')}}
|
2017-12-08 08:54:03 +11:00
|
|
|
<button v-if="unseenCount" @click.prevent="markAsSeen" class="base04 base02-background read-button">{{$t('notifications.read')}}</button>
|
2017-02-25 03:53:53 +11:00
|
|
|
</div>
|
2017-03-09 10:09:23 +11:00
|
|
|
<div class="panel-body base03-border">
|
2017-06-03 01:04:59 +10:00
|
|
|
<div v-for="notification in visibleNotifications" :key="notification" class="notification" :class='{"unseen": !notification.seen}'>
|
2018-04-10 02:43:31 +10:00
|
|
|
<status v-if="notification.type === 'mention'" :compact="true" :statusoid="notification.status"></status>
|
|
|
|
<div class="non-mention" v-else>
|
|
|
|
<a :href="notification.action.user.statusnet_profile_url" @click.stop.prevent.capture="toggleUserExpanded">
|
|
|
|
<StillImage class='avatar-compact' :src="notification.action.user.profile_image_url_original"/>
|
2017-08-20 23:53:48 +10:00
|
|
|
</a>
|
2018-04-10 02:43:31 +10:00
|
|
|
<div class='notification-right'>
|
|
|
|
<div class="base03-border usercard" v-if="userExpanded">
|
|
|
|
<user-card-content :user="notification.action.user" :switcher="false"></user-card-content>
|
2017-08-11 02:17:40 +10:00
|
|
|
</div>
|
2018-04-10 02:43:31 +10:00
|
|
|
<span class="notification-details">
|
|
|
|
<span class="username" :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
|
|
|
<span v-if="notification.type === 'favorite'">
|
|
|
|
<i class="fa icon-star lit"></i>
|
|
|
|
<small>{{$t('notifications.favorited_you')}}</small>
|
|
|
|
</span>
|
|
|
|
<span v-if="notification.type === 'repeat'">
|
|
|
|
<i class="fa icon-retweet lit"></i>
|
|
|
|
<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>
|
|
|
|
<small class="timeago"><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
|
|
|
|
</span>
|
|
|
|
<status class="base04" :compact="true" :statusoid="notification.status" :noHeading="true"></status>
|
2017-08-11 02:17:40 +10:00
|
|
|
</div>
|
2016-11-28 05:44:56 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./notifications.js"></script>
|
|
|
|
<style lang="scss" src="./notifications.scss"></style>
|