docusaurus-plugin-search-glean
v0.4.1
Published
A Docusaurus plugin for Glean modal search
Downloads
119
Maintainers
Readme
docusarus-plugin-search-glean
A Docusarus plugin to integrate Glean search into your Docusaurus site.
Description
This plugin utilizes Glean's JS SDK to enable both Glean search and AI App chat into your documentation. It is a drop-in replacement for the default Docusaurus search plugin.
Features
Glean Search
Enables you to integrate Glean's search into your Docusaurus site.
Glean Chat (AI App)
Enables you to integrate Glean's AI App chat into your Docusaurus site (requires setting up an AI App in Glean).
Installation
npm install docusaurus-plugin-search-glean
or
yarn add docusaurus-plugin-search-glean
Usage
Configuration in Glean
This plugin can be configured to use both Glean's search or chat features, or both.
If your documentation doesn't change often:
Use statically configured
search
andchat
configurations as options to the plugin. These options can be set in thedocusaurus.config.js
file. Forsearch
, you can set thefilters
option to filter the search results. Forchat
, you can set theapplicationId
option to identify the chat application.Any changes to the docusaurus site will be automatically picked up by Glean and the
search
content will be updated accordingly. Forchat
, changes to the site will not automatically update the knowledge sources for the Glean App - those changes must be made manually in Glean.Example:
module.exports = { // ... plugins: [ [ require.resolve("docusaurus-plugin-search-glean"), { searchOptions: { filters: [ { key: "app", value: "github" }, { key: "type", value: "page" }, { key: "repository", value: "<your repository name>" } ], }, chatOptions: { applicationId: "your-glean-app-id", }, }, ], ], };
In this configuration, the
search
andchat
features will be enabled, and the initial filters will be set to the values provided.If your documentation does change often:
Utilize Glean collections to dynamically configure the
search
andchat
configurations. While this approach is more complex, it ensures that thesearch
andchat
configurations are always up-to-date with the current state of your documentation.In order to achieve this, you will need to create a Glean collection for your documentation. You can do this by:
- Creating a new Glean collection in the Glean UI.
- Creating an automated collctions sync using GitHub Actions workflows and the Glean Collections Sync action. This action can be configured to sync a list of collection sync configs, the configuration used to produce these collections, to Glean. This will ensure that the collections are always up-to-date with the current state of your documentation.
Example:
docusaurus.config.js
:module.exports = { // ... plugins: [ [ require.resolve("docusaurus-plugin-search-glean"), { searchOptions: { filters: [ { key: "collection", value: "<collection name>" }, ], }, chatOptions: { applicationId: "your-glean-app-id", // The App's Knowledge Sources should be configured to use the collection }, }, ], ], };
glean-collections-sync.yml
:name: Sync Collections on: schedule: - cron: '0 0 * * *' # Runs every day at midnight UTC workflow_dispatch: # Allows for manual triggering jobs: sync_collections: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Sync collections uses: scalvert/glean-collections-sync@v1 with: glean-client-api-url: ${{ secrets.GLEAN_CLIENT_API_URL }} glean-client-api-token: ${{ secrets.GLEAN_CLIENT_API_TOKEN }} glean-user-email: ${{ secrets.GLEAN_USER_EMAIL }} collection-sync-configs: '[{"name": "<collection name>", "query": "<collection query>", "filters": "<collection filters>"}]'
Configuration in Docusaurus
Add this plugin to the plugins
array in docusaurus.config.js
.
module.exports = {
// ...
plugins: [require.resolve("docusaurus-plugin-search-glean"), {}],
// or, if you want to specify options:
// ...
plugins: [
[
require.resolve("docusaurus-plugin-search-glean"),
{
// Options
},
],
],
};
Options
| Property | Type | Description |
| --------------- | -------------------------------------- | ---------------------------------------------------------- |
| searchOptions
| Partial<ModalSearchOptions> \| false
| Options for search functionality. Pass false
to disable. |
| chatOptions
| Partial<ChatOptions> \| false
| Options for chat functionality. Pass false
to disable. |
| chatPagePath
| string
| Path to the chat page within the application. |
For more information on the search and chat options, refer to the Glean documentation.