Git Product home page Git Product logo

docusaurus-search-local's Introduction

@easyops-cn/docusaurus-search-local

Npm Version CI Status Coverage Status

An offline/local search plugin/theme for Docusaurus v2, which supports multiple languages, especially optimized for language of zh.

Originally forked from cmfcmf/docusaurus-search-local.

Then later fully rewritten with TypeScript ๐Ÿ’ช, styles polished ๐Ÿ’…, language of Chinese supported ๐Ÿ‡จ๐Ÿ‡ณ, and tests covered โœ….

Live Demo

https://easyops-cn.github.io/docusaurus-search-local/

Screen Shots

Screen Shot EN

Screen Shot ZH

Installation

npm install --save @easyops-cn/docusaurus-search-local
# or
yarn add @easyops-cn/docusaurus-search-local

Usage

Add @easyops-cn/docusaurus-search-local into your docusaurus themes.

// In your `docusaurus.config.js`:
module.exports = {
  // ... Your other configurations.
  themes: [
    // ... Your other themes.
    [
      require.resolve("@easyops-cn/docusaurus-search-local"),
      /** @type {import("@easyops-cn/docusaurus-search-local").PluginOptions} */
      ({
        // ... Your options.
        // `hashed` is recommended as long-term-cache of index file is possible.
        hashed: true,
        // For Docs using Chinese, The `language` is recommended to set to:
        // ```
        // language: ["en", "zh"],
        // ```
      }),
    ],
  ],
};

Notice: We present this as a theme instead of plugin now, see this comment.

Theme Options

Name Type Default Description
indexDocs boolean true Whether to index docs.
indexBlog boolean true Whether to index blog.
indexPages boolean false Whether to index pages.
docsRouteBasePath string | string[] "/docs" Base route path(s) of docs. Slash at beginning is not required. Note: for docs-only mode, this needs to be the same as routeBasePath in your @docusaurus/preset-classic config e.g., "/".
blogRouteBasePath string | string[] "/blog" Base route path(s) of blog. Slash at beginning is not required.
language string | string[] "en" All lunr-languages supported languages, + zh ๐Ÿ”ฅ.
hashed boolean | "filename" | "query" false Whether to add a hashed query when fetching index (based on the content hash of all indexed *.md in docsDir and blogDir if applicable). Setting to "filename" will save hash in filename instead of query.
docsDir string | string[] "docs" The dir(s) of docs to get the content hash, it's relative to the dir of your project.
blogDir string | string[] "blog" Just like the docsDir but applied to blog.
removeDefaultStopWordFilter boolean false Sometimes people (E.g., us) want to keep the English stop words as indexed, since they maybe are relevant in programming docs.
removeDefaultStemmer boolean false Enable this if you want to be able to search for any partial word at the cost of search performance.
highlightSearchTermsOnTargetPage boolean false Highlight search terms on target page.
searchResultLimits number 8 Limit the search results.
searchResultContextMaxLength number 50 Set the max length of characters of each search result to show.
explicitSearchResultPath boolean false Whether an explicit path to a heading should be presented on a suggestion template.
ignoreFiles string | RegExp | (string | RegExp)[] [] Set the match rules to ignore some routes. Put a string if you want an exact match, or put a regex if you want a partial match. Note: without the website base url.
ignoreCssSelectors string | string[] [] A list of css selectors to ignore when indexing each page.
searchBarShortcut boolean true Whether to enable keyboard shortcut to focus in search bar.
searchBarShortcutHint boolean true Whether to show keyboard shortcut hint in search bar. Disable it if you need to hide the hint while shortcut is still enabled.
searchBarPosition "auto" | "left" | "right" "auto" The side of the navbar the search bar should appear on. By default, it will try to autodetect based on your docusaurus config according to the docs.
docsPluginIdForPreferredVersion string When you're using multi-instance of docs, set the docs plugin id which you'd like to check the preferred version with, for the search index.
zhUserDict string Provide your custom dict for language of zh, see here
zhUserDictPath string Provide the file path to your custom dict for language of zh, E.g.: path.resolve("./src/zh-dict.txt")
searchContextByPaths string[] Provide an list of sub-paths as separate search context, E.g.: ["docs", "community", "legacy/resources"]. It will create multiple search indexes by these paths.
hideSearchBarWithNoSearchContext boolean false Whether to hide the search bar when no search context was matched. By default, if searchContextByPaths is set, pages which are not matched with it will be considered as with a search context of ROOT. By setting hideSearchBarWithNoSearchContext to false, these pages will be considered as with NO search context, and the search bar will be hidden.
useAllContextsWithNoSearchContext boolean false Whether to show results from all the contexts if no context is provided. This option should not be used with hideSearchBarWithNoSearchContext set to true as this would show results when there is no search context. This will duplicate indexes and might have a performance cost depending on the index sizes.

I18N

Since v0.25.0, we support docusaurus i18n system, and provided en and zh-CN translations out of the box.

For other languages, please follow the official tutorial about how to translate plugin data. And translate theme.SearchBar.* and theme.SearchPage.* in i18n/*/code.json.

Translations by options is dropped since v0.25.0.

See translation options for <0.25.0 To make this theme localized, pass a `translations` option which defaults to:
{
  "translations": {
    "search_placeholder": "Search",
    "see_all_results": "See all results",
    "no_results": "No results.",
    "search_results_for": "Search results for \"{{ keyword }}\"",
    "search_the_documentation": "Search the documentation",
    "count_documents_found": "{{ count }} document found",
    "count_documents_found_plural": "{{ count }} documents found",
    "no_documents_were_found": "No documents were found"
  }
}

Note that *_plural can be omitted if it is the same as singular.

Custom Styles

This theme is shipped with polished styles just like the Algolia Search on the Docusaurus v2 website. Feel free to override these css custom properties (css variables) below.

Var Default (light) Default (dark)
--search-local-modal-background #f5f6f7 var(--ifm-background-color)
--search-local-modal-shadow inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.5),
0 3px 8px 0 #555a64
inset 1px 1px 0 0 #2c2e40,
0 3px 8px 0 #000309
--search-local-modal-width 560px -
--search-local-modal-width-sm 340px -
--search-local-spacing 12px -
--search-local-hit-background #fff var(--ifm-color-emphasis-100)
--search-local-hit-shadow 0 1px 3px 0 #d4d9e1 none
--search-local-hit-color #444950 var(--ifm-font-color-base)
--search-local-hit-height 56px -
--search-local-highlight-color var(--ifm-color-primary) -
--search-local-muted-color #969faf var(--ifm-color-secondary-darkest)
--search-local-icon-stroke-width 1.4 -
--search-local-hit-active-color var(--ifm-color-white) -

E.g.:

:root {
  --search-local-modal-width: 480px;
  --search-local-highlight-color: #5468ff;
}

html[data-theme="dark"] {
  --search-local-highlight-color: #d23669;
}

Trouble Shooting

When building your docs project, Set the env DEBUG=search-local:* to enable debug logs.

# In your docs project:
DEBUG=search-local:* yarn build

In case some specific errors occurred:

  • Error: Cannot mix different versions of joi schemas:

    • Try using @easyops-cn/docusaurus-search-local >= v0.16.0 with Docusaurus >= v2.0.0-alpha.73
    • Try using @easyops-cn/docusaurus-search-local between v0.14.0 and v0.15.1 with Docusaurus between v2.0.0-alpha.68 and v2.0.0-alpha.72
    • Or try using @easyops-cn/docusaurus-search-local <= v0.13.1 with Docusaurus <= v2.0.0-alpha.66
  • Module not found: Error: Can't resolve '@docusaurus/useRouteContext':

    • Try using @easyops-cn/docusaurus-search-local >= v0.25.0 with Docusaurus >= v2.0.0-beta.18
    • Try using @easyops-cn/docusaurus-search-local < v0.25.0 with Docusaurus < v2.0.0-beta.18

Further Reading

Contributing

See contributing guide.

docusaurus-search-local's People

Contributors

aericson avatar brianler avatar chernodub avatar csantos1113 avatar cyriuz avatar easyops-eve avatar ezzak avatar f3n67u avatar github-actions[bot] avatar goregius avatar ksarlou avatar lzhang avatar namnguyenthanhwork avatar release-please[bot] avatar renovate-bot avatar renovate[bot] avatar saosangmo avatar tobiasbueschel avatar utybo avatar weareoutman avatar wfatec avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.