mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
284 lines
33 KiB
Markdown
284 lines
33 KiB
Markdown
|
[#]: subject: "Implement client-side search on your website with this JavaScript tool"
|
|||
|
[#]: via: "https://opensource.com/article/21/11/client-side-javascript-search-lunrjs"
|
|||
|
[#]: author: "Ayush Sharma https://opensource.com/users/ayushsharma"
|
|||
|
[#]: collector: "lujun9972"
|
|||
|
[#]: translator: " "
|
|||
|
[#]: reviewer: " "
|
|||
|
[#]: publisher: " "
|
|||
|
[#]: url: " "
|
|||
|
|
|||
|
Implement client-side search on your website with this JavaScript tool
|
|||
|
======
|
|||
|
Lunr.js is a great option for providing search functionality on a
|
|||
|
website or application.
|
|||
|
![magnifying glass for search on a blue background][1]
|
|||
|
|
|||
|
Search is a must-have for any website or application. A simple search widget can allow users to comb through your entire blog. Or allow customers to browse your inventory. Building a custom photo gallery? Add a search box. Website search functionality is available from a variety of third-party vendors. Or you can take the DIY approach and build the entire backend to answer search API calls.
|
|||
|
|
|||
|
[Lunr.js][2] works on the client-side through JavaScript. Instead of sending calls to a backend, Lunr looks up search terms in an index built on the client-side itself. This avoids expensive back-and-forth network calls between the browser and your server. There are plenty of tutorials online to showcase Lunr's website search functionality. But you can actually use Lunr.js to search any array of JavaScript objects.
|
|||
|
|
|||
|
In this how-to, I build a search index for the [top 100 books of all time][3]. After that, I show you how to pre-build the index for faster indexing. I'll also show you how to make the most of Lunr's search options. And finally, I'll show off [findmymastodon.com][4]—a real-world implementation of Lunr.
|
|||
|
|
|||
|
### Getting started with Lunr.js
|
|||
|
|
|||
|
Create a new HTML page called `lunr.html`. I use this file throughout this guide. At the top of `lunr.html`, call the main Lunr JS library.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
`<script src="https://unpkg.com/lunr/lunr.js"></script>`
|
|||
|
```
|
|||
|
|
|||
|
**Note:** You can find the [complete code here][5]
|
|||
|
|
|||
|
### Loading the dataset
|
|||
|
|
|||
|
Next, create a variable called `my_big_json`. This variable will contain the JSON-ified string of the main dataset. Define the variable in `lunr.html` within the `<script>` tags.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
`var my_big_json = '[{"author":"Chinua Achebe","country":"Nigeria","imageLink":"images/things-fall-apart.jpg","language":"English","link":"https://en.wikipedia.org/wiki/Things_Fall_Apart","pages":209,"title":"Things Fall Apart","year":1958},{"author":"Hans Christian Andersen","country":"Denmark","imageLink":"images/fairy-tales.jpg","language":"Danish","link":"https://en.wikipedia.org/wiki/Fairy_Tales_Told_for_Children._First_Collection.","pages":784,"title":"Fairy tales","year":1836},{"author":"Dante Alighieri","country":"Italy","imageLink":"images/the-divine-comedy.jpg","language":"Italian","link":"https://en.wikipedia.org/wiki/Divine_Comedy","pages":928,"title":"The Divine Comedy","year":1315},{"author":"Unknown","country":"Sumer and Akkadian Empire","imageLink":"images/the-epic-of-gilgamesh.jpg","language":"Akkadian","link":"https://en.wikipedia.org/wiki/Epic_of_Gilgamesh","pages":160,"title":"The Epic Of Gilgamesh","year":-1700},{"author":"Unknown","country":"Achaemenid Empire","imageLink":"images/the-book-of-job.jpg","language":"Hebrew","link":"https://en.wikipedia.org/wiki/Book_of_Job","pages":176,"title":"The Book Of Job","year":-600},{"author":"Unknown","country":"India/Iran/Iraq/Egypt/Tajikistan","imageLink":"images/one-thousand-and-one-nights.jpg","language":"Arabic","link":"https://en.wikipedia.org/wiki/One_Thousand_and_One_Nights","pages":288,"title":"One Thousand and One Nights","year":1200},{"author":"Unknown","country":"Iceland","imageLink":"images/njals-saga.jpg","language":"Old Norse","link":"https://en.wikipedia.org/wiki/Nj%C3%A1ls_saga","pages":384,"title":"Njál\u0027s Saga","year":1350},{"author":"Jane Austen","country":"United Kingdom","imageLink":"images/pride-and-prejudice.jpg","language":"English","link":"https://en.wikipedia.org/wiki/Pride_and_Prejudice","pages":226,"title":"Pride and Prejudice","year":1813},{"author":"Honoré de Balzac","country":"France","imageLink":"images/le-pere-goriot.jpg","language":"French","link":"https://en.wikipedia.org/wiki/Le_P%C3%A8re_Goriot","pages":443,"title":"Le Père Goriot","year":1835},{"author":"Samuel Beckett","country":"Republic of Ireland","imageLink":"images/molloy-malone-dies-the-unnamable.jpg","language":"French, English","link":"https://en.wikipedia.org/wiki/Molloy_(novel)","pages":256,"title":"Molloy, Malone Dies, The Unnamable, the trilogy","year":1952},{"author":"Giovanni Boccaccio","country":"Italy","imageLink":"images/the-decameron.jpg","language":"Italian","link":"https://en.wikipedia.org/wiki/The_Decameron","pages":1024,"title":"The Decameron","year":1351},{"author":"Jorge Luis Borges","country":"Argentina","imageLink":"images/ficciones.jpg","language":"Spanish","link":"https://en.wikipedia.org/wiki/Ficciones","pages":224,"title":"Ficciones","year":1965},{"author":"Emily Brontë","country":"United Kingdom","imageLink":"images/wuthering-heights.jpg","language":"English","link":"https://en.wikipedia.org/wiki/Wuthering_Heights","pages":342,"title":"Wuthering Heights","year":1847},{"author":"Albert Camus","country":"Algeria, French Empire","imageLink":"images/l-etranger.jpg","language":"French","link":"https://en.wikipedia.org/wiki/The_Stranger_(novel)","pages":185,"title":"The Stranger","year":1942},{"author":"Paul Celan","country":"Romania, France","imageLink":"images/poems-paul-celan.jpg","language":"German","link":"","pages":320,"title":"Poems","year":1952},{"author":"Louis-Ferdinand Céline","country":"France","imageLink":"images/voyage-au-bout-de-la-nuit.jpg","language":"French","link":"https://en.wikipedia.org/wiki/Journey_to_the_End_of_the_Night","pages":505,"title":"Journey to the End of the Night","year":1932},{"author":"Miguel de Cervantes","country":"Spain","imageLink":"images/don-quijote-de-la-mancha.jpg","language":"Spanish","link":"https://en.wikipedia.org/wiki/Don_Quixote","pages":1056,"title":"Don Quijote De La Mancha","year":1610},{"author":"Geoffrey Chaucer","country":"England","imageLink":"images/the-canterbury-tales.jpg","language":"English","link":"https://en.wikipedia.org/wiki/The_Canterbury_Tales","pages":544,"title":"The
|
|||
|
```
|
|||
|
|
|||
|
I need to parse this data as JSON so JavaScript can process it.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
my_big_json = JSON.parse(my_big_json);
|
|||
|
|
|||
|
for (var i = 0; i < my_big_json.length; i++) {
|
|||
|
|
|||
|
console.log(i + 1, " -> ", my_big_json[i]);
|
|||
|
}
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
To ensure that the loading process was successful, I'm iterating over the JSON dataset and printing each entry. You should see the following in your console log.
|
|||
|
|
|||
|
![Console log output][6]
|
|||
|
|
|||
|
(Ayush Sharma, [CC BY-SA 4.0][7])
|
|||
|
|
|||
|
#### Building the search index
|
|||
|
|
|||
|
Now I will build the search index in a variable called `idx` using the `lunr()` function. This step requires three things:
|
|||
|
|
|||
|
1. Lunr returns a document reference for every document that matches a search query. And I need to tell Lunr which field in the dataset should be the reference. Usually, this reference is a numeric ID unique to every document. Since the dataset does not contain such a field, I'll use the `link` field as the reference field.
|
|||
|
2. Lunr also requires a list of fields that should be part of the search index. For this example, I want to search on `author`, `title`, and `country`.
|
|||
|
3. Lastly, Lunr requires the dataset: The `my_big_json` variable.
|
|||
|
|
|||
|
|
|||
|
|
|||
|
I can now call the `lunr()` function to build the search index `idx`.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
var idx = lunr(function () {
|
|||
|
|
|||
|
this.ref('link')
|
|||
|
this.field('author')
|
|||
|
this.field('title')
|
|||
|
this.field('country')
|
|||
|
|
|||
|
my_big_json.forEach(function (doc) {
|
|||
|
this.add(doc)
|
|||
|
}, this)
|
|||
|
});
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
If there were no errors in your browser's console log, then the index build was successful. Next, I'll take it for a test drive.
|
|||
|
|
|||
|
### Looking for books in the dataset with Lunr
|
|||
|
|
|||
|
First, I want to see if there are any documents containing the word `adventures`:
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
results = idx.search("adventures");
|
|||
|
console.log('Results: ', results.length);
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
I should see the following in the console log:
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
`Results: 1`
|
|||
|
```
|
|||
|
|
|||
|
Alright. So there is one document that matches the search query `adventures`. But how do I display it?
|
|||
|
|
|||
|
As I mentioned before, Lunr returns the reference of the matching document. But not the document itself. Meaning if I print `results`, I'll see the following.
|
|||
|
|
|||
|
![Output from print results][8]
|
|||
|
|
|||
|
(Ayush Sharma, [CC BY-SA 4.0][7])
|
|||
|
|
|||
|
Here `results` contains an array of objects with a single element. And that element's `ref` field contains a value. This is because I used the `link` field as the reference. To show the full document, I need to work a bit harder.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
results = idx.search("adventures");
|
|||
|
console.log('Results: ', results.length);
|
|||
|
|
|||
|
var results_full = results.map(function (item) {
|
|||
|
return my_big_json.filter(function (value, index, arr) {
|
|||
|
return value.link == item.ref;
|
|||
|
})[0];
|
|||
|
});
|
|||
|
console.log(results_full);
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
In the above code, I'm iterating through the results using the `map()` function. I then find documents in `my_big_json` for all the references in the result set. So `results_full` contains the complete search results.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
`0: Object { author: "Mark Twain", country: "United States", imageLink: "images/the-adventures-of-huckleberry-finn.jpg", … }`
|
|||
|
```
|
|||
|
|
|||
|
Now, I repeat the search for the keyword `india`. The code is as follows.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
results = idx.search("india");
|
|||
|
console.log('Results: ', results.length);
|
|||
|
|
|||
|
var results_full = results.map(function (item) {
|
|||
|
return my_big_json.filter(function (value, index, arr) {
|
|||
|
return value.link == item.ref;
|
|||
|
})[0];
|
|||
|
});
|
|||
|
console.log(results_full);
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
And the results are:
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
Results: 4
|
|||
|
0: Object { author: "Kālidāsa", country: "India", imageLink: "images/the-recognition-of-shakuntala.jpg", … }
|
|||
|
1: Object { author: "Valmiki", country: "India", imageLink: "images/ramayana.jpg", … }
|
|||
|
2: Object { author: "Vyasa", country: "India", imageLink: "images/the-mahab-harata.jpg", … }
|
|||
|
3: Object { author: "Salman Rushdie", country: "United Kingdom, India", imageLink: "images/midnights-children.jpg", … }
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
And it's that simple! Adding search for any array of JSON objects only requires five easy steps:
|
|||
|
|
|||
|
1. Call `Lunr.js`.
|
|||
|
2. Identify the reference fields and the search fields.
|
|||
|
3. Build the search index by iterating over the dataset.
|
|||
|
4. Call the `search()` method to search the index and return the matching references.
|
|||
|
5. And finally, retrieve the documents for the matching references.
|
|||
|
|
|||
|
|
|||
|
|
|||
|
### Prebuilding Lunr.js's search index
|
|||
|
|
|||
|
You may have noticed that the search index takes some time to build on every page refresh. The time may be imperceptible right now. But it won't be when `lunr.html` is on a remote server. Lunr allows [pre-building the search index][9] to make the search more responsive.
|
|||
|
|
|||
|
There are two ways of pre-building the index. The first method is to serialize the index after building it. Since I've already created the index in the tutorial, I use this method.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
var serializedIdx = JSON.stringify(idx);
|
|||
|
console.log(serializedIdx);
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
I would then replace `my_big_json` with the serialized string. The index load command would also change.
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
`var my_big_json = lunr.Index.load(JSON.parse(serializedIdx));`
|
|||
|
```
|
|||
|
|
|||
|
The [second method][9] involves calling the above commands in the CLI. This method is great for running in a CI/CD pipeline. I'll talk about this method more later on.
|
|||
|
|
|||
|
### Lunr.js search tips and tricks
|
|||
|
|
|||
|
Web search engines like [DuckDuckGo][10] provide a way to prioritize search terms. For example, a `+` sign includes a search term, and a `-` sing excludes it.
|
|||
|
|
|||
|
Lunr provides similar features to prioritize search terms or search fields. A `+` includes a search term, and a `-` sign excludes it. The `~` symbol allows fuzzy matching. The `^` symbol allows weighting search terms. And the `:` symbol allows search for specific fields.
|
|||
|
|
|||
|
For example, to find the best books published in England but not by Shakespeare, the Lunr query is:
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
`results = idx.search("country:England -author:Shakespeare");`
|
|||
|
```
|
|||
|
|
|||
|
This gives me two results:
|
|||
|
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
0: {author: 'Geoffrey Chaucer', country: 'England', imageLink: 'images/the-canterbury-tales.jpg', language: 'English', link: '<https://en.wikipedia.org/wiki/The\_Canterbury\_Tales>', …}
|
|||
|
1: {author: 'Laurence Sterne', country: 'England', imageLink: 'images/the-life-and-opinions-of-tristram-shandy.jpg', language: 'English', link: '<https://en.wikipedia.org/wiki/The\_Life\_and\_Opinions\_of\_Tristram\_Shandy,\_Gentleman>', …}
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
### Lunr in action: findmymastodon.com!
|
|||
|
|
|||
|
[findmymastodon.com][4] helps users find, well, Mastodon instances. These instances often cater to specific languages, themes, and interests. And so, the website needed a search engine.
|
|||
|
|
|||
|
I started by first building the dataset using Python. The [dataset][11] contains metadata for thousands of Mastodon instances currently live. I then used [Node to create a serialized Lunr index][12] from the original JSON. This [Lunr index][13] gets then loaded as a static asset. Search executes against this index, and the Mastodon instances, if found, display on the search page. You can browse the [JavaScript source code here][14].
|
|||
|
|
|||
|
### Conclusion
|
|||
|
|
|||
|
Lunr can prove to be a useful ally in web development. It's especially great for static websites which don't rely on an active backend. Support for pre-built indices using a CLI is a huge performance bonus. This allows using CI/CD to fetch data from a remote backend and create the index. Meaning the backend no longer needs to remain active to serve search requests.
|
|||
|
|
|||
|
Client-side search is a new thing for me. I've been a DevOps/cloud guy for a long time, and I'm eager to find out how this can improve security and optimize costs. Web browsers are becoming more sophisticated every day. Letting them handle the heavy-lifting for search might grant performance improvements, improved user experiences, and lower cloud costs.
|
|||
|
|
|||
|
Thanks for reading this how-to, and I hope it sparked some creative ideas in your head. Happy coding.
|
|||
|
|
|||
|
* * *
|
|||
|
|
|||
|
_This article originally appeared on the [author's blog][15] and is republished with permission._
|
|||
|
|
|||
|
--------------------------------------------------------------------------------
|
|||
|
|
|||
|
via: https://opensource.com/article/21/11/client-side-javascript-search-lunrjs
|
|||
|
|
|||
|
作者:[Ayush Sharma][a]
|
|||
|
选题:[lujun9972][b]
|
|||
|
译者:[译者ID](https://github.com/译者ID)
|
|||
|
校对:[校对者ID](https://github.com/校对者ID)
|
|||
|
|
|||
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|||
|
|
|||
|
[a]: https://opensource.com/users/ayushsharma
|
|||
|
[b]: https://github.com/lujun9972
|
|||
|
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/markus-winkler-unsplash.jpg?itok=MNj-Xwo_ (magnifying glass for search on a blue background)
|
|||
|
[2]: https://lunrjs.com/
|
|||
|
[3]: https://raw.githubusercontent.com/benoitvallon/100-best-books/master/books.json
|
|||
|
[4]: https://findmymastodon.com
|
|||
|
[5]: https://gitlab.com/ayush-sharma/example-assets/-/blob/main/front-end/js/lunr-tutorial.html
|
|||
|
[6]: https://opensource.com/sites/default/files/uploads/console-log.png (Console log output)
|
|||
|
[7]: https://creativecommons.org/licenses/by-sa/4.0/
|
|||
|
[8]: https://opensource.com/sites/default/files/uploads/print-results.png (Output from print results)
|
|||
|
[9]: https://lunrjs.com/guides/index_prebuilding.html
|
|||
|
[10]: https://duckduckgo.com
|
|||
|
[11]: https://gitlab.com/ayush-sharma/find-my-mastodon/-/blob/master/data/data-raw.json
|
|||
|
[12]: https://gitlab.com/ayush-sharma/find-my-mastodon/-/blob/master/README.md#building-lunr-index
|
|||
|
[13]: https://gitlab.com/ayush-sharma/find-my-mastodon/-/blob/master/data/search-index.js
|
|||
|
[14]: https://gitlab.com/ayush-sharma/find-my-mastodon/-/blob/master/static/js/script-search.js
|
|||
|
[15]: https://ayushsharma.in/2021/11/using-lunr-js-to-create-client-side-website-search-index
|