Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6548 | Rev 7115 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6548 Rev 7114
Línea 7... Línea 7...
7
const DailyPulse = ({ dailyPulseUrl }) => {
7
const DailyPulse = ({ dailyPulseUrl }) => {
8
  const [emojisHowAreYouFeel, setEmojisHowAreYouFeel] = useState([])
8
  const [emojisHowAreYouFeel, setEmojisHowAreYouFeel] = useState([])
9
  const [emojisClimateOnYourOrganization, setEmojisClimateOnYourOrganization] =
9
  const [emojisClimateOnYourOrganization, setEmojisClimateOnYourOrganization] =
10
    useState([])
10
    useState([])
Línea 11... Línea 11...
11
 
11
 
12
  const getData = async (url) => {
12
  const getData = (url) => {
-
 
13
    axios
-
 
14
      .get(url)
13
    try {
15
      .then((response) => {
-
 
16
        const { success, data } = response.data
14
      const { data: response } = await axios.get(url)
17
 
15
      if (response.success) {
18
        if (success) {
16
        setEmojisHowAreYouFeel(response.data.emojis_how_are_you_feel)
19
          setEmojisHowAreYouFeel(data.emojis_how_are_you_feel)
17
        setEmojisClimateOnYourOrganization(
20
          setEmojisClimateOnYourOrganization(
-
 
21
            data.emojis_climate_on_your_organization
18
          response.data.emojis_climate_on_your_organization
22
          )
19
        )
23
        }
20
      }
24
      })
21
    } catch (error) {
25
      .catch((error) => {
-
 
26
        console.trace(error)
22
      console.log(error)
27
        throw new Error(error)
23
    }
28
      })
Línea 24... Línea 29...
24
  }
29
  }
25
 
30
 
26
  useEffect(() => {
31
  useEffect(() => {
Línea 27... Línea 32...
27
    getData(dailyPulseUrl)
32
    getData(dailyPulseUrl)
28
  }, [])
33
  }, [dailyPulseUrl])
29
 
34
 
30
  return (
35
  return (