Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
5478 stevensc 1
import React, { useState } from 'react'
2
import parse from 'html-react-parser'
3
 
4
import IconButton from '@mui/material/IconButton'
5
import EditIcon from '@mui/icons-material/Edit'
5497 stevensc 6
import DeleteIcon from '@mui/icons-material/Delete'
5499 stevensc 7
import ConfirmModal from '../../../shared/confirm-modal/ConfirmModal'
5478 stevensc 8
 
9
const EducationItem = ({ education, onDelete, onEdit, isEdit }) => {
10
  const [isShowModal, setIsShowModal] = useState(false)
11
 
12
  const toggleConfirmModal = () => {
13
    setIsShowModal(!isShowModal)
14
  }
15
 
16
  return (
17
    <>
18
      <div className="education-item">
19
        <div className="education-item-header">
5481 stevensc 20
          <h3>{education.degree}</h3>
5478 stevensc 21
          {isEdit && (
5564 stevensc 22
            <div className="icon-buttons-group">
5478 stevensc 23
              <IconButton onClick={() => onEdit(education.link_edit)}>
24
                <EditIcon />
25
              </IconButton>
5499 stevensc 26
              <IconButton onClick={toggleConfirmModal}>
5497 stevensc 27
                <DeleteIcon />
5478 stevensc 28
              </IconButton>
29
            </div>
30
          )}
31
        </div>
5481 stevensc 32
        <h4>{education.university}</h4>
5478 stevensc 33
        <p>{`${education.from_year} - ${
34
          education.to_year ? education.to_year : 'Actualidad'
35
        }`}</p>
36
        {education.field_of_study && <p>{education.field_of_study}</p>}
37
        <p>{education.formatted_address}</p>
38
        {education.description && parse(education.description)}
39
      </div>
5499 stevensc 40
      <ConfirmModal
5478 stevensc 41
        show={isShowModal}
5499 stevensc 42
        onClose={toggleConfirmModal}
5478 stevensc 43
        onAccept={() => onDelete(education.link_delete)}
44
      />
45
    </>
46
  )
47
}
48
 
49
export default EducationItem