Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5912 Rev 6459
Línea 6... Línea 6...
6
import FeedList from '../../../../../dashboard/templates/linkedin/Feed/FeedList'
6
import FeedList from '../../../../../dashboard/templates/linkedin/Feed/FeedList'
7
import GroupInfo from '../../../../../group/view/templates/linkedin/components/GroupInfo'
7
import GroupInfo from '../../../../../group/view/templates/linkedin/components/GroupInfo'
8
import AboutCompany from '../components/AboutCompany'
8
import AboutCompany from '../components/AboutCompany'
9
import CompanyFollowers from '../components/CompanyFollowers'
9
import CompanyFollowers from '../components/CompanyFollowers'
10
import CompanyActions from '../components/CompanyActions'
10
import CompanyActions from '../components/CompanyActions'
-
 
11
import { setIntlLabels } from '../../../../../redux/intl/intl.action'
Línea 11... Línea 12...
11
 
12
 
12
const View = ({ backendVars }) => {
13
const View = ({ backendVars, labels }) => {
13
  const [authorizedLinks, setAuthorizedLinks] = useState(null)
14
  const [authorizedLinks, setAuthorizedLinks] = useState(null)
14
  const [isFollower, setIsFollower] = useState(false)
15
  const [isFollower, setIsFollower] = useState(false)
Línea 15... Línea 16...
15
  const dispatch = useDispatch()
16
  const dispatch = useDispatch()
Línea 28... Línea 29...
28
    }
29
    }
29
  }
30
  }
Línea 30... Línea 31...
30
 
31
 
31
  useEffect(() => {
32
  useEffect(() => {
-
 
33
    dispatch(setTimelineUrl(backendVars.timeline))
32
    dispatch(setTimelineUrl(backendVars.timeline))
34
    dispatch(setIntlLabels(labels))
33
    fetchAuthorizedLinks()
35
    fetchAuthorizedLinks()
Línea 34... Línea 36...
34
  }, [])
36
  }, [])
35
 
37