2019-02-14 23:52:21 -06:00
|
|
|
<template>
|
|
|
|
<x-column>
|
2019-02-17 20:13:56 -06:00
|
|
|
<template #header>
|
2019-02-14 23:52:21 -06:00
|
|
|
<fa icon="search"/><span>{{ q }}</span>
|
2019-02-17 18:48:00 -06:00
|
|
|
</template>
|
2019-02-14 23:52:21 -06:00
|
|
|
|
|
|
|
<div>
|
2019-05-20 13:07:11 -05:00
|
|
|
<x-notes ref="timeline" :pagination="pagination" @inited="() => $emit('loaded')"/>
|
2019-02-14 23:52:21 -06:00
|
|
|
</div>
|
|
|
|
</x-column>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XColumn from './deck.column.vue';
|
|
|
|
import XNotes from './deck.notes.vue';
|
2019-04-24 17:46:39 -05:00
|
|
|
import { genSearchQuery } from '../../../common/scripts/gen-search-query';
|
2019-02-14 23:52:21 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
XNotes
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2019-05-20 13:07:11 -05:00
|
|
|
pagination: {
|
|
|
|
endpoint: 'notes/search',
|
|
|
|
limit: 20,
|
|
|
|
params: () => genSearchQuery(this, this.q)
|
|
|
|
}
|
2019-02-14 23:52:21 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
q(): string {
|
|
|
|
return this.$route.query.q;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
2019-02-17 18:17:55 -06:00
|
|
|
$route() {
|
|
|
|
this.$refs.timeline.reload();
|
2019-02-14 23:52:21 -06:00
|
|
|
}
|
2019-02-17 18:17:55 -06:00
|
|
|
},
|
2019-02-14 23:52:21 -06:00
|
|
|
});
|
|
|
|
</script>
|