summaryrefslogtreecommitdiffstats
path: root/src/components/routes/Unread.vue
blob: 254acfd6f6eada6a61e1ac277db66e3806005856 (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
<template>
	<ContentTemplate :items="unread()"
		:fetch-key="'unread'"
		:config="{ unreadFilter: false }"
		@load-more="fetchMore()">
		<template #header>
			{{ t('news', 'Unread Articles') }}
			<NcCounterBubble class="counter-bubble">
				{{ items.unreadCount }}
			</NcCounterBubble>
		</template>
	</ContentTemplate>
</template>

<script lang="ts">
import Vue from 'vue'
import { mapState } from 'vuex'

import NcCounterBubble from '@nextcloud/vue/dist/Components/NcCounterBubble.js'

import ContentTemplate from '../ContentTemplate.vue'

import { FeedItem } from '../../types/FeedItem'
import { ACTIONS, MUTATIONS } from '../../store'

type UnreadItemState = {
	// need cache so we aren't always removing items when they get read
	unreadCache?: FeedItem[]
}

export default Vue.extend({
	components: {
		ContentTemplate,
		NcCounterBubble,
	},
	data() {
		return {
			unreadCache: undefined,
		} as UnreadItemState
	},
	computed: {
		...mapState(['items']),
	},
	created() {
		this.$store.commit(MUTATIONS.SET_SELECTED_ITEM, { id: undefined })
		if (this.unread() === undefined) {
			this.$store.dispatch(ACTIONS.FETCH_UNREAD)
		}
	},
	methods: {
		unread() {
			if (!this.unreadCache) {
				if (this.$store.getters.unread.length > 0) {
					this.unreadCache = this.$store.getters.unread
				}
			} else if (this.$store.getters.unread.length > (this.unreadCache?.length)) {
				for (const item of this.$store.getters.unread) {
					if (this.unreadCache.find((unread: FeedItem) => unread.id === item.id) === undefined) {
						this.unreadCache.push(item)
					}
				}
			}

			return this.unreadCache
		},
		async fetchMore() {
			if (this.unreadCache && !this.$store.state.items.fetchingItems.unread) {
			  this.$store.dispatch(ACTIONS.FETCH_UNREAD)
			}
		},
	},
})
</script>

<style scoped>
	.counter-bubble {
		display: inline-block;
		vertical-align: sub;
		margin-left: 10px;
	}
</style>