2018-06-05 16:19:04 +02:00
|
|
|
<template>
|
|
|
|
<div class="oxynyeqmfvracxnglgulyqfgqxnxmehl">
|
2018-10-14 03:16:02 +02:00
|
|
|
<div class="placeholder" v-if="fetching">
|
|
|
|
<template v-for="i in 10">
|
|
|
|
<mk-note-skeleton :key="i"/>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
|
2018-06-20 15:28:08 +02:00
|
|
|
<!-- トランジションを有効にするとなぜかメモリリークする -->
|
2018-09-16 14:40:48 +02:00
|
|
|
<component :is="!$store.state.device.reduceMotion ? 'transition-group' : 'div'" name="mk-notifications" class="transition notifications">
|
2018-06-06 18:41:05 +02:00
|
|
|
<template v-for="(notification, i) in _notifications">
|
|
|
|
<x-notification class="notification" :notification="notification" :key="notification.id"/>
|
|
|
|
<p class="date" v-if="i != notifications.length - 1 && notification._date != _notifications[i + 1]._date" :key="notification.id + '-time'">
|
2018-11-05 17:40:11 +01:00
|
|
|
<span><fa icon="angle-up"/>{{ notification._datetext }}</span>
|
|
|
|
<span><fa icon="angle-down"/>{{ _notifications[i + 1]._datetext }}</span>
|
2018-06-06 18:41:05 +02:00
|
|
|
</p>
|
|
|
|
</template>
|
2018-09-15 20:46:53 +02:00
|
|
|
</component>
|
2018-06-05 16:19:04 +02:00
|
|
|
<button class="more" :class="{ fetching: fetchingMoreNotifications }" v-if="moreNotifications" @click="fetchMoreNotifications" :disabled="fetchingMoreNotifications">
|
2018-11-13 14:45:28 +01:00
|
|
|
<template v-if="fetchingMoreNotifications"><fa icon="spinner" pulse fixed-width/></template>{{ fetchingMoreNotifications ? this.$t('@.loading') : this.$t('@.load-more') }}
|
2018-06-05 16:19:04 +02:00
|
|
|
</button>
|
2018-11-08 19:44:35 +01:00
|
|
|
<p class="empty" v-if="notifications.length == 0 && !fetching">{{ $t('empty') }}</p>
|
2018-06-05 16:19:04 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../../i18n';
|
2018-06-06 18:41:05 +02:00
|
|
|
import XNotification from './deck.notification.vue';
|
2018-06-05 16:19:04 +02:00
|
|
|
|
2018-06-08 14:37:20 +02:00
|
|
|
const displayLimit = 20;
|
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n(),
|
2018-06-06 18:41:05 +02:00
|
|
|
components: {
|
|
|
|
XNotification
|
|
|
|
},
|
2018-06-08 14:37:20 +02:00
|
|
|
|
|
|
|
inject: ['column', 'isScrollTop', 'count'],
|
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
fetchingMoreNotifications: false,
|
|
|
|
notifications: [],
|
2018-06-08 14:37:20 +02:00
|
|
|
queue: [],
|
2018-06-05 16:19:04 +02:00
|
|
|
moreNotifications: false,
|
2018-10-07 04:06:17 +02:00
|
|
|
connection: null
|
2018-06-05 16:19:04 +02:00
|
|
|
};
|
|
|
|
},
|
2018-06-08 14:37:20 +02:00
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
computed: {
|
|
|
|
_notifications(): any[] {
|
|
|
|
return (this.notifications as any).map(notification => {
|
|
|
|
const date = new Date(notification.createdAt).getDate();
|
|
|
|
const month = new Date(notification.createdAt).getMonth() + 1;
|
|
|
|
notification._date = date;
|
2018-11-08 19:44:35 +01:00
|
|
|
notification._datetext = this.$t('@.month-and-day').replace('{month}', month.toString()).replace('{day}', date.toString());
|
2018-06-05 16:19:04 +02:00
|
|
|
return notification;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2018-06-08 14:37:20 +02:00
|
|
|
|
|
|
|
watch: {
|
|
|
|
queue(q) {
|
|
|
|
this.count(q.length);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
mounted() {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
2018-06-05 16:19:04 +02:00
|
|
|
|
|
|
|
this.connection.on('notification', this.onNotification);
|
|
|
|
|
2018-06-08 14:37:20 +02:00
|
|
|
this.column.$on('top', this.onTop);
|
|
|
|
this.column.$on('bottom', this.onBottom);
|
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
const max = 10;
|
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('i/notifications', {
|
2018-06-05 16:19:04 +02:00
|
|
|
limit: max + 1
|
|
|
|
}).then(notifications => {
|
|
|
|
if (notifications.length == max + 1) {
|
|
|
|
this.moreNotifications = true;
|
|
|
|
notifications.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.notifications = notifications;
|
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
},
|
2018-06-08 14:37:20 +02:00
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
beforeDestroy() {
|
2018-10-07 04:06:17 +02:00
|
|
|
this.connection.dispose();
|
2018-06-08 14:37:20 +02:00
|
|
|
|
|
|
|
this.column.$off('top', this.onTop);
|
|
|
|
this.column.$off('bottom', this.onBottom);
|
2018-06-05 16:19:04 +02:00
|
|
|
},
|
2018-06-08 14:37:20 +02:00
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
methods: {
|
|
|
|
fetchMoreNotifications() {
|
|
|
|
this.fetchingMoreNotifications = true;
|
|
|
|
|
2018-06-08 23:25:41 +02:00
|
|
|
const max = 20;
|
2018-06-05 16:19:04 +02:00
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('i/notifications', {
|
2018-06-05 16:19:04 +02:00
|
|
|
limit: max + 1,
|
|
|
|
untilId: this.notifications[this.notifications.length - 1].id
|
|
|
|
}).then(notifications => {
|
|
|
|
if (notifications.length == max + 1) {
|
|
|
|
this.moreNotifications = true;
|
|
|
|
notifications.pop();
|
|
|
|
} else {
|
|
|
|
this.moreNotifications = false;
|
|
|
|
}
|
|
|
|
this.notifications = this.notifications.concat(notifications);
|
|
|
|
this.fetchingMoreNotifications = false;
|
|
|
|
});
|
|
|
|
},
|
2018-06-08 14:37:20 +02:00
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
onNotification(notification) {
|
|
|
|
// TODO: ユーザーが画面を見てないと思われるとき(ブラウザやタブがアクティブじゃないなど)は送信しない
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.stream.send('readNotification', {
|
2018-06-05 16:19:04 +02:00
|
|
|
id: notification.id
|
|
|
|
});
|
|
|
|
|
2018-06-08 14:37:20 +02:00
|
|
|
this.prepend(notification);
|
|
|
|
},
|
|
|
|
|
|
|
|
prepend(notification) {
|
|
|
|
if (this.isScrollTop()) {
|
|
|
|
// Prepend the notification
|
|
|
|
this.notifications.unshift(notification);
|
|
|
|
|
|
|
|
// オーバーフローしたら古い通知は捨てる
|
|
|
|
if (this.notifications.length >= displayLimit) {
|
|
|
|
this.notifications = this.notifications.slice(0, displayLimit);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.queue.push(notification);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
releaseQueue() {
|
|
|
|
this.queue.forEach(n => this.prepend(n));
|
|
|
|
this.queue = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
onTop() {
|
|
|
|
this.releaseQueue();
|
|
|
|
},
|
|
|
|
|
|
|
|
onBottom() {
|
|
|
|
this.fetchMoreNotifications();
|
2018-06-05 16:19:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 12:59:19 +02:00
|
|
|
.oxynyeqmfvracxnglgulyqfgqxnxmehl
|
2018-06-05 16:19:04 +02:00
|
|
|
.transition
|
|
|
|
.mk-notifications-enter
|
|
|
|
.mk-notifications-leave-to
|
|
|
|
opacity 0
|
|
|
|
transform translateY(-30px)
|
|
|
|
|
|
|
|
> *
|
|
|
|
transition transform .3s ease, opacity .3s ease
|
|
|
|
|
2018-10-14 03:16:02 +02:00
|
|
|
> .placeholder
|
|
|
|
padding 16px
|
|
|
|
opacity 0.3
|
|
|
|
|
2018-06-05 16:19:04 +02:00
|
|
|
> .notifications
|
|
|
|
|
2018-06-06 18:41:05 +02:00
|
|
|
> .notification:not(:last-child)
|
2018-09-26 17:54:37 +02:00
|
|
|
border-bottom solid 1px var(--faceDivider)
|
2018-06-05 16:19:04 +02:00
|
|
|
|
2018-06-06 18:41:05 +02:00
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 0
|
2018-10-23 07:44:26 +02:00
|
|
|
line-height 28px
|
2018-06-06 18:41:05 +02:00
|
|
|
text-align center
|
2018-10-23 07:44:26 +02:00
|
|
|
font-size 12px
|
2018-09-27 09:49:18 +02:00
|
|
|
color var(--dateDividerFg)
|
|
|
|
background var(--dateDividerBg)
|
2018-09-26 17:54:37 +02:00
|
|
|
border-bottom solid 1px var(--faceDivider)
|
2018-06-05 16:19:04 +02:00
|
|
|
|
2018-06-06 18:41:05 +02:00
|
|
|
span
|
|
|
|
margin 0 16px
|
2018-06-05 16:19:04 +02:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
[data-icon]
|
2018-06-06 18:41:05 +02:00
|
|
|
margin-right 8px
|
2018-06-05 16:19:04 +02:00
|
|
|
|
|
|
|
> .more
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
padding 16px
|
|
|
|
color #555
|
|
|
|
border-top solid 1px rgba(#000, 0.05)
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background rgba(#000, 0.025)
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background rgba(#000, 0.05)
|
|
|
|
|
|
|
|
&.fetching
|
|
|
|
cursor wait
|
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-06-05 16:19:04 +02:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .empty
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
|
|
|
|
|
|
|
</style>
|