diff options
Diffstat (limited to 'src/client/pages/search.vue')
| -rw-r--r-- | src/client/pages/search.vue | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/client/pages/search.vue b/src/client/pages/search.vue deleted file mode 100644 index 8cf4d32a8f..0000000000 --- a/src/client/pages/search.vue +++ /dev/null @@ -1,53 +0,0 @@ -<template> -<div class="_section"> - <div class="_content"> - <XNotes ref="notes" :pagination="pagination" @before="before" @after="after"/> - </div> -</div> -</template> - -<script lang="ts"> -import { computed, defineComponent } from 'vue'; -import Progress from '@client/scripts/loading'; -import XNotes from '@client/components/notes.vue'; -import * as symbols from '@client/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: () => ({ - query: this.$route.query.q, - channelId: this.$route.query.channel, - }) - }, - }; - }, - - watch: { - $route() { - (this.$refs.notes as any).reload(); - } - }, - - methods: { - before() { - Progress.start(); - }, - - after() { - Progress.done(); - } - } -}); -</script> |