Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how react programmatically focus input

I'm trying to implement a very simple use case, a UI feature, where:

  1. There is a label with some content in it
  2. If clicked, a text input replaces it with the content of label available
  3. User can edit the content
  4. When enter is pressed, the input hides and label is back with updated content

I could get finally all correct (in fact with a MongoBD backend, redux, etc.), and the only thing I couldn't ever do (paying a complete day in googling and reading S.O.F similar posts) was this:

When my text input appears, I can't transfer focus to it! First I tired this way:

<div className={((this.state.toggleWordEdit) ? '' : 'hidden')}> <input id={this.props.word._id} className="form-control"         ref="updateTheWord"          defaultValue={this.state.word}         onChange={this.handleChange}         onKeyPress={this.handleSubmit}         autoFocus={this.state.toggleWordEdit}/></div>     <div className={((this.state.toggleWordEdit) ? 'hidden' : '')}>       <h3 onClick={this.updateWord}>         {this.state.word}</h3>     </div> 

but autoFocus sure didn't work (I "guess" because the form is rendered, but in hidden state, making autoFocus useless).

Next I tried in my this.updateWor, many of suggestions I found on google and S.O.F.:

this.refs.updateTheWord.focus(); 

which together with similar suggestions all didn't work. Also I tried to fool React just to see if at all I can do something! I used real DOM:

    const x = document.getElementById(this.props.word._id);     x.focus(); 

and it didn't work either. One thing I even could not understand to put into word is a suggestion like this: having ref as a method (I "guess") I didn't even try it because I have multiples of these components and I need ref to further get value of, per component, and I couldn't imagine if my ref is not named, how I could get the value of!

So could you please give an idea, helping me to understand that in case I'm not using a Form (because I need a single input box replacing a label) how I could set its focus when it's CSS (Bootstrap) class is losing 'hidden' please?

like image 386
Arian1 Avatar asked Mar 31 '17 16:03

Arian1


People also ask

How do you set focus on input field?

To set focus to an HTML form element, the focus() method of JavaScript can be used. To do so, call this method on an object of the element that is to be focused, as shown in the example. Example 1: The focus() method is set to the input tag when user clicks on Focus button.

What is focus method in React?

The . focus() method tells the browser which element is being acted on, similar to . click() or an actual click. At least with React 16.9.


1 Answers

The way you have used refs is not the most preferred way or else its not the best practice anymore . try some thing like this

class MyClass extends React.Component {   constructor(props) {     super(props);     this.focus = this.focus.bind(this);   }    focus() {     this.textInput.current.focus();   }    render() {      return (       <div>         <input           type="text"           ref={(input) => { this.textInput = input; }} />         <input           type="button"           value="Set Focus"           onClick={this.focus}         />       </div>     );   } } 

Update
From React 16.3 upwards you can use the React.createRef() API

class MyClass extends React.Component {   constructor(props) {     super(props);     // create a ref to store the textInput DOM element     this.textInput = React.createRef();     this.focus = this.focus.bind(this);   }    focus() {     // Explicitly focus the text input using the raw DOM API     // Note: we're accessing "current" to get the DOM node     this.textInput.current.focus();   }    render() {     // tell React that we want to associate the <input> ref     // with the `textInput` that we created in the constructor     return (       <div>         <input           type="text"           ref={this.textInput} />         <input           type="button"           value="Set Focus"           onClick={this.focus}         />       </div>     );   } } 
like image 146
TRomesh Avatar answered Sep 22 '22 08:09

TRomesh