Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5891 Rev 5892
Línea 22... Línea 22...
22
  linkInmail = '',
22
  linkInmail = '',
23
  CancelConnectionUrl = '',
23
  CancelConnectionUrl = '',
24
  RequestConnectionUrl = '',
24
  RequestConnectionUrl = '',
25
  image = '',
25
  image = '',
26
  cover = '',
26
  cover = '',
27
  id,
27
  uuid = '',
28
  profileId,
28
  profileId,
29
  follower,
29
  follower,
30
  following,
30
  following,
31
  facebook,
31
  facebook,
32
  twitter,
32
  twitter,
Línea 45... Línea 45...
45
 
45
 
46
  // modals state
46
  // modals state
47
  const [modalToShow, setModalToShow] = useState(null)
47
  const [modalToShow, setModalToShow] = useState(null)
48
  const [settedOverview, setSettedOverview] = useState(overview)
48
  const [settedOverview, setSettedOverview] = useState(overview)
49
  const [profileImg, setProfileImg] = useState({
49
  const [profileImg, setProfileImg] = useState({
50
    path: `/storage/type/user-profile/code/${id}/${
50
    path: `/storage/type/user-profile/code/${uuid}/${
51
      image ? `filename/${image}` : ''
51
      image ? `filename/${image}` : ''
52
    }`,
52
    }`,
53
  })
53
  })
54
  const [coverImg, setCoverImg] = useState({
54
  const [coverImg, setCoverImg] = useState({
55
    path: `/storage/type/user-cover/code/${id}/${
55
    path: `/storage/type/user-cover/code/${uuid}/${
56
      cover ? `filename/${cover}` : ''
56
      cover ? `filename/${cover}` : ''
57
    }`,
57
    }`,
Línea 58... Línea 58...
58
  })
58
  })