2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-10-23 21:03:07 +02:00
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
2021-12-25 05:38:53 +01:00
|
|
|
<XNotes ref="notes" :pagination="pagination"/>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:21:43 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import XNotes from '@/components/notes.vue';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-01-12 18:21:43 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-12 18:21:43 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
query: string;
|
|
|
|
channel?: string;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-12 18:21:43 +01:00
|
|
|
const pagination = {
|
2022-01-12 18:26:10 +01:00
|
|
|
endpoint: 'notes/search' as const,
|
2022-01-12 18:21:43 +01: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 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|