All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty_res.scripts.components.Input.js Maven / Gradle / Ivy

There is a newer version: 3.6.0-RC1-bin-20240903-21a3d39-NIGHTLY
Show newest version
class Input extends Component {
  constructor(props) {
    super(props);

    this.inputRef = findRef(".filterableInput");
    this.onChangeFn = withEvent(this.inputRef, "input", this.onInputChange);
    this.onKeydownFn = withEvent(this.inputRef, "keydown", this.onKeydown);
  }

  onInputChange = ({ currentTarget: { value } }) => {
    setTimeout(this.props.onInputChange(value), 300);
  };

  onKeydown = (e) => {
    // if the user hits Escape while typing in the filter input,
    // clear the filter and un-focus the input
    if (e.keyCode == 27) {
      this.inputRef.value = '';
      this.onInputChange(e);
      setTimeout(() => this.inputRef.blur(), 1);
    }
  }

  componentWillUnmount() {
    if (this.onChangeFn) {
      this.onChangeFn();
      this.onKeydownFn();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy