2016-11-27 10:44:56 -08:00
|
|
|
<template>
|
|
|
|
<div class="notifications">
|
2017-01-15 06:44:56 -08:00
|
|
|
<div class="panel panel-default base00-background">
|
2017-11-16 16:17:36 -08:00
|
|
|
<div class="panel-heading base02-background base04">
|
2017-03-07 05:55:00 -08:00
|
|
|
<span class="unseen-count" v-if="unseenCount">{{unseenCount}}</span>
|
2017-11-07 06:14:37 -08:00
|
|
|
{{$t('notifications.notifications')}}
|
2017-12-07 13:54:03 -08:00
|
|
|
<button v-if="unseenCount" @click.prevent="markAsSeen" class="base04 base02-background read-button">{{$t('notifications.read')}}</button>
|
2017-02-24 08:53:53 -08:00
|
|
|
</div>
|
2017-03-08 15:09:23 -08:00
|
|
|
<div class="panel-body base03-border">
|
2017-06-02 08:04:59 -07:00
|
|
|
<div v-for="notification in visibleNotifications" :key="notification" class="notification" :class='{"unseen": !notification.seen}'>
|
2017-08-20 06:53:48 -07:00
|
|
|
<div>
|
|
|
|
<a :href="notification.action.user.statusnet_profile_url" target="_blank">
|
2018-03-11 16:31:33 -07:00
|
|
|
<StillImage class='avatar' :src="notification.action.user.profile_image_url_original"/>
|
2017-08-20 06:53:48 -07:00
|
|
|
</a>
|
|
|
|
</div>
|
2017-05-31 01:47:18 -07:00
|
|
|
<div class='text' style="width: 100%;">
|
2017-02-22 15:26:37 -08:00
|
|
|
<div v-if="notification.type === 'favorite'">
|
2017-05-29 14:24:08 -07:00
|
|
|
<h1>
|
2017-06-02 03:05:03 -07:00
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2017-11-25 02:57:55 -08:00
|
|
|
<i class="fa icon-star lit"></i>
|
2017-05-29 14:24:08 -07:00
|
|
|
<small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
|
|
|
|
</h1>
|
2017-11-13 09:23:43 -08:00
|
|
|
<div class="notification-gradient" :style="hiderStyle"></div>
|
|
|
|
<div class="notification-content" v-html="notification.status.statusnet_html"></div>
|
2017-02-22 15:26:37 -08:00
|
|
|
</div>
|
|
|
|
<div v-if="notification.type === 'repeat'">
|
2017-05-29 14:24:08 -07:00
|
|
|
<h1>
|
2017-06-02 03:05:03 -07:00
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2017-05-31 01:47:18 -07:00
|
|
|
<i class="fa icon-retweet lit"></i>
|
2017-05-29 14:24:08 -07:00
|
|
|
<small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
|
|
|
|
</h1>
|
2017-11-13 09:23:43 -08:00
|
|
|
<div class="notification-gradient" :style="hiderStyle"></div>
|
|
|
|
<div class="notification-content" v-html="notification.status.statusnet_html"></div>
|
2017-02-22 15:26:37 -08:00
|
|
|
</div>
|
|
|
|
<div v-if="notification.type === 'mention'">
|
2017-05-31 01:47:18 -07:00
|
|
|
<h1>
|
2017-06-02 03:05:03 -07:00
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2017-05-31 01:47:18 -07:00
|
|
|
<i class="fa icon-reply lit"></i>
|
|
|
|
<small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
|
|
|
|
</h1>
|
|
|
|
<status :compact="true" :statusoid="notification.status"></status>
|
2016-11-27 10:44:56 -08:00
|
|
|
</div>
|
2017-08-10 09:17:40 -07:00
|
|
|
<div v-if="notification.type === 'follow'">
|
|
|
|
<h1>
|
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
|
|
|
<i class="fa icon-user-plus lit"></i>
|
|
|
|
</h1>
|
|
|
|
<div>
|
2017-11-07 06:14:37 -08:00
|
|
|
<router-link :to="{ name: 'user-profile', params: { id: notification.action.user.id } }">@{{ notification.action.user.screen_name }}</router-link> {{$t('notifications.followed_you')}}
|
2017-08-10 09:17:40 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-27 10:44:56 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./notifications.js"></script>
|
|
|
|
<style lang="scss" src="./notifications.scss"></style>
|