Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uncaught TypeError: _this2.props.selectBook is not a function

im a newbie for reactjs and was following a react basic course on udemy. I get the following error on my console log. Can anybody assist with me?.

bundle.js:21818 Uncaught TypeError: _this2.props.selectBook is not a function

Any help would be appreciated. Thanks.

containers/book-list.js

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { selectBook } from '../actions/index';
import { bindActionCreators } from 'redux';

class BookList extends Component {
    renderList() {
        return this.props.books.map((book) => {
            return (
                <li 
                    key={book.title} 
                    onClick={() => this.props.selectBook(book)} 
                    className="list-group-item">
                    {book.title}
                </li>
            );
        });
    }

    render() {
        return (
            <ul className="list-group col-sm-4">
                {this.renderList()}
            </ul>
        )
    }
}


function mapStateToProps(state) {
    return {
        books: state.books
    };
}

//Anythin returned from this function will end up as props
// on the BookList container
function mapDispatchToProps(dispatch) {
    // whenever selectBook is called, the result should be passed
    // to all of our reducers
    return bindActionCreators({ selectBook: selectBook }, dispatch);
}

// Promote BookList from a component to a container - it needs to know 
// about this new dispatch method, selectBook. Make it available
// as a prop.
export default connect(mapStateToProps)(BookList);

actions/index.js

export function selectBook(book) {
    console.log('A book has been selected:', book.title);
}

components/app.js

import React, { Component } from 'react';

import BookList from '../containers/book-list';

export default class App extends Component {
  render() {
    return (
      <div>
        <BookList />
      </div>
    );
  }
}
like image 447
Cody Avatar asked Jul 16 '17 21:07

Cody


3 Answers

Found the answer myself.

// didnt have included the mapDispatchToProps function call in below lines.
export default connect(mapStateToProps, mapDispatchToProps)(BookList);
like image 72
Cody Avatar answered Oct 12 '22 21:10

Cody


Use import selectBook from '../actions/index' instead of import { selectBook } from '../actions/index';

like image 23
Ashutosh Singh Rawat Avatar answered Oct 12 '22 21:10

Ashutosh Singh Rawat


For someone who already included the mapDispatchToProps function call, i.e. export default connect(mapStateToProps, mapDispatchToProps)(BookList);

Look through actions/index.js and see if you're using default export or not. If not you would require {} around while importing selectBook.

if (using default export) { 

    import selectBook from '../actions/index';
}
else {

    import { selectBook } from '../actions/index';
}

Cheers.

like image 33
Shivam Mutreja Avatar answered Oct 12 '22 20:10

Shivam Mutreja