Я пытаюсь написать веб-приложение React, но получил ошибку. Я не могу понять, почему это не работает. Когда пользователь входит в мое веб-приложение, я хочу сохранить его адрес электронной почты в магазине Redux.
типов. js
export const LOGIN = 'LOGIN';
export const DATA = 'DATA';
Здесь я определил тип своих действий
searchActions. js
import {LOGIN, DATA} from './types';
import axios from 'axios';
import store from '../store'
export const login = ()=> {
store.dispatch({
type: LOGIN
})
};
export const information = async(email) => {
store.dispatch({
type: DATA,
payload: email
})
}
Здесь написано, что мои действия должны делать по типу.
userReducer. js
import {LOGIN, DATA} from '../actions/types';
const initialState = {
isLogged: false,
email: '',
}
export default function(state = initialState, action){
switch(action.type){
case LOGIN:
return {
...state,
isLogged: true
};
case DATA:
return {
...state,
email: action.payload
};
default:
return state;
}
}
Это простая форма. Если ответ из базы данных будет положительным, я хочу сохранить его почту в магазине. Если я удаляю 41-ую строку, это работает хорошо. SignIn.jsx
import React, { Component } from 'react';
import { connect } from 'react-redux';
import {login, information} from '../actions/searchActions';
import './component.css'
import axios from 'axios';
const baseUrl = "http://localhost:3000";
class SignIn extends Component {
state = {
email:'',
password: '',
}
render() {
const handleChange = (e) => {
this.setState({[e.target.name]: e.target.value});
}
const handleSubmit = (e) => {
//aggiungere la validazione del form in una futura versione
e.preventDefault();
access();
}
const access = () => {
const url = baseUrl + '/router/sign-in';
axios.get(url, {
params: {
email: this.state.email,
password: this.state.password
}
})
.then(res=>{
if (res.data.status !== undefined) {
const data = res.data.status
console.log(JSON.stringify(data)) //users entrato
login();
this.props.history.push('/')
this.props.information(this.state.email) // HERE IS THE ERROR.
// if I delate this line it works
}
else {
alert(res.data.error)
}
})
.catch(error=>{
alert("Error server "+ error)
})
}
return (
<div className="firstly-square">
<div className="center-form">
<form action="" className="sign" onSubmit={handleSubmit}>
<div className="title-sign">
SignIn
</div>
<div className="signin-username">
<label htmlFor="email" className="signin-label">email</label>
<input type="text" name="email" className="signin-input" onChange={handleChange} value={this.state.email}/>
</div>
<div className="signin-password">
<label htmlFor="password" className="signin-label">password</label>
<input type="password" name="password" className="signin-input" onChange={handleChange}/>
</div>
<div className="signin-bottone">
<button type="submit" className="signin-button">Sumbit</button>
</div>
</form>
</div>
</div>
);
}
}
const mapStateToProps = state => ({
email : state.user.email
});
export default connect( mapStateToProps, { information })(SignIn);
Пожалуйста, помогите мне. Спасибо