Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
6894 stevensc 1
import React, { useState, useEffect } from 'react'
2
import { camalize } from '../../utils'
3
import { useParams } from 'react-router-dom'
4
import { useDispatch } from 'react-redux'
5
import { getBackendVars } from '../../services/backendVars'
6
import { addNotification } from '../../redux/notification/notification.actions'
7
 
8
import Overview from '../../components/overview/Overview'
9
import GroupActions from '../../components/group/GroupActions'
10
 
6899 stevensc 11
// import Type from '../../components/group/type/Type'
12
import Website from '../../components/group/website/Website'
13
import Privacy from '../../components/group/privacy/Privacy'
14
import Industry from '../../components/group/industry/Industry'
15
// import Accessibility from '../../components/group/accessibility/Accessibility'
16
 
6894 stevensc 17
import './styles/linkedin.scss'
18
 
19
const Edit = () => {
20
  const [backendVars, setBackendVars] = useState({})
21
  const dispatch = useDispatch()
22
  const { uuid } = useParams()
23
 
6899 stevensc 24
  const changePrivacy = (privacy) => {
25
    setBackendVars((prevBackendVars) => {
26
      return {
27
        ...prevBackendVars,
28
        privacy,
29
      }
30
    })
31
  }
32
 
6894 stevensc 33
  useEffect(() => {
6897 stevensc 34
    getBackendVars(`/group/my-groups/edit/${uuid}`)
6894 stevensc 35
      .then((vars) => {
36
        const actions = {}
37
 
38
        Object.entries(vars).forEach(([key, value]) => {
39
          const camelCaseKey = camalize(key)
40
          actions[camelCaseKey] = value
41
        })
42
 
43
        setBackendVars(actions)
44
        console.log(actions)
45
      })
46
      .catch((err) => {
47
        dispatch(addNotification({ style: 'danger', msg: err }))
48
        console.log(`Error: ${err}`)
49
        throw new Error(err)
50
      })
51
  }, [])
52
 
53
  return (
54
    <main className="w-100">
55
      <div className="container">
56
        <div className="main d-flex flex-column" style={{ gap: '1rem' }}>
57
          <GroupActions {...backendVars} />
58
          <Overview groupId={uuid} overview={backendVars?.overview} />
59
          {/* <Type
6899 stevensc 60
            groupId={uuid}
61
            groupType={backendVars?.groupType}
62
            groupTypes={backendVars?.groupTypes}
63
          /> */}
6894 stevensc 64
          <Industry
6899 stevensc 65
            groupId={uuid}
66
            industry={backendVars?.industry}
67
            industries={backendVars?.industries}
6894 stevensc 68
          />
69
          <Privacy
6899 stevensc 70
            groupId={uuid}
71
            privacy={backendVars?.privacy}
72
            privacies={backendVars?.privacies}
73
            onChange={changePrivacy}
6894 stevensc 74
          />
6899 stevensc 75
          {/* <Accessibility
76
            groupId={uuid}
77
            privacy={settedPrivacy}
6894 stevensc 78
            accessibility={settedAccesibility}
6899 stevensc 79
            accessibilities={backendVars?.accessibilities}
6894 stevensc 80
            setSettedAccesibility={setSettedAccesibility}
6899 stevensc 81
          /> */}
82
          <Website groupId={uuid} website={backendVars?.website} />
6894 stevensc 83
        </div>
84
      </div>
85
    </main>
86
  )
87
}
88
 
89
export default Edit