Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NavigationCategoriesItem.vue « components « src - github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c40cd1aab13d5ff3852d32f721af77446629a1df (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
<template>
	<AppNavigationItem
		:title="title"
		icon="icon-files"
		class="app-navigation-noclose separator-below"
		:class="{ 'category-header': selectedCategory !== null }"
		:open.sync="open"
		:allow-collapse="true"
		@click.prevent.stop="onToggleCategories"
	>
		<template>
			<AppNavigationItem
				:title="t('notes', 'All notes')"
				icon="icon-recent"
				@click.prevent.stop="onSelectCategory(null)"
			>
				<AppNavigationCounter slot="counter">
					{{ numNotes }}
				</AppNavigationCounter>
			</AppNavigationItem>

			<AppNavigationItem v-for="category in categories"
				:key="category.name"
				:title="categoryTitle(category.name)"
				:icon="category.name === '' ? 'icon-emptyfolder' : 'icon-files'"
				@click.prevent.stop="onSelectCategory(category.name)"
			>
				<AppNavigationCounter slot="counter">
					{{ category.count }}
				</AppNavigationCounter>
			</AppNavigationItem>
		</template>
	</AppNavigationItem>
</template>

<script>
import {
	AppNavigationItem,
	AppNavigationCounter,
} from '@nextcloud/vue'
import NotesService from '../NotesService'
import store from '../store'

export default {
	name: 'NavigationCategoriesItem',

	components: {
		AppNavigationItem,
		AppNavigationCounter,
	},

	props: {
		selectedCategory: {
			type: String,
			default: null,
		},
	},

	data: function() {
		return {
			open: false,
		}
	},

	computed: {
		numNotes() {
			return store.getters.numNotes()
		},

		categories() {
			return NotesService.getCategories(1, true)
		},

		title() {
			return this.selectedCategory === null ? this.t('notes', 'Categories') : NotesService.categoryLabel(this.selectedCategory)
		},
	},

	methods: {
		categoryTitle(category) {
			return NotesService.categoryLabel(category)
		},

		onToggleCategories() {
			this.open = !this.open
		},

		onSelectCategory(category) {
			this.open = false
			this.$emit('category-selected', category)
		},
	},
}
</script>
<style scoped>
.separator-below {
	border-bottom: 1px solid var(--color-border);
}
</style>