summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/search.vue
blob: 771d0b557e5ae566c236016704752e6282ffe09a (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
<template>
<div class="_section">
	<div class="_content">
		<XNotes ref="notes" :pagination="pagination"/>
	</div>
</div>
</template>

<script lang="ts">
import { computed, defineComponent } from 'vue';
import XNotes from '@/components/notes.vue';
import * as symbols from '@/symbols';

export default defineComponent({
	components: {
		XNotes
	},

	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: computed(() => this.$t('searchWith', { q: this.$route.query.q })),
				icon: 'fas fa-search',
			},
			pagination: {
				endpoint: 'notes/search',
				limit: 10,
				params: computed(() => ({
					query: this.$route.query.q,
					channelId: this.$route.query.channel,
				}))
			},
		};
	},
});
</script>