summaryrefslogtreecommitdiff
path: root/src/client/components/notes.vue
blob: 0fa02681fa6ffb65c21d7a5cdf23f1a19f48974b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<template>
<div class="mk-notes" v-size="[{ max: 500 }]">
	<div class="empty" v-if="empty">{{ $t('noNotes') }}</div>

	<mk-error v-if="error" @retry="init()"/>

	<x-list ref="notes" class="notes" :items="notes" v-slot="{ item: note, i }">
		<x-note :note="note" :detail="detail" :key="note.id"/>
	</x-list>

	<footer v-if="more">
		<button @click="fetchMore()" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" class="_buttonPrimary">
			<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
			<template v-if="moreFetching"><fa :icon="faSpinner" pulse fixed-width/></template>
		</button>
	</footer>
</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 XNote from './note.vue';
import XList from './date-separated-list.vue';
import getUserName from '../../misc/get-user-name';
import getNoteSummary from '../../misc/get-note-summary';

export default Vue.extend({
	i18n,

	components: {
		XNote, XList
	},

	mixins: [
		paging({
			onPrepend: (self, note) => {
				// タブが非表示なら通知
				if (document.hidden) {
					if ('Notification' in window && Notification.permission === 'granted') {
						new Notification(getUserName(note.user), {
							body: getNoteSummary(note),
							icon: note.user.avatarUrl,
							tag: 'newNote'
						});
					}
				}
			},

			before: (self) => {
				self.$emit('before');
			},

			after: (self, e) => {
				self.$emit('after', e);
			}
		}),
	],

	props: {
		pagination: {
			required: true
		},

		detail: {
			type: Boolean,
			required: false,
			default: false
		},

		extract: {
			required: false
		}
	},

	data() {
		return {
			faSpinner
		};
	},

	computed: {
		notes(): any[] {
			return this.extract ? this.extract(this.items) : this.items;
		},
	},

	methods: {
		focus() {
			this.$refs.notes.focus();
		}
	}
});
</script>

<style lang="scss" scoped>
.mk-notes {
	> .empty {
		margin: 0 auto;
		padding: 32px;
		text-align: center;
		background: rgba(0, 0, 0, 0.3);
		color: #fff;
		-webkit-backdrop-filter: blur(16px);
		backdrop-filter: blur(16px);
		border-radius: 6px;
	}

	> .notes {
		> ::v-deep * {
			margin-bottom: var(--marginFull);
		}
	}

	&.max-width_500px {
		> .notes {
			> ::v-deep * {
				margin-bottom: var(--marginHalf);
			}
		}
	}

	> footer {
		text-align: center;

		&:empty {
			display: none;
		}

		> button {
			margin: 0;
			padding: 16px;
			width: 100%;
			border-radius: var(--radius);

			&:disabled {
				opacity: 0.7;
			}
		}
	}
}
</style>