Línea 3... |
Línea 3... |
3 |
import React, { useEffect, useState } from 'react'
|
3 |
import React, { useEffect, useState } from 'react'
|
4 |
import { axios } from '../../../utils'
|
4 |
import { axios } from '../../../utils'
|
5 |
import PulseList from './PulseList'
|
5 |
import PulseList from './PulseList'
|
Línea 6... |
Línea 6... |
6 |
|
6 |
|
7 |
const DailyPulse = ({ routeDailyPulse }) => {
|
- |
|
8 |
const [points, setPoints] = useState(0)
|
7 |
const DailyPulse = ({ routeDailyPulse }) => {
|
9 |
const [emojisHowAreYouFeel, setEmojisHowAreYouFeel] = useState([])
|
8 |
const [emojisHowAreYouFeel, setEmojisHowAreYouFeel] = useState([])
|
Línea 10... |
Línea 9... |
10 |
const [emojisClimateOnYourOrganization, setEmojisClimateOnYourOrganization] = useState([])
|
9 |
const [emojisClimateOnYourOrganization, setEmojisClimateOnYourOrganization] = useState([])
|
11 |
|
10 |
|
12 |
const getData = async (url = routeDailyPulse) => {
|
11 |
const getData = async (url = routeDailyPulse) => {
|
13 |
try {
|
12 |
try {
|
14 |
const { data: response } = await axios.get(url)
|
- |
|
15 |
if (response.success) {
|
13 |
const { data: response } = await axios.get(url)
|
16 |
setPoints(response.data.points)
|
14 |
if (response.success) {
|
17 |
setEmojisHowAreYouFeel(response.data.emojis_how_are_you_feel)
|
15 |
setEmojisHowAreYouFeel(response.data.emojis_how_are_you_feel)
|
18 |
setEmojisClimateOnYourOrganization(response.data.emojis_climate_on_your_organization)
|
16 |
setEmojisClimateOnYourOrganization(response.data.emojis_climate_on_your_organization)
|
19 |
}
|
17 |
}
|
Línea 27... |
Línea 25... |
27 |
}, [])
|
25 |
}, [])
|
Línea 28... |
Línea 26... |
28 |
|
26 |
|
29 |
return (
|
27 |
return (
|
30 |
<div className='daily_pulse-widget'>
|
28 |
<div className='daily_pulse-widget'>
|
31 |
<h3>Pulso Diario</h3>
|
- |
|
32 |
<span>Puntos acumulados: {points}</span>
|
29 |
<h3>Pulso Diario</h3>
|
33 |
<PulseList options={emojisHowAreYouFeel} title='¿Como te sientes hoy?' onComplete={getData} />
|
30 |
<PulseList options={emojisHowAreYouFeel} title='¿Como te sientes hoy?' onComplete={getData} />
|
34 |
<PulseList options={emojisClimateOnYourOrganization} title='¿Como esta el clima en la organización?' onComplete={getData} />
|
31 |
<PulseList options={emojisClimateOnYourOrganization} title='¿Como esta el clima en la organización?' onComplete={getData} />
|
35 |
</div>
|
32 |
</div>
|
36 |
)
|
33 |
)
|