Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6865 | Rev 6869 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6862 stevensc 1
import React, { useEffect, useState } from 'react'
6865 stevensc 2
import { camalize } from '../../utils'
6862 stevensc 3
import { useParams } from 'react-router-dom'
4
import { useDispatch } from 'react-redux'
5
import { getBackendVars } from '../../services/backendVars'
6
import { setTimelineUrl } from '../../redux/feed/feed.actions'
7
import { addNotification } from '../../redux/notification/notification.actions'
8
 
9
import Members from '../../components/group/Members'
10
import FeedList from '../../components/feed/linkedin/FeedList'
11
import FeedShare from '../../components/feed/linkedin/FeedShare'
12
import InfoWidget from '../../components/widgets/linkedin/InfoWidget'
13
import AboutGroup from '../../components/group/AboutGroup'
14
import GroupActions from '../../components/group/GroupActions'
15
 
16
const View = () => {
17
  const [backendVars, setBackendVars] = useState({})
18
  const { uuid } = useParams()
19
  const dispatch = useDispatch()
20
 
21
  useEffect(() => {
6863 stevensc 22
    getBackendVars(`/group/view/${uuid}`)
6862 stevensc 23
      .then((vars) => {
24
        const actions = {}
25
 
26
        Object.entries(vars).forEach(([key, value]) => {
6865 stevensc 27
          const camelCaseKey = camalize(key)
28
          actions[camelCaseKey] = value
6862 stevensc 29
        })
30
 
6865 stevensc 31
        // dispatch(setTimelineUrl(vars.link_timeline))
32
        setBackendVars(actions)
6862 stevensc 33
      })
34
      .catch((err) => {
35
        dispatch(addNotification({ style: 'danger', msg: err }))
36
        console.log(`Error: ${err}`)
37
        throw new Error(err)
38
      })
39
  }, [])
40
 
41
  return (
42
    <main className="w-100">
43
      <div className="container p-0 app__body layout__content">
44
        <div className="d-flex flex-column">
6865 stevensc 45
          <InfoWidget {...backendVars} />
6862 stevensc 46
        </div>
47
        <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
6865 stevensc 48
          <GroupActions {...backendVars} />
6862 stevensc 49
 
50
          {backendVars.withoutFeeds ? (
51
            <AboutGroup {...backendVars} />
52
          ) : (
53
            <>
6865 stevensc 54
              <FeedShare
55
                feedType="GROUP"
56
                postUrl={`/feed/add/group/${uuid}`}
57
                image={`/storage/type/group/code/${uuid}/filename/${backendVars.image}`}
58
              />
6862 stevensc 59
              <FeedList feed={backendVars.feed} image={backendVars.image} />
60
            </>
61
          )}
62
        </div>
63
        <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
6868 stevensc 64
          <Members groupId={backendVars.groupUuid} />
6862 stevensc 65
          {!backendVars.withoutFeeds && <AboutGroup {...backendVars} />}
66
        </div>
67
      </div>
68
    </main>
69
  )
70
}
71
 
72
export default View