React onClick function fires on render

JavascriptReactjsButtonOnclickDom Events

Javascript Problem Overview


I pass 2 values to a child component:

  1. List of objects to display
  2. delete function.

I use a .map() function to display my list of objects(like in the example given in react tutorial page), but the button in that component fires the onClick function, on render(it should not fire on render time). My code looks like this:

module.exports = React.createClass({
    render: function(){
        var taskNodes = this.props.todoTasks.map(function(todo){
            return (
                <div>
                    {todo.task}
                    <button type="submit" onClick={this.props.removeTaskFunction(todo)}>Submit</button>
                </div>
            );
        }, this);
        return (
            <div className="todo-task-list">
                {taskNodes}
            </div>
        );
    }
});

My question is: why does onClick function fire on render and how to make it not to?

Javascript Solutions


Solution 1 - Javascript

Because you are calling that function instead of passing the function to onClick, change that line to this:

<button type="submit" onClick={() => { this.props.removeTaskFunction(todo) }}>Submit</button>

=> called Arrow Function, which was introduced in ES6, and will be supported on React 0.13.3 or upper.

Solution 2 - Javascript

Instead of calling the function, bind the value to the function:

this.props.removeTaskFunction.bind(this, todo)

MDN ref: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_objects/Function/bind

Solution 3 - Javascript

The value for your onClick attribute should be a function, not a function call.

<button type="submit" onClick={function(){removeTaskFunction(todo)}}>Submit</button>

Solution 4 - Javascript

The Problem lies in how you pass your function

At the moment you are not passing the function but Calling it instead:

<Button onClick={yourFunction()} />

You can Fix this in two ways:

<Button onClick={() => yourFunction(params)} />

Or if you dont have any params:

<Button onClick={yourFunction} />

Solution 5 - Javascript

JSX is used with ReactJS as it is very similar to HTML and it gives programmers feel of using HTML whereas it ultimately transpiles to a javascript file.

> Writing a for-loop and specifying function as > {this.props.removeTaskFunction(todo)} will execute the functions > whenever the loop is triggered .

> To stop this behaviour we need to return the function to onClick.

> The fat arrow function has a hidden return statement along with the bind > property. Thus it returns the function to OnClick as Javascript can > return functions too !!!!!

Use -

onClick={() => { this.props.removeTaskFunction(todo) }}

which means-

var onClick = function() {
  return this.props.removeTaskFunction(todo);
}.bind(this);

Solution 6 - Javascript

For those not using arrow functions but something simpler ... I encountered this when adding parentheses after my signOut function ...

replace this <a onClick={props.signOut()}>Log Out</a>

with this <a onClick={props.signOut}>Log Out</a> ... ! 

Solution 7 - Javascript

JSX will evaluate JavaScript expressions in curly braces

In this case, this.props.removeTaskFunction(todo) is invoked and the return value is assigned to onClick

What you have to provide for onClick is a function. To do this, you can wrap the value in an anonymous function.

export const samepleComponent = ({todoTasks, removeTaskFunction}) => {
    const taskNodes = todoTasks.map(todo => (
                <div>
                    {todo.task}
                    <button type="submit" onClick={() => removeTaskFunction(todo)}>Submit</button>
                </div>
            );
    return (
        <div className="todo-task-list">
            {taskNodes}
        </div>
        );
    }
});

Solution 8 - Javascript

you need to use an arrow function with onClick in order to prevent immediately invoke. so if your button looks like this :

<button onClick={yourfunctionname()} />

it must be like this :

<button onClick={() => yourfunctionname(params)} />

Solution 9 - Javascript

I had similar issue, my code was:

function RadioInput(props) {
    return (
    <div className="form-check form-check-inline">
        <input className="form-check-input" type="radio" name="inlineRadioOptions" id={props.id} onClick={props.onClick} value={props.label}></input>
        <label className="form-check-label" htmlFor={props.id}>{props.label}</label>
    </div>
    );
  }
class ScheduleType extends React.Component
{
    renderRadioInput(id,label)
    {
        id = "inlineRadio"+id;
        return(
            <RadioInput
                id = {id}
                label = {label}
                onClick = {this.props.onClick}
            />
        );

    }

Where it should be

onClick = {() => this.props.onClick()}

in RenderRadioInput

It fixed the issue for me.

Solution 10 - Javascript

It is possible to achieve this even in more readable way than:

<button onClick={() => somethingHere(param)}/>

const Comp = () => {
  const [triggered, setTriggered] = useState(false);

  const handleClick = (valueToSet) => () => {
    setTriggered(valueToSet);
  };

  return (
    <div>
      <button onClick={handleClick(true)}>Trigger</button>
      <div>{String(triggered)}</div>
    </div>
  );
};

That way it won't fire the state setter and won't cause too many re-renders compared to <button onClick={setTriggered(true)}/> which is okay if you don't have any params to pass to the function.

Solution 11 - Javascript

That's because you are calling the function directly instead of passing the function to onClick

If you have passed down onClick={onClickHandler()} then, the function onClickHandler() will be executed during the time of rendering too, the () instructs to execute the function as soon as it is rendered , which is not desired here , instead we use onClick={onClickHandler} , this will execute the onClickHandler only when the specified event occurs. But if we want to pass down a argument along with the function then we can make use of ES6 arrow function. For your Case :

<button type="submit" onClick={() => this.props.removeTaskFunction(todo)}>Submit</button>

Solution 12 - Javascript

Bit late here but here is the simple answer.

direct approach will trigger by itself due to JS DOM rendering

onClick={this.props.removeTaskFunction(todo)}

anonymous arrow function approach. it will trigger on click

onClick={()=>this.props.removeTaskFunction(todo)}

Solution 13 - Javascript

You are not passing the function as an argument you are calling it directly that why it launches on the render.

HOW TO FIX IT

there are two ways:

First

<Button onClick={() => { 
this.props.removeTaskFunction(todo);
}
}>click</Button>

OR

Just bind it

this.props.removeTaskFunction.bind(this,todo);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionStralosView Question on Stackoverflow
Solution 1 - JavascriptLong NguyenView Answer on Stackoverflow
Solution 2 - JavascriptPete TNTView Answer on Stackoverflow
Solution 3 - JavascriptBrian SwisherView Answer on Stackoverflow
Solution 4 - JavascriptSebastianView Answer on Stackoverflow
Solution 5 - JavascriptVishal BishtView Answer on Stackoverflow
Solution 6 - JavascriptolisteadmanView Answer on Stackoverflow
Solution 7 - Javascriptsudo bangbangView Answer on Stackoverflow
Solution 8 - JavascriptIheb SaadView Answer on Stackoverflow
Solution 9 - JavascriptSeyhak LyView Answer on Stackoverflow
Solution 10 - JavascriptNivView Answer on Stackoverflow
Solution 11 - Javascripti_priyanshuView Answer on Stackoverflow
Solution 12 - JavascriptMuhammad MuzamilView Answer on Stackoverflow
Solution 13 - JavascriptL3xpertView Answer on Stackoverflow