mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04:00
95 lines
2 KiB
JavaScript
95 lines
2 KiB
JavaScript
import classNames from 'classnames';
|
|
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import styles from './SelectInput.css';
|
|
|
|
class SelectInput extends Component {
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onChange = (event) => {
|
|
this.props.onChange({
|
|
name: this.props.name,
|
|
value: event.target.value
|
|
});
|
|
};
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
className,
|
|
disabledClassName,
|
|
name,
|
|
value,
|
|
values,
|
|
isDisabled,
|
|
hasError,
|
|
hasWarning,
|
|
autoFocus,
|
|
onBlur
|
|
} = this.props;
|
|
|
|
return (
|
|
<select
|
|
className={classNames(
|
|
className,
|
|
hasError && styles.hasError,
|
|
hasWarning && styles.hasWarning,
|
|
isDisabled && disabledClassName
|
|
)}
|
|
disabled={isDisabled}
|
|
name={name}
|
|
value={value}
|
|
autoFocus={autoFocus}
|
|
onChange={this.onChange}
|
|
onBlur={onBlur}
|
|
>
|
|
{
|
|
values.map((option) => {
|
|
const {
|
|
key,
|
|
value: optionValue,
|
|
...otherOptionProps
|
|
} = option;
|
|
|
|
return (
|
|
<option
|
|
key={key}
|
|
value={key}
|
|
{...otherOptionProps}
|
|
>
|
|
{optionValue}
|
|
</option>
|
|
);
|
|
})
|
|
}
|
|
</select>
|
|
);
|
|
}
|
|
}
|
|
|
|
SelectInput.propTypes = {
|
|
className: PropTypes.string,
|
|
disabledClassName: PropTypes.string,
|
|
name: PropTypes.string.isRequired,
|
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
|
|
values: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
isDisabled: PropTypes.bool,
|
|
hasError: PropTypes.bool,
|
|
hasWarning: PropTypes.bool,
|
|
autoFocus: PropTypes.bool.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
onBlur: PropTypes.func
|
|
};
|
|
|
|
SelectInput.defaultProps = {
|
|
className: styles.select,
|
|
disabledClassName: styles.isDisabled,
|
|
isDisabled: false,
|
|
autoFocus: false
|
|
};
|
|
|
|
export default SelectInput;
|