Skip to content

Commit 1f0292b

Browse files
authored
Rollup merge of rust-lang#126183 - Folyd:search-core, r=GuillaumeGomez,notriddle
Separate core search logic with search ui Currenty, the `search.js` mixed with UI/DOM manipulation codes and search logic codes, I propose to extract the search logic to a class for following benefits: - Clean code. Separation of DOM manipulation and search logic can lead better code maintainability and easy code testings. - Easy share the search logic for third party to utilize the search function, such as [Rust Search Extension](https://rust.extension.sh), https://query.rs. This PR added a new class called `DocSearch`, which mainly expose following methods: ```js class DocSearch { // Dependency inject searchIndex, rootPath and searchState constructor(rawSearchIndex, rootPath, searchState) { // build search index... } static parseQuery(userQuery) { } async execQuery(parsedQuery, filterCrates, currentCrate) { } } ```
2 parents 1fd0c71 + 1eb4cb4 commit 1f0292b

File tree

2 files changed

+3426
-3388
lines changed

2 files changed

+3426
-3388
lines changed

0 commit comments

Comments
 (0)