/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./search-input.scss"; import React, { createRef } from "react"; import { observer } from "mobx-react"; import { cssNames, autoBind } from "../../utils"; import { Icon } from "../icon"; import type { InputProps } from "./input"; import { Input } from "./input"; import { withInjectables } from "@ogre-tools/injectable-react"; import isMacInjectable from "../../../common/vars/is-mac.injectable"; export interface SearchInputProps extends InputProps { compact?: boolean; // show only search-icon when not focused bindGlobalFocusHotkey?: boolean; showClearIcon?: boolean; onClear?(): void; } const defaultProps: Partial = { autoFocus: true, bindGlobalFocusHotkey: true, showClearIcon: true, placeholder: "Search...", }; interface Dependencies { isMac: boolean; } @observer class NonInjectedSearchInput extends React.Component { static defaultProps = defaultProps as object; private inputRef = createRef(); constructor(props: SearchInputProps & Dependencies) { super(props); autoBind(this); } componentDidMount() { if (!this.props.bindGlobalFocusHotkey) return; window.addEventListener("keydown", this.onGlobalKey); } componentWillUnmount() { window.removeEventListener("keydown", this.onGlobalKey); } onGlobalKey(evt: KeyboardEvent) { if (evt.key === "f" && (this.props.isMac ? evt.metaKey : evt.ctrlKey)) { this.inputRef.current?.focus(); } } onKeyDown(evt: React.KeyboardEvent) { this.props.onKeyDown?.(evt); if (evt.nativeEvent.code === "Escape") { this.clear(); evt.stopPropagation(); } } clear() { if (this.props.onClear) { this.props.onClear(); } else { this.inputRef.current?.setValue(""); } } render() { const { className, compact, onClear, showClearIcon, bindGlobalFocusHotkey, value, isMac, ...inputProps } = this.props; let rightIcon = ; if (showClearIcon && value) { rightIcon = ( ); } return ( ); } } export const SearchInput = withInjectables(NonInjectedSearchInput, { getProps: (di, props) => ({ ...props, isMac: di.inject(isMacInjectable), }), });