/* * SonarQube * Copyright (C) 2009-2018 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; import { debounce } from 'lodash'; import Select from '../../components/controls/Select'; import { translate, translateWithParameters } from '../../helpers/l10n'; interface Option { label: string; value: string; } interface Props { autofocus?: boolean; defaultOptions?: Option[]; minimumQueryLength?: number; onSearch: (query: string) => Promise; onSelect: (value: string) => void; renderOption?: (option: Object) => JSX.Element; resetOnBlur?: boolean; value?: string; } interface State { loading: boolean; options: Option[]; query: string; } export default class SearchSelect extends React.PureComponent { mounted: boolean; constructor(props: Props) { super(props); this.state = { loading: false, options: props.defaultOptions || [], query: '' }; this.handleSearch = debounce(this.handleSearch, 250); } componentDidMount() { this.mounted = true; } componentWillUnmount() { this.mounted = false; } get autofocus() { return this.props.autofocus !== undefined ? this.props.autofocus : true; } get minimumQueryLength() { return this.props.minimumQueryLength !== undefined ? this.props.minimumQueryLength : 2; } get resetOnBlur() { return this.props.resetOnBlur !== undefined ? this.props.resetOnBlur : true; } handleSearch = (query: string) => this.props.onSearch(query).then( options => { if (this.mounted) { this.setState({ loading: false, options }); } }, () => { if (this.mounted) { this.setState({ loading: false }); } } ); handleChange = (option: Option) => this.props.onSelect(option.value); handleInputChange = (query: string) => { // `onInputChange` is called with an empty string after a user selects a value // in this case we shouldn't reset `options`, because it also resets select value :( if (query.length >= this.minimumQueryLength) { this.setState({ loading: true, query }); this.handleSearch(query); } else { const options = (query.length === 0 && this.props.defaultOptions) || []; this.setState({ options, query }); } }; // disable internal filtering handleFilterOption = () => true; render() { return (