Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React-Select - How to get text value of form before OnChange occurs?

So I am working on a search bar for a website of mine, and I am having a bit of trouble with one of the components I'm using, react-select. Below is some example code

const baseOptions = [
      { label: 'Users', options: 
      [
      ]
      },
      { label: 'Pages', options: 
      [
      ]
      },
      { label: 'Search Google Index', value: 'search_google_index', type: "google_index" },
      { label: 'Search Bing Index', value: 'search_bing_index', disabled: 'yes' },
    ]

  handleSearchChange = selectedOption => {
    this.setState({
      selectedOption,
    }, () => {
    console.log(`Option selected:`, this.state.selectedOption);
    switch (this.state.selectedOption.type) {
      case "user":
      window.location = "/@" + this.state.selectedOption.label
        break;
      case "google_index":
      console.log("Searching google index");

            /*Here is where I need to catch the value of react-select*/

        break;
      default:
        break;
    }

    });
  };

The issue

I am not sure how to fetch the value of what is typed into the box before the new value is selected.

The Goal

I am aiming to search google for the term typed into the field when a user selects "Search Google Index"

like image 538
pj1998 Avatar asked Sep 18 '25 15:09

pj1998


1 Answers

According to react-select, to get the value typed in, you can use onInputChange props as following:

  handleInputChange = (inputValue) => {
        //get the character entered by user here in inputValue
  };

In your component calling:

<Select
onInputChange={handleInputChange}

....

/>

Demo

Update:

Recommendation:

You should use react-select drop-down only to show the list of users not for search options. For search options you can have two buttons.

like image 52
Zain Ul Abideen Avatar answered Sep 21 '25 04:09

Zain Ul Abideen