redoc/src/components/SearchBox/SearchBox.tsx
2022-08-10 14:30:54 +03:00

185 lines
4.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as React from 'react';
import type { IMenuItem, SearchResult } from '../../services/types';
import type { SearchStore } from '../../services/SearchStore';
import type { MarkerService } from '../../services/MarkerService';
import { MenuItem } from '../SideMenu/MenuItem';
import { OptionsContext } from '../OptionsProvider';
import { bind, debounce } from 'decko';
import { PerfectScrollbarWrap } from '../../common-elements/perfect-scrollbar';
import {
ClearIcon,
SearchIcon,
SearchInput,
SearchResultsBox,
SearchWrap,
} from './styled.elements';
import { l } from '../../services/Labels';
export interface SearchBoxProps {
search: SearchStore<string>;
marker: MarkerService;
getItemById: (id: string) => IMenuItem | undefined;
onActivate: (item: IMenuItem) => void;
className?: string;
}
export interface SearchBoxState {
results: SearchResult[];
noResults: boolean;
term: string;
activeItemIdx: number;
}
export class SearchBox extends React.PureComponent<SearchBoxProps, SearchBoxState> {
activeItemRef: MenuItem | null = null;
static contextType = OptionsContext;
constructor(props) {
super(props);
this.state = {
results: [],
noResults: false,
term: '',
activeItemIdx: -1,
};
}
clearResults(term: string) {
this.setState({
results: [],
noResults: false,
term,
});
this.props.marker.unmark();
}
clear = () => {
this.setState({
results: [],
noResults: false,
term: '',
activeItemIdx: -1,
});
this.props.marker.unmark();
};
handleKeyDown = (event: React.KeyboardEvent<HTMLInputElement>) => {
if (event.keyCode === 27) {
// ESQ
this.clear();
}
if (event.keyCode === 40) {
// Arrow down
this.setState({
activeItemIdx: Math.min(this.state.activeItemIdx + 1, this.state.results.length - 1),
});
event.preventDefault();
}
if (event.keyCode === 38) {
// Arrow up
this.setState({
activeItemIdx: Math.max(0, this.state.activeItemIdx - 1),
});
event.preventDefault();
}
if (event.keyCode === 13) {
// enter
const activeResult = this.state.results[this.state.activeItemIdx];
if (activeResult) {
const item = this.props.getItemById(activeResult.meta);
if (item) {
this.props.onActivate(item);
}
}
}
};
setResults(results: SearchResult[], term: string) {
this.setState({
results,
noResults: results.length === 0,
});
this.props.marker.mark(term);
}
@bind
@debounce(400)
searchCallback(searchTerm: string) {
this.props.search.search(searchTerm).then(res => {
this.setResults(res, searchTerm);
});
}
search = (event: React.ChangeEvent<HTMLInputElement>) => {
const { minCharacterLengthToInitSearch } = this.context;
const q = event.target.value;
if (q.length < minCharacterLengthToInitSearch) {
this.clearResults(q);
return;
}
this.setState(
{
term: q,
},
() => this.searchCallback(this.state.term),
);
};
render() {
const { activeItemIdx } = this.state;
const results = this.state.results
.filter(res => this.props.getItemById(res.meta))
.map(res => ({
item: this.props.getItemById(res.meta)!,
score: res.score,
}))
.sort((a, b) => b.score - a.score);
return (
<SearchWrap role="search">
{this.state.term && <ClearIcon onClick={this.clear}>×</ClearIcon>}
<SearchIcon />
<SearchInput
value={this.state.term}
onKeyDown={this.handleKeyDown}
placeholder="Search..."
aria-label="Search"
type="text"
onChange={this.search}
/>
{results.length > 0 && (
<PerfectScrollbarWrap
options={{
wheelPropagation: false,
}}
>
<SearchResultsBox data-role="search:results">
{results.map((res, idx) => (
<MenuItem
item={Object.create(res.item, {
active: {
value: idx === activeItemIdx,
},
})}
onActivate={this.props.onActivate}
withoutChildren={true}
key={res.item.id}
data-role="search:result"
/>
))}
</SearchResultsBox>
</PerfectScrollbarWrap>
)}
{this.state.term && this.state.noResults ? (
<SearchResultsBox data-role="search:results">{l('noResultsFound')}</SearchResultsBox>
) : null}
</SearchWrap>
);
}
}