У меня проблемы с кодом, но я не могу понять, в чем дело.
Я пытаюсь создать проект для одного компонента приложения, чтобы лучше понять, но я я не могу получить состояние heroes
.
Я бы хотел лучше понять Redux, и после этого проекта я разделю файлы, но мне было проще использовать одно приложение для начала.
Мой код
import React from 'react';
import './App.css';
import { createStore, applyMiddleware, compose, combineReducers } from 'redux';
import { Provider, connect } from 'react-redux';
import thunk from 'redux-thunk';
import PropTypes from 'prop-types';
const initialState = {
heroes: [
{id: 1, name: 'Superman'},
{id: 2, name: 'Batman'},
{id: 3, name: 'Robin'},
{id: 4, name: 'Spiderman'},
{id: 5, name: 'Thor'}
]
}
const GET_HEROES = 'GET_HEROES';
const getHeroes = () => {
return {
type: GET_HEROES,
text: 'Getting all the heroes'
}
}
const heroReducer = function(state = initialState, action) {
switch(action.type) {
case GET_HEROES:
console.log(state);
return { ...state }
default:
console.log(state);
return state
}
}
const rootReducer = combineReducers ({
hero: heroReducer
});
const store = createStore(rootReducer, initialState, applyMiddleware(thunk));
class App extends React.Component {
componentDidMount() {
getHeroes();
}
render() {
return (
<Provider store={store}>
<h1>Hello world</h1>
<ul>
{[1,2,3].map(item => (
<li>{item}</li>
))}
</ul>
</Provider>
);
};
}
App.propTypes = {
getHeroes: PropTypes.func.isRequired,
hero: PropTypes.object.isRequired
}
export default (App);