fix bug reference publication detail
This commit is contained in:
parent
1ce67d7e42
commit
f5ba0531c5
|
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"allow": [
|
||||||
|
"Bash(xargs grep -l \"useTypesenseApi\\\\|documentsApi\")",
|
||||||
|
"Bash(xargs grep -l \"multiSearch\\\\|Typesense\")",
|
||||||
|
"Bash(xargs grep -l \"multiSearch\")",
|
||||||
|
"Bash(cd d:\\\\\\\\proyectos\\\\\\\\search)",
|
||||||
|
"Bash(find d:\\\\\\\\proyectos\\\\\\\\search -name \"auto-imports.d.ts\" -o -name \".nuxt\" -type d)",
|
||||||
|
"Bash(find d:\\\\\\\\proyectos\\\\\\\\search\\\\\\\\bruno -type f)",
|
||||||
|
"Bash(grep -r \"useSearchUrlState\\\\|useDetailHistory\\\\|restoreScrollPosition\\\\|formatDate\\\\|formatLocation\" --include=\"*.ts\" d:\\\\\\\\proyectos\\\\\\\\search\\\\\\\\app -n)",
|
||||||
|
"Bash(grep \"^d.*\\\\\\\\.ts\")",
|
||||||
|
"Bash(find d:\\\\\\\\proyectos\\\\\\\\search -maxdepth 2 -type f \\\\\\( -name \"README*\" -o -name \"CLAUDE.md\" -o -name \".env*\" \\\\\\))"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref, watch, onMounted, onBeforeUnmount } from 'vue'
|
import { computed, ref, watch, onMounted, onBeforeUnmount } from 'vue'
|
||||||
import { breakpointsTailwind, useDebounce } from '@vueuse/core'
|
import { breakpointsTailwind, useDebounce } from '@vueuse/core'
|
||||||
import EstudiosTypensenseDetail from '~/components/estudiosTypensense/EstudiosTypensenseDetail.vue'
|
import PublicationDetail from '~/components/PublicationDetail.vue'
|
||||||
import { useSettingsStore } from '~/stores/settings'
|
import { useSettingsStore } from '~/stores/settings'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
|
|
@ -675,7 +675,7 @@ function metaLocation(meta: DocMeta | undefined): string {
|
||||||
</UDashboardPanel>
|
</UDashboardPanel>
|
||||||
|
|
||||||
<!-- Panel de detalle (escritorio) -->
|
<!-- Panel de detalle (escritorio) -->
|
||||||
<EstudiosTypensenseDetail
|
<PublicationDetail
|
||||||
v-if="selectedDocId && !isMobile"
|
v-if="selectedDocId && !isMobile"
|
||||||
:document="selectedDocument"
|
:document="selectedDocument"
|
||||||
:document-loading="documentLoading"
|
:document-loading="documentLoading"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
meta {
|
||||||
|
name: Listar todas las collections
|
||||||
|
type: http
|
||||||
|
seq: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
get {
|
||||||
|
url: {{baseUrl}}/collections
|
||||||
|
body: none
|
||||||
|
auth: none
|
||||||
|
}
|
||||||
|
|
||||||
|
headers {
|
||||||
|
X-TYPESENSE-API-KEY: {{adminApiKey}}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
meta {
|
||||||
|
name: activities_paragraphs
|
||||||
|
type: http
|
||||||
|
seq: 4
|
||||||
|
}
|
||||||
|
|
||||||
|
get {
|
||||||
|
url: {{baseUrl}}/collections/activities_paragraphs
|
||||||
|
body: none
|
||||||
|
auth: none
|
||||||
|
}
|
||||||
|
|
||||||
|
headers {
|
||||||
|
X-TYPESENSE-API-KEY: {{adminApiKey}}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
meta {
|
||||||
|
name: conferences_paragraphs
|
||||||
|
type: http
|
||||||
|
seq: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
get {
|
||||||
|
url: {{baseUrl}}/collections/conferences_paragraphs
|
||||||
|
body: none
|
||||||
|
auth: none
|
||||||
|
}
|
||||||
|
|
||||||
|
headers {
|
||||||
|
X-TYPESENSE-API-KEY: {{adminApiKey}}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
meta {
|
||||||
|
name: Collections
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"version": "1",
|
||||||
|
"name": "Typesense - LGCC Search",
|
||||||
|
"type": "collection",
|
||||||
|
"ignore": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
vars {
|
||||||
|
baseUrl: https://searchts.carpa.com
|
||||||
|
searchApiKey: 3KrmYlcirARCxG4AZPV5bnJgQD0qtoW0
|
||||||
|
adminApiKey: 3KrmYlcirARCxG4AZPV5bnJgQD0qtoW0
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue