Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4677 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4522 stevensc 1
/* eslint-disable react/prop-types */
4645 stevensc 2
import React, { useState } from 'react'
4522 stevensc 3
import { axios } from '../../../../../utils'
4
import { addNotification } from '../../../../../redux/notification/notification.actions'
5
import Avatar from '../../../../../shared/Avatar/Avatar'
6
import { useDispatch } from 'react-redux'
5894 stevensc 7
import CoverModal from '../../../../../shared/cover/CoverModal'
8
import { coverTypes } from '../../../../../shared/cover/cover.types'
4653 stevensc 9
import ImageModal from '../../../../../shared/profile/edit/profile-info/profile-img/ImageModal'
4645 stevensc 10
import { profileTypes } from '../../../../../shared/profile/Profile.types'
11
import EditIcon from '@mui/icons-material/EditOutlined'
4522 stevensc 12
 
5894 stevensc 13
const GroupActions = ({
14
  cover,
15
  groupId,
16
  name,
17
  image,
18
  groupType,
19
  linkInmail,
20
  actionLinks,
21
  accessibility,
22
  imageProfileCover,
23
  imageSizeCover,
24
}) => {
25
  const [modalToShow, setModalToShow] = useState(null)
26
  const [coverImg, setCoverImg] = useState({
27
    path: `/storage/type/group-cover/code/${groupId}/${
28
      cover ? `filename/${cover}` : ''
29
    }`,
30
  })
31
  const [profileImg, setProfileImg] = useState({
32
    path: `/storage/type/group/code/${groupId}/${
33
      image ? `filename/${image}` : ''
34
    }`,
35
  })
36
  const dispatch = useDispatch()
37
  const PATH = window.location.pathname
4522 stevensc 38
 
5894 stevensc 39
  const closeModal = () => setModalToShow(null)
4645 stevensc 40
 
5894 stevensc 41
  const handleActionLink = (url) => {
42
    axios
43
      .post(url)
44
      .then(({ data }) => {
45
        if (!data.success) {
46
          return dispatch(addNotification({ style: 'error', msg: data.data }))
47
        }
48
        addNotification({ style: 'success', msg: data.data })
49
        window.location.reload()
50
      })
51
      .catch((err) => console.log('>>: err > ', err))
52
  }
4522 stevensc 53
 
5894 stevensc 54
  return (
55
    <>
56
      <div className="group__actions">
57
        <div
58
          className="group__actions-cover position-relative"
59
          style={{ height: '300px' }}
60
        >
61
          <img
62
            src={coverImg.path}
63
            alt="Profile cover"
64
            className="sidebar__cover"
65
          />
66
          {PATH.includes('edit') && (
67
            <button
68
              className="button-icon cover__edit-btn"
69
              onClick={() => setModalToShow('cover')}
70
            >
71
              <EditIcon />
72
            </button>
73
          )}
74
        </div>
75
        <div className="group__actions-body">
76
          <div className="card__image-options">
77
            {PATH.includes('edit') ? (
78
              <img
79
                alt="Profile Image"
80
                className={`img ${PATH.includes('edit') && 'cursor-pointer'}`}
81
                src={profileImg.path}
82
                onClick={() => PATH.includes('edit') && setModalToShow('image')}
83
                style={{ zIndex: 10 }}
84
              />
85
            ) : (
86
              <Avatar imageUrl={profileImg.path} size="xl" name={name} />
87
            )}
88
          </div>
89
          <h1>{name}</h1>
90
          <span>{groupType}</span>
91
          <div className="row" style={{ gap: '.5rem' }}>
92
            {linkInmail && (
93
              <a href={linkInmail} className="button btn btn-primary">
94
                Contactar con el Administrador
95
              </a>
96
            )}
97
            {actionLinks?.link_accept && (
98
              <button
99
                onClick={() => handleActionLink(actionLinks?.link_accept)}
100
                className="button btn btn-primary"
101
              >
102
                Aceptar invitacion
103
              </button>
104
            )}
105
            {actionLinks?.link_cancel && (
106
              <button
107
                onClick={() => handleActionLink(actionLinks?.link_cancel)}
108
                className="button btn btn-secondary"
109
              >
110
                Cancelar invitacion
111
              </button>
112
            )}
113
            {actionLinks?.link_leave && (
114
              <button
115
                onClick={() => handleActionLink(actionLinks?.link_leave)}
116
                className="button btn btn-secondary"
117
              >
118
                Abandonar grupo
119
              </button>
120
            )}
121
            {actionLinks?.link_request && (
122
              <button
123
                onClick={() => handleActionLink(actionLinks?.link_request)}
124
                className="button btn btn-primary"
125
              >
126
                {accessibility === 'Auto unirse'
127
                  ? 'Unirse'
128
                  : 'Solicitar membresia'}
129
              </button>
130
            )}
131
          </div>
132
        </div>
133
      </div>
134
      <CoverModal
135
        isOpen={modalToShow === 'cover'}
136
        type={coverTypes.GROUP}
137
        id={groupId}
138
        size={imageSizeCover}
139
        onClose={() => closeModal()}
140
        onComplete={(newImage) => setCoverImg(newImage)}
141
      />
142
      <ImageModal
143
        handleModalOpen={() => closeModal()}
144
        isModalOpen={modalToShow === 'image'}
145
        groupId={groupId}
146
        imageProfileCover={imageProfileCover}
147
        profileType={profileTypes.GROUP}
148
        setProfileImg={(newImage) => setProfileImg(newImage)}
149
      />
150
    </>
151
  )
4522 stevensc 152
}
153
 
5894 stevensc 154
export default GroupActions