1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from 'react';
6 import { IconButton, Paper, StyleRulesCallback, withStyles, WithStyles } from '@material-ui/core';
7 import SearchIcon from '@material-ui/icons/Search';
9 type CssRules = 'container' | 'input' | 'button';
11 const styles: StyleRulesCallback<CssRules> = theme => {
19 borderRadius: theme.spacing.unit / 4,
20 boxSizing: 'border-box',
21 padding: theme.spacing.unit,
22 paddingRight: theme.spacing.unit * 4,
27 top: theme.spacing.unit / 2,
28 right: theme.spacing.unit / 2,
29 width: theme.spacing.unit * 3,
30 height: theme.spacing.unit * 3
35 interface SearchBarDataProps {
39 interface SearchBarActionProps {
40 onSearch: (value: string) => any;
44 type SearchBarProps = SearchBarDataProps & SearchBarActionProps & WithStyles<CssRules>;
46 interface SearchBarState {
50 export const DEFAULT_SEARCH_DEBOUNCE = 1000;
52 export const SearchBar = withStyles(styles)(
53 class extends React.Component<SearchBarProps> {
54 state: SearchBarState = {
61 const {classes} = this.props;
62 return <Paper className={classes.container}>
63 <form onSubmit={this.handleSubmit}>
65 className={classes.input}
66 onChange={this.handleChange}
68 value={this.state.value}
70 <IconButton className={classes.button}>
78 this.setState({value: this.props.value});
81 componentWillReceiveProps(nextProps: SearchBarProps) {
82 if (nextProps.value !== this.props.value) {
83 this.setState({value: nextProps.value});
87 componentWillUnmount() {
88 clearTimeout(this.timeout);
91 handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
92 event.preventDefault();
93 clearTimeout(this.timeout);
94 this.props.onSearch(this.state.value);
97 handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
98 clearTimeout(this.timeout);
99 this.setState({value: event.target.value});
100 this.timeout = window.setTimeout(
101 () => this.props.onSearch(this.state.value),
102 this.props.debounce || DEFAULT_SEARCH_DEBOUNCE