Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
5473 stevensc 1
import React, { useState } from 'react'
2
import parse from 'html-react-parser'
3
import EditIcon from '@mui/icons-material/EditOutlined'
5868 stevensc 4
import { axios } from '../../../../../../utils'
5473 stevensc 5
import { useDispatch } from 'react-redux'
5868 stevensc 6
import { addNotification } from '../../../../../../redux/notification/notification.actions'
5473 stevensc 7
import { Modal } from 'react-bootstrap'
5868 stevensc 8
import ImageModal from '../../../../../../shared/profile/edit/profile-info/profile-img/ImageModal'
9
import { profileTypes } from '../../../../../../shared/profile/Profile.types'
5875 stevensc 10
import { coverTypes } from '../../../../../../shared/cover/cover.types'
5868 stevensc 11
import CoverModal from '../../../../../../shared/cover/CoverModal'
12
import OverviewModal from '../../../../../components/overview/OverviewModal'
13
import ConfirmModal from '../../../../../../shared/confirm-modal/ConfirmModal'
5473 stevensc 14
 
15
const ProfileCard = ({
5868 stevensc 16
  fullName = '',
17
  overview = '',
18
  formatted_address: formattedAddress = '',
19
  total_connections: totalConnections,
20
  showContact = false,
5891 stevensc 21
  experiences = [],
5868 stevensc 22
  linkInmail = '',
23
  CancelConnectionUrl = '',
24
  RequestConnectionUrl = '',
25
  image = '',
26
  cover = '',
5892 stevensc 27
  uuid = '',
5890 stevensc 28
  profileId,
5868 stevensc 29
  follower,
30
  following,
31
  facebook,
32
  twitter,
33
  instagram,
5891 stevensc 34
  sizes,
5868 stevensc 35
  view_following,
36
  view_total_connections,
5473 stevensc 37
}) => {
5868 stevensc 38
  const [isAdded, setIsAdded] = useState(!RequestConnectionUrl)
39
  const [connectionUrl, setConnectionUrl] = useState(
40
    RequestConnectionUrl || CancelConnectionUrl
41
  )
42
  const [isModalShow, setIsModalShow] = useState(false)
43
  const dispatch = useDispatch()
44
  const PATH = window.location.pathname
5473 stevensc 45
 
5868 stevensc 46
  // modals state
47
  const [modalToShow, setModalToShow] = useState(null)
48
  const [settedOverview, setSettedOverview] = useState(overview)
49
  const [profileImg, setProfileImg] = useState({
5892 stevensc 50
    path: `/storage/type/user-profile/code/${uuid}/${
5868 stevensc 51
      image ? `filename/${image}` : ''
52
    }`,
53
  })
54
  const [coverImg, setCoverImg] = useState({
5892 stevensc 55
    path: `/storage/type/user-cover/code/${uuid}/${
5868 stevensc 56
      cover ? `filename/${cover}` : ''
57
    }`,
58
  })
5473 stevensc 59
 
5868 stevensc 60
  const displayModal = () => setIsModalShow(!isModalShow)
5473 stevensc 61
 
5868 stevensc 62
  const getProfileData = async () => {
63
    try {
64
      const { data: response } = await axios.get(window.location.href)
5473 stevensc 65
 
5868 stevensc 66
      if (response.link_request) {
67
        return setConnectionUrl(response.link_request)
68
      }
5473 stevensc 69
 
5868 stevensc 70
      return setConnectionUrl(response.link_cancel)
71
    } catch (error) {
72
      console.log(error)
73
      return dispatch(
74
        addNotification({ style: 'danger', msg: 'Ha ocurrido un error' })
75
      )
5473 stevensc 76
    }
5868 stevensc 77
  }
5473 stevensc 78
 
5868 stevensc 79
  const connect = async () => {
80
    try {
81
      const { data: response } = await axios.post(connectionUrl)
5473 stevensc 82
 
5868 stevensc 83
      if (!response.success) {
84
        return dispatch(
85
          addNotification({ style: 'danger', msg: response.data })
86
        )
87
      }
5473 stevensc 88
 
5868 stevensc 89
      if (response.success && isModalShow) {
90
        displayModal()
91
      }
5473 stevensc 92
 
5868 stevensc 93
      await getProfileData()
94
      dispatch(addNotification({ style: 'success', msg: response.data }))
95
      setIsAdded(!isAdded)
96
    } catch (error) {
97
      dispatch(
98
        addNotification({ style: 'danger', msg: `Error: ${error.message}` })
99
      )
5473 stevensc 100
    }
5868 stevensc 101
  }
5473 stevensc 102
 
5868 stevensc 103
  const closeModal = () => setModalToShow(null)
5473 stevensc 104
 
5868 stevensc 105
  return (
106
    <>
107
      <section className="profile__user-card">
108
        <div className="cover__image-container">
109
          <img alt="Background Image" src={coverImg.path} />
110
          {PATH.includes('edit') && (
111
            <button
112
              className="button-icon cover__edit-btn"
113
              onClick={() => setModalToShow('cover')}
114
            >
115
              <EditIcon />
116
            </button>
117
          )}
118
        </div>
119
        <section className="px-4 pb-4">
120
          <div className="card__image-options">
121
            <img
122
              alt="Profile Image"
123
              className={`img ${PATH.includes('edit') && 'cursor-pointer'}`}
124
              src={profileImg.path}
125
              onClick={() => PATH.includes('edit') && setModalToShow('image')}
5473 stevensc 126
            />
5868 stevensc 127
            {PATH.includes('edit') && (
128
              <button
129
                className="button-icon"
130
                onClick={() => setModalToShow('overview')}
131
              >
132
                <EditIcon />
133
              </button>
134
            )}
135
          </div>
136
          <div className="card-content">
137
            <div className="card-info">
138
              <h1>{fullName}</h1>
139
              {parse(settedOverview.replaceAll('h1', 'p'))}
140
              <div
141
                className="d-inline-flex align-items-center mt-2"
142
                style={{ gap: '1rem' }}
143
              >
144
                <span>{formattedAddress}</span>
145
                <a
146
                  href=""
147
                  onClick={(e) => {
148
                    e.preventDefault()
149
                    setModalToShow('info')
150
                  }}
151
                >
152
                  {LABELS.PERSONAL_INFO}
153
                </a>
154
              </div>
155
              <div
156
                className="d-inline-flex align-items-center mt-2"
157
                style={{ gap: '1rem' }}
158
              >
159
                {Boolean(totalConnections) && view_total_connections && (
160
                  <a href="/connection/my-connections" target="_blank">
161
                    {`${totalConnections} ${LABELS.CONNECTIONS}`}
162
                  </a>
163
                )}
164
                {Boolean(follower) && view_following && (
165
                  <a
166
                    href=""
167
                    className="cursor-auto"
168
                    onClick={(e) => e.preventDefault()}
169
                  >
170
                    {`${follower} ${LABELS.FOLLOWERS}`}
171
                  </a>
172
                )}
173
                {Boolean(following) && view_following && (
174
                  <a href="/company/following-companies" target="_blank">
175
                    {`${following} ${LABELS.FOLLOWING}`}
176
                  </a>
177
                )}
178
              </div>
179
              <div className="button-actions mt-2">
180
                {connectionUrl && isAdded && (
181
                  <button
182
                    className="btn button btn-primary"
183
                    onClick={() => displayModal()}
184
                  >
185
                    {LABELS.CANCEL}
186
                  </button>
187
                )}
188
                {connectionUrl && !isAdded && (
189
                  <button
190
                    className="btn button btn-primary"
191
                    onClick={() => connect()}
192
                  >
193
                    {LABELS.CONNECT}
194
                  </button>
195
                )}
196
                {showContact && (
197
                  <a href={linkInmail} className="btn button btn-secondary">
198
                    {LABELS.MESSAGE}
199
                  </a>
200
                )}
201
              </div>
202
            </div>
203
            <div className="card-experiences">
204
              <ul>
5891 stevensc 205
                {experiences.map(
5868 stevensc 206
                  ({ company, title, industry, size }, index) => (
207
                    <li key={index}>
208
                      <span>{`${company} - ${title}`}</span>
209
                      <p>{`${industry} / ${size}`}</p>
210
                    </li>
211
                  )
212
                )}
213
              </ul>
214
            </div>
215
          </div>
216
        </section>
217
      </section>
218
      <OverviewModal
219
        isOpen={modalToShow === 'overview'}
220
        overview={settedOverview}
5890 stevensc 221
        userIdEncrypted={profileId}
5868 stevensc 222
        closeModal={() => closeModal()}
223
        setOverview={(newOverview) => setSettedOverview(newOverview)}
224
      />
225
      <CoverModal
5874 stevensc 226
        isOpen={modalToShow === 'cover'}
5875 stevensc 227
        type={coverTypes.USER}
5891 stevensc 228
        size={sizes.cover}
5890 stevensc 229
        id={profileId}
5874 stevensc 230
        onClose={() => closeModal()}
231
        onComplete={(newImage) => setCoverImg(newImage)}
5868 stevensc 232
      />
233
      <ImageModal
234
        handleModalOpen={() => closeModal()}
235
        isModalOpen={modalToShow === 'image'}
5890 stevensc 236
        profileId={profileId}
5891 stevensc 237
        imageProfileCover={sizes.image}
5868 stevensc 238
        profileType={profileTypes.USER}
239
        setProfileImg={(newImage) => setProfileImg(newImage)}
240
      />
241
      <ProfileCard.Modal
242
        show={modalToShow === 'info'}
243
        closeModal={() => closeModal()}
244
        fullName={fullName}
245
        facebook={facebook}
246
        twitter={twitter}
247
        instagram={instagram}
248
        following={following}
249
        formatted_address={formattedAddress}
250
        overview={overview}
251
        total_connections={totalConnections}
252
        follower={follower}
253
      />
254
      <ConfirmModal
255
        show={isModalShow}
256
        onClose={() => setIsModalShow(false)}
257
        onAccept={() => connect()}
258
      />
259
    </>
260
  )
5473 stevensc 261
}
262
 
263
const InfoModal = ({
5868 stevensc 264
  show,
265
  closeModal,
266
  facebook,
267
  following,
268
  formatted_address,
269
  fullName,
270
  instagram,
271
  overview,
272
  total_connections,
273
  twitter,
274
  follower,
5473 stevensc 275
}) => {
5868 stevensc 276
  return (
277
    <Modal show={show} onHide={closeModal}>
278
      <Modal.Header closeButton>
279
        <h2>{LABELS.ABOUT_GROUP}</h2>
280
      </Modal.Header>
281
      <Modal.Body>
282
        <div className="description__label">
283
          <label htmlFor="name">{LABELS.FIRST_NAME}</label>
284
          <p>{fullName}</p>
285
        </div>
286
        {overview && (
287
          <div className="description__label">
288
            <label htmlFor="name">{LABELS.DESCRIPTION}</label>
289
            {parse(overview)}
290
          </div>
291
        )}
292
        {formatted_address && (
293
          <div className="description__label">
294
            <label htmlFor="name">{LABELS.LOCATION}</label>
295
            <p>{formatted_address}</p>
296
          </div>
297
        )}
298
        {total_connections && (
299
          <div className="description__label">
300
            <label htmlFor="name">{LABELS.CONNECTIONS}</label>
301
            <p>{total_connections}</p>
302
          </div>
303
        )}
304
        {follower && (
305
          <div className="description__label">
306
            <label htmlFor="name">{LABELS.FOLLOWERS}</label>
307
            <p>{follower}</p>
308
          </div>
309
        )}
310
        {following && (
311
          <div className="description__label">
312
            <label htmlFor="name">{LABELS.FOLLOWING}</label>
313
            <p>{following}</p>
314
          </div>
315
        )}
316
        <div className="description__label">
317
          <label htmlFor="name">{LABELS.SOCIAL_NETWORKS}</label>
318
          {facebook && (
319
            <a href={facebook} target="_blank" rel="noreferrer">
320
              <p className="mb-1">{facebook}</p>
321
            </a>
322
          )}
323
          {instagram && (
324
            <a href={instagram} target="_blank" rel="noreferrer">
325
              <p className="mb-1">{instagram}</p>
326
            </a>
327
          )}
328
          {twitter && (
329
            <a href={twitter} target="_blank" rel="noreferrer">
330
              <p className="mb-1">{twitter}</p>
331
            </a>
332
          )}
333
        </div>
334
      </Modal.Body>
335
    </Modal>
336
  )
5473 stevensc 337
}
338
 
339
ProfileCard.Modal = InfoModal
340
 
341
export default ProfileCard