mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
202 lines
5.8 KiB
TypeScript
202 lines
5.8 KiB
TypeScript
/*
|
|
* Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
import { NEVER, Observable, ObservableInput, merge } from "rxjs"
|
|
import { filter, sample, take } from "rxjs/operators"
|
|
|
|
import { configuration } from "~/_"
|
|
import {
|
|
Keyboard,
|
|
getActiveElement,
|
|
getElements,
|
|
requestJSON,
|
|
setElementFocus,
|
|
setElementSelection,
|
|
setToggle
|
|
} from "~/browser"
|
|
import {
|
|
SearchIndex,
|
|
isSearchQueryMessage,
|
|
isSearchReadyMessage,
|
|
setupSearchWorker
|
|
} from "~/integrations"
|
|
|
|
import { Component, getComponentElement } from "../../_"
|
|
import { SearchQuery, mountSearchQuery } from "../query"
|
|
import { SearchResult, mountSearchResult } from "../result"
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Types
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Search
|
|
*/
|
|
export type Search =
|
|
| SearchQuery
|
|
| SearchResult
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Helper types
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Mount options
|
|
*/
|
|
interface MountOptions {
|
|
keyboard$: Observable<Keyboard> /* Keyboard observable */
|
|
}
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Helper functions
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Fetch search index
|
|
*
|
|
* @param url - Search index URL
|
|
*
|
|
* @returns Promise or observable
|
|
*/
|
|
function fetchSearchIndex(url: string): ObservableInput<SearchIndex> {
|
|
return __search?.index || requestJSON<SearchIndex>(url)
|
|
}
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Functions
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Mount search
|
|
*
|
|
* This function sets up the search functionality, including the underlying
|
|
* web worker and all keyboard bindings.
|
|
*
|
|
* @param el - Search element
|
|
* @param options - Options
|
|
*
|
|
* @returns Search component observable
|
|
*/
|
|
export function mountSearch(
|
|
el: HTMLElement, { keyboard$ }: MountOptions
|
|
): Observable<Component<Search>> {
|
|
if (location.protocol === "file:")
|
|
return NEVER
|
|
|
|
/* Set up search worker */
|
|
const config = configuration()
|
|
const worker = setupSearchWorker(config.search, fetchSearchIndex(
|
|
`${config.base}/search/search_index.json`
|
|
))
|
|
|
|
/* Retrieve nested components */
|
|
const query = getComponentElement("search-query", el)
|
|
const result = getComponentElement("search-result", el)
|
|
|
|
/* Re-emit query when search is ready */
|
|
const { tx$, rx$ } = worker
|
|
tx$
|
|
.pipe(
|
|
filter(isSearchQueryMessage),
|
|
sample(rx$.pipe(filter(isSearchReadyMessage))),
|
|
take(1)
|
|
)
|
|
.subscribe(tx$.next.bind(tx$))
|
|
|
|
/* Set up search keyboard handlers */
|
|
keyboard$
|
|
.pipe(
|
|
filter(({ mode }) => mode === "search")
|
|
)
|
|
.subscribe(key => {
|
|
const active = getActiveElement()
|
|
switch (key.type) {
|
|
|
|
/* Enter: prevent form submission */
|
|
case "Enter":
|
|
if (active === query)
|
|
key.claim()
|
|
break
|
|
|
|
/* Escape or Tab: close search */
|
|
case "Escape":
|
|
case "Tab":
|
|
setToggle("search", false)
|
|
setElementFocus(query, false)
|
|
break
|
|
|
|
/* Vertical arrows: select previous or next search result */
|
|
case "ArrowUp":
|
|
case "ArrowDown":
|
|
if (typeof active === "undefined") {
|
|
setElementFocus(query)
|
|
} else {
|
|
const els = [query, ...getElements(
|
|
":not(details) > [href], summary, details[open] [href]",
|
|
result
|
|
)]
|
|
const i = Math.max(0, (
|
|
Math.max(0, els.indexOf(active)) + els.length + (
|
|
key.type === "ArrowUp" ? -1 : +1
|
|
)
|
|
) % els.length)
|
|
setElementFocus(els[i])
|
|
}
|
|
|
|
/* Prevent scrolling of page */
|
|
key.claim()
|
|
break
|
|
|
|
/* All other keys: hand to search query */
|
|
default:
|
|
if (query !== getActiveElement())
|
|
setElementFocus(query)
|
|
}
|
|
})
|
|
|
|
/* Set up global keyboard handlers */
|
|
keyboard$
|
|
.pipe(
|
|
filter(({ mode }) => mode === "global"),
|
|
)
|
|
.subscribe(key => {
|
|
switch (key.type) {
|
|
|
|
/* Open search and select query */
|
|
case "f":
|
|
case "s":
|
|
case "/":
|
|
setElementFocus(query)
|
|
setElementSelection(query)
|
|
key.claim()
|
|
break
|
|
}
|
|
})
|
|
|
|
/* Create and return component */
|
|
const query$ = mountSearchQuery(query as HTMLInputElement, worker)
|
|
return merge(
|
|
query$,
|
|
mountSearchResult(result, worker, { query$ })
|
|
)
|
|
}
|