blob: c3e87c0d0c4322b3094d55e96d3bd73b35c0c9bb (
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
|
<template>
<div>
<portal to="icon"><fa :icon="faSearch"/></portal>
<portal to="title">{{ $t('searchWith', { q: $route.query.q }) }}</portal>
<x-notes ref="notes" :pagination="pagination" @before="before" @after="after"/>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { faSearch } from '@fortawesome/free-solid-svg-icons';
import Progress from '../scripts/loading';
import XNotes from '../components/notes.vue';
export default Vue.extend({
metaInfo() {
return {
title: this.$t('searchWith', { q: this.$route.query.q }) as string
};
},
components: {
XNotes
},
data() {
return {
pagination: {
endpoint: 'notes/search',
limit: 10,
params: () => ({
query: this.$route.query.q,
})
},
faSearch
};
},
watch: {
$route() {
(this.$refs.notes as any).reload();
}
},
methods: {
before() {
Progress.start();
},
after() {
Progress.done();
}
}
});
</script>
|