Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Basics (retired) Designing Data Flow Communicating Events

ReferenceError: delat is not defined?

Hi there i tried to follow the video instruction but i keep getting this error "ReferenceError: delat is not defined" could it be i'm missing something , please check my code below.

thank you. var PLAYERS = [ { name: "Jim Hoskins", score: 31, id: 1, }, { name: "Andrew Chalkley", score: 35, id: 2, }, { name: "Alena Holligan", score: 42, id: 3, }, ];

function Header(props) { return ( <div className="header"> <Stats players={props.players}/> <h1>{props.title}</h1> </div> ); }

function Stats(props){ var totalPlayers= props.players.length; return ( <table className="stats"> <tbody> <tr> <td>Players: </td> <td>{totalPlayers} </td> </tr> <tr> <td>Total Points: </td> <td>{totalPlayers} </td> </tr> </tbody> </table> ); }

Stats.propTypes={ players: React.PropTypes.array.isRequired, }

Header.propTypes = { players: React.PropTypes.array.isRequired, title: React.PropTypes.string.isRequired, };

function Counter(props){ return ( <div className="counter"> <button className="counter-action decrement" onClick={function(){props.onChange(-1);}}> - </button> <div className="counter-score"> {props.score} </div> <button className="counter-action increment" onClick={function(){props.onChange(1);}}> + </button> </div> ); }

Counter.propTypes={ score: React.PropTypes.number.isRequired, onChange: React.PropTypes.func.isRequired, }

function Player(props) { return ( <div className="player"> <div className="player-name"> {props.name} </div> <div className="player-score"> <Counter score={props.score} onChange={props.onScoreChange}/> </div> </div> ); }

Player.propTypes = { name: React.PropTypes.string.isRequired, score: React.PropTypes.number.isRequired, onScoreChange: React.PropTypes.func.isRequired, };

var Application = React.createClass({ propTypes: { title: React.PropTypes.string, initialPlayers: React.PropTypes.arrayOf(React.PropTypes.shape({ name: React.PropTypes.string.isRequired, score: React.PropTypes.number.isRequired, id: React.PropTypes.number.isRequired, })).isRequired, },

getDefaultProps: function () { return{ title: "Scoreboard", }; }, getInitialState: function(){ return{ players: this.props.initialPlayers, }; }, onScoreChange: function(index, delta){ console.log('onScoreChange', index, delta); this.state.players[index].score += delta; this.setState(this.state); }, render: function(){ return ( <div className="scoreboard"> <Header title={this.props.title} players={this.state.players}/>

      <div className="players">
        {this.state.players.map(function(player, index) {
          return (
          <Player 
          onScoreChange={function(delta){this.onScoreChange(index, delat)}.bind(this)}
          name={player.name}
          score={player.score} 
          key={player.id} />
          );
        }.bind(this))}
      </div>
    </div>
  );
}

});

ReactDOM.render(<Application initialPlayers={PLAYERS}/>, document.getElementById('container'));

1 Answer

Victor Cuc
Victor Cuc
7,281 Points

You're writing 'delat' instead of 'delta'.

Also, use the markdown sheet when posting code snippets. Nobody can understand anything from that unformatted mess.