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-02-25 03:53:53 +11:00
|
|
|
<div class="panel-heading base01-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')}}
|
|
|
|
<button @click.prevent="markAsSeen" class="base05 base01-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}'>
|
2017-08-20 23:53:48 +10:00
|
|
|
<div>
|
|
|
|
<a :href="notification.action.user.statusnet_profile_url" target="_blank">
|
|
|
|
<img class='avatar' :src="notification.action.user.profile_image_url_original">
|
|
|
|
</a>
|
|
|
|
</div>
|
2017-05-31 18:47:18 +10:00
|
|
|
<div class='text' style="width: 100%;">
|
2017-02-23 10:26:37 +11:00
|
|
|
<div v-if="notification.type === 'favorite'">
|
2017-05-30 07:24:08 +10:00
|
|
|
<h1>
|
2017-06-02 20:05:03 +10:00
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2017-05-30 07:24:08 +10:00
|
|
|
<i class="fa icon-star"></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>
|
2017-11-14 04:23:43 +11:00
|
|
|
<div class="notification-gradient" :style="hiderStyle"></div>
|
|
|
|
<div class="notification-content" v-html="notification.status.statusnet_html"></div>
|
2017-02-23 10:26:37 +11:00
|
|
|
</div>
|
|
|
|
<div v-if="notification.type === 'repeat'">
|
2017-05-30 07:24:08 +10:00
|
|
|
<h1>
|
2017-06-02 20:05:03 +10:00
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2017-05-31 18:47:18 +10:00
|
|
|
<i class="fa icon-retweet lit"></i>
|
2017-05-30 07:24:08 +10: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-14 04:23:43 +11:00
|
|
|
<div class="notification-gradient" :style="hiderStyle"></div>
|
|
|
|
<div class="notification-content" v-html="notification.status.statusnet_html"></div>
|
2017-02-23 10:26:37 +11:00
|
|
|
</div>
|
|
|
|
<div v-if="notification.type === 'mention'">
|
2017-05-31 18:47:18 +10:00
|
|
|
<h1>
|
2017-06-02 20:05:03 +10:00
|
|
|
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
2017-05-31 18:47:18 +10: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-28 05:44:56 +11:00
|
|
|
</div>
|
2017-08-11 02:17:40 +10: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-08 01:14:37 +11: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-11 02:17:40 +10:00
|
|
|
</div>
|
|
|
|
</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>
|