Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4410 | Rev 4412 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4115 stevensc 1
/* eslint-disable react/prop-types */
2
/* eslint-disable no-mixed-spaces-and-tabs */
1 www 3
import React, { useEffect, useState } from "react";
4
import { useForm } from "react-hook-form";
2641 stevensc 5
import { axios } from '../../../utils';
1 www 6
import { connect } from "react-redux";
7
import { addNotification } from "../../../redux/notification/notification.actions";
4405 stevensc 8
 
1 www 9
import Spinner from "../../../shared/loading-spinner/Spinner";
4405 stevensc 10
import FormErrorFeedback from "../../../shared/form-error-feedback/FormErrorFeedback";
11
import PhoneInput from "react-phone-input-2";
12
import SwitchInput from "../shared/switch-input/SwitchInput";
13
import "react-phone-input-2/lib/style.css";
1 www 14
 
4115 stevensc 15
const BasicSettings = ({
16
  addNotification = function () { }, // Redux action
17
  timezones = {}
18
}) => {
1 www 19
 
20
  const [loading, setLoading] = useState(false);
4405 stevensc 21
  const [isAdult, setIsAdult] = useState(false);
1 www 22
 
4408 stevensc 23
  const { register, handleSubmit, setValue, watch, errors } = useForm()
1 www 24
 
25
  useEffect(() => {
26
    register("phone", {
27
      required: "Por favor ingrese su número de teléfono",
4408 stevensc 28
    })
4113 efrain 29
    register("timezone", {
30
      required: "Por favor ingrese su zona horaria",
4408 stevensc 31
    })
1 www 32
  }, []);
33
 
34
  const handleOnSubmit = async (data) => {
35
    setLoading(true);
36
    const formData = new FormData();
4408 stevensc 37
 
4405 stevensc 38
    formData.append("is_adult", isAdult ? 'y' : 'n')
4408 stevensc 39
    Object.entries(data).map(([key, value]) => formData.append(key, value))
4405 stevensc 40
 
4408 stevensc 41
    axios.post("/account-settings/basic", formData)
42
      .then(({ data: response }) => {
43
        if (!response.success) {
44
          const errorMessage = typeof response.data === "string" ? response.data : "Ha ocurrido un error, Por favor intente mas tarde"
45
          return addNotification({ style: "danger", msg: errorMessage })
1 www 46
        }
4408 stevensc 47
 
48
        return addNotification({ style: "success", msg: response.data })
49
      })
50
      .finally(() => setLoading(false))
1 www 51
  };
52
 
53
  useEffect(async () => {
54
    setLoading(true);
4405 stevensc 55
    axios
56
      .get("/account-settings/basic")
4407 stevensc 57
      .then(({ data: response }) => {
58
        if (response.success) {
59
          Object
60
            .entries(response.data)
4410 stevensc 61
            .map(([key, value]) =>
62
              key === 'is_adult'
63
                ? setIsAdult(value === 'y' ? true : false)
64
                : setValue(key, value)
65
            )
4405 stevensc 66
        }
67
      })
68
      .finally(() => setLoading(false))
1 www 69
  }, []);
70
 
71
  return (
4405 stevensc 72
    <div className="acc-setting">
2642 stevensc 73
      <h2>Básica</h2>
4405 stevensc 74
      {loading
75
        ? <Spinner />
76
        :
2641 stevensc 77
        <form onSubmit={handleSubmit(handleOnSubmit)}>
4405 stevensc 78
          <div className="inputs__container">
2641 stevensc 79
            <div className="cp-field">
80
              <label htmlFor="first_name">Nombre</label>
4411 stevensc 81
              <input type="text" {...register("first_name")} />
4410 stevensc 82
              {errors.first_name && <FormErrorFeedback>Por favor ingrese su nombre</FormErrorFeedback>}
2641 stevensc 83
            </div>
84
            <div className="cp-field">
85
              <label htmlFor="last_name">Apellido</label>
4411 stevensc 86
              <input {...register("text")} name="last_name" />
4410 stevensc 87
              {errors.last_name && <FormErrorFeedback>Por favor ingrese su apellido</FormErrorFeedback>}
2641 stevensc 88
            </div>
89
          </div>
4405 stevensc 90
          <div className="inputs__container">
2641 stevensc 91
            <div className="cp-field">
92
              <label htmlFor="last_name">Email</label>
4411 stevensc 93
              <input type="text" {...register("email")} />
4410 stevensc 94
              {errors.email && <FormErrorFeedback>Por favor ingrese un correo electrónico valido</FormErrorFeedback>}
2641 stevensc 95
            </div>
2642 stevensc 96
            <div className="cp-field">
4405 stevensc 97
              <label htmlFor="phone">Teléfono</label>
2642 stevensc 98
              <PhoneInput
99
                name="phone"
2644 stevensc 100
                inputClass="custom-input"
2642 stevensc 101
                value={watch("phone")}
4408 stevensc 102
                onChange={(phone) => setValue("phone", phone)}
2642 stevensc 103
              />
4410 stevensc 104
              {errors.phone && <FormErrorFeedback>Por favor ingrese un número telefónico valido</FormErrorFeedback>}
2642 stevensc 105
            </div>
2641 stevensc 106
          </div>
4405 stevensc 107
          <div className="inputs__container">
2641 stevensc 108
            <div className="cp-field">
109
              <label htmlFor="gender">Género</label>
110
              <select
4411 stevensc 111
                {...register("gender")}
2641 stevensc 112
              >
113
                <option value="" hidden>
114
                  Seleccione un género
115
                </option>
116
                <option value="m">Masculino</option>
117
                <option value="f">Femenino</option>
118
              </select>
4410 stevensc 119
              {errors.gender && <FormErrorFeedback>Por favor selecciona un genero</FormErrorFeedback>}
2641 stevensc 120
            </div>
4113 efrain 121
            <div className="cp-field">
4115 stevensc 122
              <label htmlFor="timezone">Zona horaria</label>
4411 stevensc 123
              <select {...register("timezone")}>
4115 stevensc 124
                <option value="" hidden>
125
                  Zona horaria
126
                </option>
4410 stevensc 127
                {Object.entries(timezones).map(([key, value]) =>
4115 stevensc 128
                  <option value={key} key={key}>
129
                    {value}
130
                  </option>
4410 stevensc 131
                )}
4115 stevensc 132
              </select>
4410 stevensc 133
              {errors.timezone && <FormErrorFeedback>Por favor selecciona una zona horaria</FormErrorFeedback>}
4113 efrain 134
            </div>
2641 stevensc 135
          </div>
4411 stevensc 136
          <div className="cp-field">
137
            <label htmlFor="timezone">Eres mayor de 18</label>
138
            <SwitchInput
139
              isChecked={isAdult}
140
              setValue={(value) => setIsAdult(value)}
141
            />
142
          </div>
4405 stevensc 143
          <button type="submit" className="btn btn-secondary">
144
            Guardar
145
          </button>
2641 stevensc 146
        </form>
147
      }
4405 stevensc 148
 
149
 
150
    </div >
1 www 151
  );
152
};
153
 
154
const mapDispatchToProps = {
155
  addNotification: (notification) => addNotification(notification),
156
};
157
 
158
export default connect(null, mapDispatchToProps)(BasicSettings);