From 4e2aea8a5a414b3bcfac0168bea4f6afd032e8f5 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Aug 2024 21:12:45 +0000
Subject: [PATCH] chore(deps): bump @napi-rs/simple-git from 0.1.17 to 0.1.19 (#1376)
---
quartz/components/Search.tsx | 29 +++++++++++------------------
1 files changed, 11 insertions(+), 18 deletions(-)
diff --git a/quartz/components/Search.tsx b/quartz/components/Search.tsx
index 239bc03..8b97555 100644
--- a/quartz/components/Search.tsx
+++ b/quartz/components/Search.tsx
@@ -1,8 +1,9 @@
-import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
+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
@@ -13,29 +14,21 @@
}
export default ((userOpts?: Partial<SearchOptions>) => {
- function Search({ displayClass }: QuartzComponentProps) {
+ const Search: QuartzComponent = ({ displayClass, cfg }: QuartzComponentProps) => {
const opts = { ...defaultOptions, ...userOpts }
-
+ const searchPlaceholder = i18n(cfg.locale).components.search.searchBarPlaceholder
return (
<div class={classNames(displayClass, "search")}>
- <div id="search-icon">
- <p>Search</p>
- <div></div>
- <svg
- tabIndex={0}
- aria-labelledby="title desc"
- role="img"
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 19.9 19.7"
- >
- <title id="title">Search</title>
- <desc id="desc">Search</desc>
+ <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>
- </div>
+ </button>
<div id="search-container">
<div id="search-space">
<input
@@ -43,8 +36,8 @@
id="search-bar"
name="search"
type="text"
- aria-label="Search for something"
- placeholder="Search for something"
+ aria-label={searchPlaceholder}
+ placeholder={searchPlaceholder}
/>
<div id="search-layout" data-preview={opts.enablePreview}></div>
</div>
--
Gitblit v1.10.0