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