2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-10-23 14:03:07 -05:00
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
2021-12-24 22:38:53 -06:00
|
|
|
<XNotes ref="notes" :pagination="pagination"/>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-12 11:21:43 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import XNotes from '@/components/notes.vue';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-01-12 11:21:43 -06:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-12 11:21:43 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
query: string;
|
|
|
|
channel?: string;
|
|
|
|
}>();
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-12 11:21:43 -06:00
|
|
|
const pagination = {
|
2022-01-12 11:26:10 -06:00
|
|
|
endpoint: 'notes/search' as const,
|
2022-01-12 11:21:43 -06:00
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
query: props.query,
|
|
|
|
channelId: props.channel,
|
|
|
|
}))
|
|
|
|
};
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: computed(() => ({
|
|
|
|
title: i18n.t('searchWith', { q: props.query }),
|
|
|
|
icon: 'fas fa-search',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
})),
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
</script>
|