blob: 00154ba19bbcdf0a814d84c0db0d06d0cc0703e8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { FC, useEffect, useState } from 'react';
import { Dropdown, FormControl } from 'react-bootstrap';
interface IProps {
options;
value?;
onChange?;
placeholder?;
onSelect?;
}
const Select: FC<IProps> = ({
options = [],
value = '',
onChange,
placeholder = '',
onSelect,
}) => {
const [isFocus, setFocusState] = useState(false);
const [cursor, setCursor] = useState(0);
useEffect(() => {
setCursor(0);
}, [value]);
const handleKeyDown = (e) => {
const { keyCode } = e;
if (keyCode === 38 && cursor > 0) {
e.preventDefault();
setCursor(cursor - 1);
}
if (keyCode === 40 && cursor < options.length - 1) {
e.preventDefault();
setCursor(cursor + 1);
}
if (keyCode === 13 && cursor > -1 && cursor <= options.length - 1) {
const lang = options.filter((opt) =>
value ? opt.indexOf(value) === 0 : true,
)[cursor];
setFocusState(false);
onSelect(lang);
}
};
const result = options.filter((opt) =>
value ? opt.indexOf(value) === 0 : true,
);
return (
<div className="position-relative" onKeyDown={handleKeyDown}>
<FormControl
type="search"
value={value}
placeholder={placeholder}
onChange={(e) => {
setFocusState(true);
if (onChange instanceof Function) {
onChange(e);
}
}}
/>
{result.length > 0 && (
<Dropdown.Menu
show={value && isFocus}
className="border py-2 rounded w-100"
style={{ overflowY: 'auto', maxHeight: '250px' }}>
{result.map((opt, index) => {
return (
<Dropdown.Item
key={opt}
className={`${cursor === index ? 'active' : ''}`}
onClick={(e) => {
e.preventDefault();
setFocusState(false);
onSelect(opt);
}}>
{opt}
</Dropdown.Item>
);
})}
</Dropdown.Menu>
)}
</div>
);
};
export default Select;