Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6539 Rev 6540
Línea 1... Línea 1...
1
import React, { useEffect, useState } from 'react'
1
import React, { useEffect, useState } from 'react'
2
import axios from '../../../utils'
-
 
3
import { useSelector } from 'react-redux'
2
import { useSelector } from 'react-redux'
Línea 4... Línea 3...
4
 
3
 
-
 
4
import EmptySection from '../../UI/EmptySection'
Línea 5... Línea 5...
5
import EmptySection from '../../UI/EmptySection'
5
import { axios } from '../../../utils'
6
 
6
 
7
const SuggestWidget = ({
7
const SuggestWidget = ({
8
  title = 'Mis Grupos:',
8
  title = 'Mis Grupos:',
9
  url = '/helpers/my-groups',
9
  url = '/helpers/my-groups',
10
  btnLabelAccept = 'Ver',
10
  btnLabelAccept = 'Ver',
11
}) => {
11
}) => {
12
  const [widgetData, setWidgetData] = useState([])
12
  const [widgetData, setWidgetData] = useState([])
Línea 13... Línea 13...
13
  const [lookMore, setLookMore] = useState(false)
13
  const [lookMore, setLookMore] = useState(false)
14
  const labels = useSelector((state) => state.labels)
14
  const labels = useSelector((state) => state.labels)
15
 
15
 
16
  const getData = () => {
16
  const getData = (url) => {
17
    axios.get(url).then(({ data: response }) => {
17
    axios.get(url).then(({ data: response }) => {
18
      const { success, data } = response
18
      const { success, data } = response
19
      if (success) {
19
      if (success) {
20
        setWidgetData(data.sort((a, b) => a.priority - b.priority).reverse())
20
        setWidgetData(data.sort((a, b) => a.priority - b.priority).reverse())
Línea 21... Línea 21...
21
      }
21
      }
22
    })
22
    })
23
  }
23
  }
Línea 24... Línea 24...
24
 
24
 
25
  useEffect(() => {
25
  useEffect(() => {