2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-02-18 22:16:49 +01:00
|
|
|
<div class="mk-notifications" :class="{ page }">
|
|
|
|
<x-list class="notifications" :items="items" v-slot="{ item: notification }">
|
|
|
|
<x-notification :notification="notification" :with-time="true" :full="true" class="notification" :class="{ _panel: page }" :key="notification.id"/>
|
|
|
|
</x-list>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
<button class="more _button" v-if="more" @click="fetchMore" :disabled="moreFetching">
|
|
|
|
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
|
|
|
|
<template v-if="moreFetching"><fa :icon="faSpinner" pulse fixed-width/></template>
|
|
|
|
</button>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
<p class="empty" v-if="empty">{{ $t('noNotifications') }}</p>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
<mk-error v-if="error" @retry="init()"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faSpinner } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import i18n from '../i18n';
|
|
|
|
import paging from '../scripts/paging';
|
|
|
|
import XNotification from './notification.vue';
|
|
|
|
import XList from './date-separated-list.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
i18n,
|
|
|
|
|
|
|
|
components: {
|
|
|
|
XNotification,
|
|
|
|
XList,
|
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [
|
|
|
|
paging({}),
|
|
|
|
],
|
|
|
|
|
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
2020-02-18 22:16:49 +01:00
|
|
|
page: {
|
2020-01-29 20:37:25 +01:00
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
connection: null,
|
|
|
|
pagination: {
|
|
|
|
endpoint: 'i/notifications',
|
|
|
|
limit: 10,
|
|
|
|
params: () => ({
|
|
|
|
includeTypes: this.type ? [this.type] : undefined
|
|
|
|
})
|
|
|
|
},
|
|
|
|
faSpinner
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
type() {
|
|
|
|
this.reload();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
|
|
|
this.connection.on('notification', this.onNotification);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.dispose();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onNotification(notification) {
|
|
|
|
// TODO: ユーザーが画面を見てないと思われるとき(ブラウザやタブがアクティブじゃないなど)は送信しない
|
|
|
|
this.$root.stream.send('readNotification', {
|
|
|
|
id: notification.id
|
|
|
|
});
|
|
|
|
|
|
|
|
this.prepend(notification);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-notifications {
|
2020-02-18 22:16:49 +01:00
|
|
|
&.page {
|
|
|
|
> .notifications {
|
|
|
|
> ::v-deep * {
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
&:not(.page) {
|
2020-01-29 20:37:25 +01:00
|
|
|
> .notifications {
|
|
|
|
> ::v-deep * {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .notification {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: 6px;
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
}
|
2020-02-18 22:16:49 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
> .more {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 16px;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
> [data-icon] {
|
|
|
|
margin-right: 4px;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2020-02-18 22:16:49 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
> .empty {
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:16:49 +01:00
|
|
|
> .placeholder {
|
|
|
|
padding: 32px;
|
|
|
|
opacity: 0.3;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|