Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6510 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6510 Rev 6511
Línea 1... Línea 1...
1
import React, { useRef, useState, useEffect } from 'react'
1
import React, { useRef, useState, useEffect } from 'react'
2
import { axios } from '../../../../utils'
2
import { axios } from '../../../../utils'
3
import { Link } from 'react-router-dom'
3
import { Link } from 'react-router-dom'
4
import { useForm } from 'react-hook-form'
4
import { useForm } from 'react-hook-form'
5
import { useSelector } from 'react-redux'
5
import { useDispatch, useSelector } from 'react-redux'
6
import { addNotification } from '../../../redux/notification/notification.actions'
6
import { addNotification } from '../../../redux/notification/notification.actions'
7
import styled from 'styled-components'
7
import styled from 'styled-components'
8
import Recaptcha from 'react-recaptcha'
8
import Recaptcha from 'react-recaptcha'
9
import CryptoJSAesJson from '../../../utils/crypto-js/cryptojs-aes-format'
9
import CryptoJSAesJson from '../../../utils/crypto-js/cryptojs-aes-format'
Línea 49... Línea 49...
49
  const [isVerified, setIsVerified] = useState(false)
49
  const [isVerified, setIsVerified] = useState(false)
Línea 50... Línea 50...
50
 
50
 
51
  const reCaptchaInstance = useRef(null)
51
  const reCaptchaInstance = useRef(null)
Línea -... Línea 52...
-
 
52
  const reCaptchaToken = useRef('')
-
 
53
 
52
  const reCaptchaToken = useRef('')
54
  const dispatch = useDispatch()
53
 
55
 
54
  const signupVerifyCallbackHandler = (response) => {
56
  const signupVerifyCallbackHandler = (response) => {
55
    if (!response) return
57
    if (!response) return
56
    reCaptchaToken.current = response
58
    reCaptchaToken.current = response
Línea 84... Línea 86...
84
                type: 'manual',
86
                type: 'manual',
85
                message: Array.isArray(value) ? value[0] : value,
87
                message: Array.isArray(value) ? value[0] : value,
86
              })
88
              })
87
            })
89
            })
88
          }
90
          }
-
 
91
 
89
          addNotification({ style: 'danger', msg: data.data })
92
          dispatch(addNotification({ style: 'danger', msg: data.data }))
90
          reCaptchaInstance.current.reset()
93
          reCaptchaInstance.current.reset()
91
          signupVerifyCallbackHandler()
94
          signupVerifyCallbackHandler()
92
          return
95
          return
93
        }
96
        }
Línea 94... Línea 97...
94
 
97
 
95
        reCaptchaInstance.current.reset()
98
        reCaptchaInstance.current.reset()
96
        signupExpiredCallbackHandler()
99
        signupExpiredCallbackHandler()
97
        setRegistered(true)
100
        setRegistered(true)
98
      })
101
      })
-
 
102
      .catch((err) => {
99
      .catch((err) => {
103
        dispatch(
100
        addNotification({
104
          addNotification({
101
          style: 'danger',
105
            style: 'danger',
-
 
106
            msg: 'Disculpe, ha ocurrido un error',
102
          msg: 'Disculpe, ha ocurrido un error',
107
          })
103
        })
108
        )
-
 
109
        console.log(`Error: ${err}`)
104
        console.log(`Error: ${err}`)
110
        throw new Error(err)
105
      })
111
      })
106
      .finally(() => setIsLoading(false))
112
      .finally(() => setIsLoading(false))
Línea 107... Línea 113...
107
  }
113
  }