2019-04-22 05:07:48 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="card notification-card">
|
|
|
|
<div class="card-header bg-white">
|
|
|
|
<p class="mb-0 d-flex align-items-center justify-content-between">
|
2019-04-28 23:01:53 +00:00
|
|
|
<span class="text-muted">Notifications</span>
|
2019-04-22 05:07:48 +00:00
|
|
|
<a class="text-dark small" href="/account/activity">See All</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
2019-04-28 23:01:53 +00:00
|
|
|
<div class="card-body loader text-center" style="height: 230px;">
|
2019-04-22 05:07:48 +00:00
|
|
|
<div class="spinner-border" role="status">
|
|
|
|
<span class="sr-only">Loading...</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-28 23:01:53 +00:00
|
|
|
<div class="card-body pt-2 contents" style="max-height: 230px; overflow-y: scroll;">
|
2019-04-22 05:07:48 +00:00
|
|
|
<div v-if="notifications.length > 0" class="media mb-3 align-items-center" v-for="(n, index) in notifications">
|
|
|
|
<img class="mr-2 rounded-circle" style="border:1px solid #ccc" :src="n.account.avatar" alt="" width="32px" height="32px">
|
|
|
|
<div class="media-body font-weight-light small">
|
|
|
|
<div v-if="n.type == 'favourite'">
|
|
|
|
<p class="my-0">
|
2019-04-23 03:50:06 +00:00
|
|
|
<a :href="n.account.url" class="font-weight-bold text-dark word-break" data-placement="bottom" data-toggle="tooltip" :title="n.account.username">{{truncate(n.account.username)}}</a> liked your <a class="font-weight-bold" v-bind:href="n.status.url">post</a>.
|
2019-04-22 05:07:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="n.type == 'comment'">
|
|
|
|
<p class="my-0">
|
2019-04-23 03:50:06 +00:00
|
|
|
<a :href="n.account.url" class="font-weight-bold text-dark word-break" data-placement="bottom" data-toggle="tooltip" :title="n.account.username">{{truncate(n.account.username)}}</a> commented on your <a class="font-weight-bold" v-bind:href="n.status.url">post</a>.
|
2019-04-22 05:07:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="n.type == 'mention'">
|
|
|
|
<p class="my-0">
|
2019-04-23 03:50:06 +00:00
|
|
|
<a :href="n.account.url" class="font-weight-bold text-dark word-break" data-placement="bottom" data-toggle="tooltip" :title="n.account.username">{{truncate(n.account.username)}}</a> <a class="font-weight-bold" v-bind:href="mentionUrl(n.status)">mentioned</a> you.
|
2019-04-22 05:07:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="n.type == 'follow'">
|
|
|
|
<p class="my-0">
|
2019-04-23 03:50:06 +00:00
|
|
|
<a :href="n.account.url" class="font-weight-bold text-dark word-break" data-placement="bottom" data-toggle="tooltip" :title="n.account.username">{{truncate(n.account.username)}}</a> followed you.
|
2019-04-22 05:07:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="n.type == 'share'">
|
|
|
|
<p class="my-0">
|
2019-04-23 03:50:06 +00:00
|
|
|
<a :href="n.account.url" class="font-weight-bold text-dark word-break" data-placement="bottom" data-toggle="tooltip" :title="n.account.username">{{truncate(n.account.username)}}</a> shared your <a class="font-weight-bold" v-bind:href="n.status.reblog.url">post</a>.
|
2019-04-22 05:07:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-01 04:37:53 +00:00
|
|
|
<div class="small text-muted" data-toggle="tooltip" data-placement="bottom" :title="n.created_at">{{timeAgo(n.created_at)}}</div>
|
2019-04-22 05:07:48 +00:00
|
|
|
</div>
|
|
|
|
<div v-if="notifications.length">
|
|
|
|
<infinite-loading @infinite="infiniteNotifications">
|
|
|
|
<div slot="no-results" class="font-weight-bold"></div>
|
|
|
|
<div slot="no-more" class="font-weight-bold"></div>
|
|
|
|
</infinite-loading>
|
|
|
|
</div>
|
|
|
|
<div v-if="notifications.length == 0" class="text-lighter text-center py-3">
|
|
|
|
<p class="mb-0"><i class="fas fa-inbox fa-3x"></i></p>
|
|
|
|
<p class="mb-0 small font-weight-bold">0 Notifications!</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style type="text/css" scoped></style>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
notifications: {},
|
|
|
|
notificationCursor: 2
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2019-04-30 02:58:36 +00:00
|
|
|
if(window.outerWidth > 767) {
|
|
|
|
this.fetchNotifications();
|
|
|
|
}
|
2019-04-22 05:07:48 +00:00
|
|
|
},
|
|
|
|
|
2019-04-23 03:50:06 +00:00
|
|
|
updated() {
|
|
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
|
|
},
|
|
|
|
|
2019-04-22 05:07:48 +00:00
|
|
|
methods: {
|
|
|
|
fetchNotifications() {
|
|
|
|
axios.get('/api/v1/notifications')
|
|
|
|
.then(res => {
|
|
|
|
let data = res.data.filter(n => {
|
|
|
|
if(n.type == 'share' && !status) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
this.notifications = data;
|
|
|
|
$('.notification-card .loader').addClass('d-none');
|
|
|
|
$('.notification-card .contents').removeClass('d-none');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
infiniteNotifications($state) {
|
|
|
|
if(this.notificationCursor > 10) {
|
|
|
|
$state.complete();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
axios.get('/api/v1/notifications', {
|
|
|
|
params: {
|
|
|
|
page: this.notificationCursor
|
|
|
|
}
|
|
|
|
}).then(res => {
|
|
|
|
if(res.data.length) {
|
|
|
|
let data = res.data.filter(n => {
|
|
|
|
if(n.type == 'share' && !status) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
this.notifications.push(...data);
|
|
|
|
this.notificationCursor++;
|
|
|
|
$state.loaded();
|
|
|
|
} else {
|
|
|
|
$state.complete();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2019-04-23 03:50:06 +00:00
|
|
|
|
|
|
|
truncate(text) {
|
|
|
|
if(text.length <= 15) {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
return text.slice(0,15) + '...'
|
2019-05-01 04:37:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
timeAgo(ts) {
|
|
|
|
let date = Date.parse(ts);
|
|
|
|
let seconds = Math.floor((new Date() - date) / 1000);
|
|
|
|
let interval = Math.floor(seconds / 31536000);
|
|
|
|
if (interval >= 1) {
|
|
|
|
return interval + "y";
|
|
|
|
}
|
|
|
|
interval = Math.floor(seconds / 604800);
|
|
|
|
if (interval >= 1) {
|
|
|
|
return interval + "w";
|
|
|
|
}
|
|
|
|
interval = Math.floor(seconds / 86400);
|
|
|
|
if (interval >= 1) {
|
|
|
|
return interval + "d";
|
|
|
|
}
|
|
|
|
interval = Math.floor(seconds / 3600);
|
|
|
|
if (interval >= 1) {
|
|
|
|
return interval + "h";
|
|
|
|
}
|
|
|
|
interval = Math.floor(seconds / 60);
|
|
|
|
if (interval >= 1) {
|
|
|
|
return interval + "m";
|
|
|
|
}
|
|
|
|
return Math.floor(seconds) + "s";
|
|
|
|
},
|
|
|
|
|
|
|
|
mentionUrl(status) {
|
|
|
|
let username = status.account.username;
|
|
|
|
let id = status.id;
|
|
|
|
return '/p/' + username + '/' + id;
|
2019-04-23 03:50:06 +00:00
|
|
|
}
|
2019-04-22 05:07:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|