Как показать сообщение об ошибке на реагировать родной с использованием приставки - PullRequest
0 голосов
/ 30 октября 2019

Я использую Redux в своем приложении. Моя проблема заключается в том, как показать сообщение об ошибке, которое появляется в терминале для рендеринга.

Я пытался использовать {this.props.error}, и ничего не будет отображаться

Действия

import * as actionTypes from "./Types";

export const setErrors = errors => ({
  type: actionTypes.SET_ERRORS,
  payload: errors
});

export const resetError = () => {
  return async dispatch => {
    dispatch({
      type: actionTypes.RESET_ERROR,
      payload: []
    });
  };
};

Редукторы

import * as actionTypes from "../actions/Types";
import { SET_ERRORS, RESET_ERROR } from "../actions/Types";

const initialState = {
  errors: [],
  reset: ""
};

const reducer = (state = initialState, action) => {
  switch (action.type) {
    case SET_ERRORS:
      console.log("from reducer");
      console.log("errrrro", action.payload);

      return {
        ...state,
        errors: Object.keys(action.payload).map(
          key => `${key}: ${action.payload[key]}`
        )
      };
    case RESET_ERROR:
      return {
        ...state,
        errors: action.payload
      };

    default:
      return state;
  }
};

export default reducer;

Это мой index.js

import React, { Component } from "react";
import { connect } from "react-redux";
import * as actionCreators from "../../store/actions";
import {
  StyleSheet,
  Text,
  View,
  TextInput,
  Button,
  TouchableHighlight,
  Image
} from "react-native";
import { LinearGradient } from "expo-linear-gradient";

class Login extends Component {
  state = {
    username: "",
    password: ""
  };


  resetState = () => {
    this.setState({ password: null });
  };
  errors = () => {
    this.props.errors;
  };

  Login = () => {
    this.props.login(this.state, this.props.navigation);
    this.resetState();
  };

  render() {
    return (
      <LinearGradient
        colors={["#002d44", "#001724"]}
        style={{ flex: 1 }}
        start={[0, 0]}
        end={[1, 0]}
      >
        <View style={styles.container}>
          <Text>{error}</Text>
          <View style={styles.inputContainer}>
            <Image
              style={styles.inputIcon}
              source={{
                uri:
                  "https://img.icons8.com/ios/80/000000/identification-documents-filled.png"
              }}
            />

            <TextInput
              style={styles.inputs}
              autoCapitalize="none"
              placeholder="اسم المستخدم"
              onChangeText={username => this.setState({ username })}
              value={this.state.username}
            />
          </View>

          <View style={styles.inputContainer}>
            <Image
              style={styles.inputIcon}
              source={{
                uri: "https://img.icons8.com/ios/80/000000/lock-2-filled.png"
              }}
            />
            <TextInput
              style={styles.inputs}
              placeholder="كلمة المرور"
              secureTextEntry={true}
              onChangeText={password => this.setState({ password })}
              value={this.state.password}
            />
          </View>

          <TouchableHighlight
            style={[styles.buttonContainer, styles.loginButton]}
            onPress={this.Login}
          >
            <Text style={{ color: "#fff", fontSize: 15 }}>دخول</Text>
          </TouchableHighlight>

          <TouchableHighlight
            style={{}}
            onPress={() => this.props.navigation.replace("Signup")}
          >
            <Text style={{ color: "#00F7EA", fontSize: 15 }}>تسجيل</Text>
          </TouchableHighlight>
        </View>
      </LinearGradient>
    );
  }
}
const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: "center",
    alignItems: "center"
  },
  inputContainer: {
    borderBottomColor: "#F5FCFF",
    backgroundColor: "#FFFFFF",
    borderRadius: 30,
    borderBottomWidth: 1,
    width: 250,
    height: 45,
    marginBottom: 20,
    flexDirection: "row",
    alignItems: "center"
  },
  inputs: {
    height: 45,
    marginLeft: 16,
    fontSize: 15,
    textAlign: "center",
    borderBottomColor: "#FFFFFF",
    flex: 1
  },
  inputIcon: {
    width: 30,
    height: 30,
    marginLeft: 15,
    justifyContent: "center"
  },
  buttonContainer: {
    height: 45,
    flexDirection: "row",
    justifyContent: "center",
    alignItems: "center",
    marginBottom: 20,
    width: 250,
    borderRadius: 30,
    borderWidth: 0.8,
    borderColor: "#d6d7da"
  },
  loginButton: {
    backgroundColor: "transparent"
  },
  buttonDisabled: {
    backgroundColor: "#e7e7e7"
  },
  loginText: {
    color: "white"
  }
});
const mapStateToProps = state => ({
  user: state.authReducer.user,
  loading: state.devicesReducer.loading,
  errors: state.errorReducer.errors
});
const mapDispatchToProps = dispatch => ({
  login: (userData, navigation) =>
    dispatch(actionCreators.login(userData, navigation)),
  checkForExpiredToken: navigation =>
    dispatch(actionCreators.checkForExpiredToken(navigation))
});

export default connect(
  mapStateToProps,
  mapDispatchToProps
)(Login);

сообщение об ошибке, которое отображается на терминале

от редуктора errrrro Object {"password": Array ["Это поле может быть не пустым.",], "username": Array ["Это поле может быть не пустым.",],} from reducer errrrro [Ошибка: запрос не выполнен с кодом состояния 400]

...