mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
3b5ed813f5
* Use a `<button>` for search * Fix search button styles to match preexisting styling * Remove additional native button properties. * Invoke search button on click or keyboard. * Reorganize search button DOM hierarchy * Restore focus to the search button when exiting the search overlay * Run prettier on Search.tsx
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
import style from "./styles/search.scss"
|
|
// @ts-ignore
|
|
import script from "./scripts/search.inline"
|
|
import { classNames } from "../util/lang"
|
|
import { i18n } from "../i18n"
|
|
|
|
export interface SearchOptions {
|
|
enablePreview: boolean
|
|
}
|
|
|
|
const defaultOptions: SearchOptions = {
|
|
enablePreview: true,
|
|
}
|
|
|
|
export default ((userOpts?: Partial<SearchOptions>) => {
|
|
const Search: QuartzComponent = ({ displayClass, cfg }: QuartzComponentProps) => {
|
|
const opts = { ...defaultOptions, ...userOpts }
|
|
const searchPlaceholder = i18n(cfg.locale).components.search.searchBarPlaceholder
|
|
return (
|
|
<div class={classNames(displayClass, "search")}>
|
|
<button class="search-button" id="search-button">
|
|
<p>{i18n(cfg.locale).components.search.title}</p>
|
|
<svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.9 19.7">
|
|
<title>Search</title>
|
|
<g class="search-path" fill="none">
|
|
<path stroke-linecap="square" d="M18.5 18.3l-5.4-5.4" />
|
|
<circle cx="8" cy="8" r="7" />
|
|
</g>
|
|
</svg>
|
|
</button>
|
|
<div id="search-container">
|
|
<div id="search-space">
|
|
<input
|
|
autocomplete="off"
|
|
id="search-bar"
|
|
name="search"
|
|
type="text"
|
|
aria-label={searchPlaceholder}
|
|
placeholder={searchPlaceholder}
|
|
/>
|
|
<div id="search-layout" data-preview={opts.enablePreview}></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
Search.afterDOMLoaded = script
|
|
Search.css = style
|
|
|
|
return Search
|
|
}) satisfies QuartzComponentConstructor
|