Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6834 Rev 6835
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 { useDispatch } from 'react-redux'
2
import { useDispatch } from 'react-redux'
4
import { setTimelineUrl } from '../../redux/feed/feed.actions'
3
import { setTimelineUrl } from '../../redux/feed/feed.actions'
5
import { getBackendVars } from '../../services/backendVars'
4
import { getBackendVars } from '../../services/backendVars'
6
import { useParams } from 'react-router-dom'
5
import { useParams } from 'react-router-dom'
Línea 13... Línea 12...
13
 
12
 
Línea 14... Línea 13...
14
import './styles/linkedin.scss'
13
import './styles/linkedin.scss'
15
 
14
 
16
const LinkedInCompany = () => {
15
const LinkedInCompany = () => {
17
  const [backendVars, setBackendVars] = useState(null)
16
  const [backendVars, setBackendVars] = useState(null)
18
  const [authorizedLinks, setAuthorizedLinks] = useState(null)
17
  const [actionsUrls, setActionsUrls] = useState(null)
19
  const [isFollower, setIsFollower] = useState(false)
-
 
Línea 20... Línea 18...
20
  const { uuid } = useParams()
18
  const [isFollower, setIsFollower] = useState(false)
21
  const dispatch = useDispatch()
-
 
22
 
-
 
23
  const fetchAuthorizedLinks = async () => {
-
 
24
    const { data: response } = await axios.get(`/company/view/${uuid}`)
-
 
25
    const { data, success } = response
-
 
26
 
-
 
27
    if (success) {
-
 
28
      setAuthorizedLinks(data)
-
 
29
      setIsFollower(!!data.link_unfollow)
-
 
30
    }
-
 
31
  }
-
 
32
 
-
 
33
  useEffect(() => {
-
 
34
    fetchAuthorizedLinks()
-
 
35
  }, [])
19
  const { uuid } = useParams()
36
 
20
 
37
  useEffect(() => {
21
  const getCompanyVars = () => {
-
 
22
    getBackendVars(`/company/view/${uuid}`)
-
 
23
      .then((vars) => {
-
 
24
        const actions = {}
-
 
25
 
-
 
26
        Object.entries(vars).forEach(([key, value]) => {
-
 
27
          if (!key.includes('link')) {
-
 
28
            return
-
 
29
          }
-
 
30
 
-
 
31
          actions[key] = value
-
 
32
        })
-
 
33
 
38
    getBackendVars(`/company/view/${uuid}`)
34
        setActionsUrls(actions)
39
      .then((vars) => {
35
 
40
        console.log(vars)
36
        setIsFollower(!!vars.link_unfollow)
41
        setBackendVars(vars)
37
        setBackendVars(vars)
42
      })
38
      })
43
      .catch((err) => {
39
      .catch((err) => {
-
 
40
        console.log(`Error: ${err}`)
-
 
41
        throw new Error(err)
-
 
42
      })
-
 
43
  }
44
        console.log(`Error: ${err}`)
44
 
Línea 45... Línea 45...
45
        throw new Error(err)
45
  useEffect(() => {
46
      })
46
    getCompanyVars()
47
  }, [])
47
  }, [])
Línea 62... Línea 62...
62
            type="company"
62
            type="company"
63
          />
63
          />
64
        </div>
64
        </div>
65
        <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
65
        <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
66
          <CompanyActions
66
          <CompanyActions
67
            name={backendVars?.companyName}
67
            name={backendVars?.company_name}
68
            image={backendVars?.image}
68
            image={backendVars?.image}
69
            companyId={backendVars?.companyId}
69
            companyId={backendVars?.company_uuid}
70
            cover={backendVars?.cover}
70
            cover={backendVars?.cover}
71
            overview={backendVars?.overview}
71
            overview={backendVars?.overview}
72
            refetch={() => fetchAuthorizedLinks()}
72
            refetch={getCompanyVars}
73
            actionLinks={authorizedLinks}
73
            actionLinks={actionsUrls}
74
          />
74
          />
75
          {!isFollower ? (
75
          {!isFollower ? (
76
            <AboutCompany {...backendVars} />
76
            <AboutCompany {...backendVars} />
77
          ) : (
77
          ) : (
78
            <FeedList
78
            <FeedList