2018-02-15 09:08:48 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-notifications">
|
2018-10-14 03:16:02 +02:00
|
|
|
<div class="placeholder" v-if="fetching">
|
2018-10-14 02:47:38 +02:00
|
|
|
<template v-for="i in 10">
|
|
|
|
<mk-note-skeleton :key="i"/>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
|
2018-06-22 11:03:08 +02:00
|
|
|
<!-- トランジションを有効にするとなぜかメモリリークする -->
|
2018-12-16 01:03:07 +01:00
|
|
|
<component :is="!$store.state.device.reduceMotion ? 'transition-group' : 'div'" name="mk-notifications" class="transition notifications" tag="div">
|
2018-02-15 09:08:48 +01:00
|
|
|
<template v-for="(notification, i) in _notifications">
|
|
|
|
<mk-notification :notification="notification" :key="notification.id"/>
|
2018-04-27 14:06:28 +02:00
|
|
|
<p class="date" :key="notification.id + '_date'" v-if="i != notifications.length - 1 && notification._date != _notifications[i + 1]._date">
|
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-02-15 09:08:48 +01:00
|
|
|
</p>
|
|
|
|
</template>
|
2018-09-15 20:46:53 +02:00
|
|
|
</component>
|
2018-04-27 14:06:28 +02:00
|
|
|
|
2018-02-22 09:57:14 +01:00
|
|
|
<button class="more" 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>
|
2018-11-08 19:44:35 +01:00
|
|
|
{{ fetchingMoreNotifications ? $t('@.loading') : $t('@.load-more') }}
|
2018-02-15 09:08:48 +01:00
|
|
|
</button>
|
2018-04-27 14:06:28 +02:00
|
|
|
|
2018-11-08 19:44:35 +01:00
|
|
|
<p class="empty" v-if="notifications.length == 0 && !fetching">{{ $t('empty') }}</p>
|
2018-02-15 09:08:48 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-10-07 04:06:17 +02:00
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('mobile/views/components/notifications.vue'),
|
2018-02-15 09:08:48 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
fetchingMoreNotifications: false,
|
|
|
|
notifications: [],
|
|
|
|
moreNotifications: false,
|
2018-10-07 04:06:17 +02:00
|
|
|
connection: null
|
2018-02-15 09:08:48 +01:00
|
|
|
};
|
|
|
|
},
|
2018-10-07 04:06:17 +02:00
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
computed: {
|
|
|
|
_notifications(): any[] {
|
|
|
|
return (this.notifications as any).map(notification => {
|
2018-03-29 07:48:47 +02:00
|
|
|
const date = new Date(notification.createdAt).getDate();
|
|
|
|
const month = new Date(notification.createdAt).getMonth() + 1;
|
2018-02-15 09:08:48 +01:00
|
|
|
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-02-15 09:08:48 +01:00
|
|
|
return notification;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2018-10-07 04:06:17 +02:00
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
mounted() {
|
2018-10-08 08:42:21 +02:00
|
|
|
window.addEventListener('scroll', this.onScroll, { passive: true });
|
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
2018-02-15 09:08:48 +01:00
|
|
|
|
|
|
|
this.connection.on('notification', this.onNotification);
|
|
|
|
|
|
|
|
const max = 10;
|
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('i/notifications', {
|
2018-02-15 09:08:48 +01:00
|
|
|
limit: max + 1
|
|
|
|
}).then(notifications => {
|
|
|
|
if (notifications.length == max + 1) {
|
|
|
|
this.moreNotifications = true;
|
|
|
|
notifications.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.notifications = notifications;
|
|
|
|
this.fetching = false;
|
2018-02-22 09:57:14 +01:00
|
|
|
this.$emit('fetched');
|
2018-02-15 09:08:48 +01:00
|
|
|
});
|
|
|
|
},
|
2018-10-07 04:06:17 +02:00
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
beforeDestroy() {
|
2018-10-08 08:42:21 +02:00
|
|
|
window.removeEventListener('scroll', this.onScroll);
|
2018-10-07 04:06:17 +02:00
|
|
|
this.connection.dispose();
|
2018-02-15 09:08:48 +01:00
|
|
|
},
|
2018-10-07 04:06:17 +02:00
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
methods: {
|
|
|
|
fetchMoreNotifications() {
|
2018-10-09 15:48:45 +02:00
|
|
|
if (this.fetchingMoreNotifications) return;
|
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
this.fetchingMoreNotifications = true;
|
|
|
|
|
|
|
|
const max = 30;
|
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('i/notifications', {
|
2018-02-15 09:08:48 +01:00
|
|
|
limit: max + 1,
|
2018-03-29 07:48:47 +02:00
|
|
|
untilId: this.notifications[this.notifications.length - 1].id
|
2018-02-15 09:08:48 +01:00
|
|
|
}).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-10-07 04:06:17 +02:00
|
|
|
|
2018-02-15 09:08:48 +01:00
|
|
|
onNotification(notification) {
|
|
|
|
// TODO: ユーザーが画面を見てないと思われるとき(ブラウザやタブがアクティブじゃないなど)は送信しない
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.stream.send('readNotification', {
|
2018-02-15 09:08:48 +01:00
|
|
|
id: notification.id
|
|
|
|
});
|
|
|
|
|
|
|
|
this.notifications.unshift(notification);
|
2018-10-08 08:42:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
onScroll() {
|
|
|
|
if (this.$store.state.settings.fetchOnScroll !== false) {
|
|
|
|
// 親要素が display none だったら弾く
|
|
|
|
// https://github.com/syuilo/misskey/issues/1569
|
|
|
|
// http://d.hatena.ne.jp/favril/20091105/1257403319
|
|
|
|
if (this.$el.offsetHeight == 0) return;
|
|
|
|
|
|
|
|
const current = window.scrollY + window.innerHeight;
|
|
|
|
if (current > document.body.offsetHeight - 8) this.fetchMoreNotifications();
|
|
|
|
}
|
2018-02-15 09:08:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 09:49:18 +02:00
|
|
|
.mk-notifications
|
2018-04-27 14:06:28 +02:00
|
|
|
.transition
|
|
|
|
.mk-notifications-enter
|
|
|
|
.mk-notifications-leave-to
|
|
|
|
opacity 0
|
|
|
|
transform translateY(-30px)
|
|
|
|
|
|
|
|
> *
|
|
|
|
transition transform .3s ease, opacity .3s ease
|
2018-02-15 09:08:48 +01:00
|
|
|
|
|
|
|
> .notifications
|
|
|
|
|
2018-04-27 19:29:17 +02:00
|
|
|
> .mk-notification:not(:last-child)
|
2018-12-30 06:00:57 +01:00
|
|
|
border-bottom solid var(--lineWidth) var(--faceDivider)
|
2018-02-15 09:08:48 +01:00
|
|
|
|
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
line-height 32px
|
|
|
|
text-align center
|
|
|
|
font-size 0.8em
|
2018-09-27 09:49:18 +02:00
|
|
|
color var(--dateDividerFg)
|
|
|
|
background var(--dateDividerBg)
|
2018-12-30 06:00:57 +01:00
|
|
|
border-bottom solid var(--lineWidth) var(--faceDivider)
|
2018-02-15 09:08:48 +01:00
|
|
|
|
|
|
|
span
|
|
|
|
margin 0 16px
|
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
[data-icon]
|
2018-02-15 09:08:48 +01:00
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> .more
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
padding 16px
|
2018-10-08 08:43:43 +02:00
|
|
|
color var(--text)
|
2018-12-30 06:00:57 +01:00
|
|
|
border-top solid var(--lineWidth) rgba(#000, 0.05)
|
2018-02-15 09:08:48 +01:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-02-15 09:08:48 +01:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .empty
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
2019-02-06 09:51:33 +01:00
|
|
|
color var(--text)
|
2018-02-15 09:08:48 +01:00
|
|
|
|
2018-10-14 03:16:02 +02:00
|
|
|
> .placeholder
|
2019-02-25 11:45:00 +01:00
|
|
|
padding 32px
|
2018-10-14 02:47:38 +02:00
|
|
|
opacity 0.3
|
2018-02-15 09:08:48 +01:00
|
|
|
|
|
|
|
</style>
|