Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
<template>
<div class="container">
<slot name="header">
<PageHeader v-if="title" :document="{ title }" />
</slot>
<div class="flex justify-between mb-8">
<div class="w-full">
<div class="flex">
<TInputIcon
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"
class="flex-1"
focus
/>
<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"
>
<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 z-20">
77
78
79
80
81
82
83
84
85
86
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
121
122
123
124
125
126
127
128
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<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,
},
},
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()
let queryUrl = null
if (query.length || force) {
queryUrl = encodeURIComponent(query)
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
}
history.replaceState(
{},
null,
this.$route.path + (queryUrl ? `?q=${queryUrl}` : '')
)
},
},
}
// @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>