Newer
Older
<template>
<div class="container">
<slot name="header">
<PageHeader v-if="title" :document="{ title }" />
</slot>
v-model="query"
type="search"
:placeholder="searchPlaceholder || $t('search')"
input-class="rounded-full"
icon="search"
icon-class="text-2xl text-blue-100 dark:text-gray-600"
icon-wrapper-class="top-0.5"
/>
<slot name="search" />
</div>
<slot name="items" :items="computedResults">
<section v-if="computedResults.length" class="mt-8">
<transition-group name="list">
<nuxt-link
v-for="(item, index) of computedResults"
:id="
(index === 0 ||
computedResults[index - 1].firstLetter !==
item.firstLetter) &&
item.firstLetter
"
:key="item.path"
:to="item.path.replace(/^\/pages\//, '/')"
class="
block
cursor-pointer
dark-hover:bg-gray-700
hover:bg-gray-100
mb-2
p-2
rounded-lg
transition-colors
"
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
>
<slot name="item" :item="item">
<h1 class="text-xl" v-html="item.title" />
<div
class="font-light text-gray-600 dark:text-gray-400"
v-html="item.description"
/>
</slot>
</nuxt-link>
</transition-group>
</section>
</slot>
<SearchNoResult v-if="query.length && hasNoResult">
<slot name="noResult" :query="query">
<ul class="list-disc list-inside mt-3">
<li>
<nuxt-link
:to="`/recherche?q=${query}`"
class="hover:underline"
>
{{ $t('noResult.searchWholeSite', { query }) }}
</nuxt-link>
</li>
<li>
<a
:href="`https://forum.monnaie-libre.fr/search?q=${query}`"
class="hover:underline"
target="_blank"
rel="noopener noreferrer"
>
{{ $t('noResult.searchOnForum', { query }) }}
</a>
</li>
</ul>
</slot>
</SearchNoResult>
</div>
<aside class="sticky h-full top-24 ml-12 bottom-12">
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<slot
name="sidebar"
:query="query"
:computedResults="computedResults"
/>
</aside>
</div>
<slot name="footer" :query="query" :computedResults="computedResults" />
</div>
</template>
<script>
import { debounce, highlight } from '~/libs/helpers'
export default {
name: 'SearchContainer',
props: {
results: {
type: Array,
required: true,
},
title: {
type: String,
default: null,
},
searchPlaceholder: {
type: String,
default: null,
},
searchFunction: {
type: Function,
required: true,
},
getQueryUrl: {
type: Function,
default(q) {
return new URLSearchParams({
q,
})
},
},
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
},
data() {
return {
query: '',
searchResults: [],
hasNoResult: false,
}
},
computed: {
computedResults() {
return this.searchResults.map((item) => ({
...item,
firstLetter: item.title.replace(/^<mark>/, '')[0].toUpperCase(), // ! remove <mark> if title start by highlighten query
}))
},
},
watch: {
query: debounce(function () {
this.search()
}, 500),
},
mounted() {
this.searchResults = this.results
this.query = this.$route.query.q || ''
},
methods: {
async search(force) {
const query = this.query.trim()
if (query.length || force) {
const results = await this.searchFunction(this.query)
if (results.length) {
this.hasNoResult = false
this.searchResults = highlight(this.query, results)
} else {
this.hasNoResult = true
this.searchResults = []
}
} else {
this.searchResults = this.results
this.hasNoResult = false
}
// Replace url with query string
const queryUrl = this.getQueryUrl(query).toString()
this.$route.path + (queryUrl.length ? `?${queryUrl}` : '')
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
)
},
},
}
// @ManUtopiK: Test avec composition-api
// import {
// defineComponent,
// ref,
// useContext,
// useAsync,
// useFetch,
// onBeforeMount,
// watch,
// } from '@nuxtjs/composition-api'
// export default defineComponent({
// name: 'FaqPage',
// setup() {
// const { route, query, $content } = useContext()
// const query = ref(query.value.q)
// const results = useAsync(() => $content('faq').fetch())
// const documentFAQ = useAsync(() => $content('ui/faq').fetch())
// onBeforeMount(async () => {
// results.value = await $content('faq').search(query.value).fetch()
// })
// watch(query, async (val) => {
// val = val.trim()
// results.value = await $content('faq').search(val).fetch()
// const queryPath = val.length ? `?s=${encodeURIComponent(val)}` : ''
// history.pushState({}, null, route.value.path + queryPath)
// })
// console.log(documentFAQ.value)
// return { query, results, documentFAQ }
// },
// })
</script>