Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7280 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7279 stevensc 1
import React, { useEffect, useState } from 'react'
2
import { axios } from '../../utils'
3
import { useDispatch } from 'react-redux'
4
import { addNotification } from '../../redux/notification/notification.actions'
5
import styled from 'styled-components'
6
 
7
import WidgetLayout from '../widgets/WidgetLayout'
8
import EmptySection from '../UI/EmptySection'
9
 
10
const StyledContainer = styled(WidgetLayout)`
11
  padding: 1rem;
12
  h2 {
13
    font-size: 1.1rem;
14
    font-weight: 600;
15
    color: var(--title-color);
16
  }
17
`
18
 
19
const EventsList = () => {
20
  const [eventsAndTasks, setEventsAndTasks] = useState([])
21
  const dispatch = useDispatch()
22
 
23
  const getEvents = () => {
24
    axios
25
      .get('/helpers/next-events')
26
      .then((response) => {
27
        const { success, data } = response.data
28
 
29
        if (!success) {
30
          dispatch(addNotification({ style: 'danger', message: data }))
31
          return
32
        }
33
 
34
        setEventsAndTasks(data)
35
      })
36
      .catch((error) => {
37
        dispatch(
38
          addNotification({ style: 'danger', message: 'Ha ocurrido un error' })
39
        )
40
        throw new Error(error)
41
      })
42
  }
43
 
44
  useEffect(() => {
45
    getEvents()
46
  }, [])
47
 
48
  return (
49
    <StyledContainer>
50
      <h2>Eventos y Tareas</h2>
51
 
52
      <ul>
53
        {eventsAndTasks.length ? (
54
          eventsAndTasks.map((event) => {
55
            const eventStart = new Date(event.start).toLocaleString()
56
            const eventEnd = new Date(event.end).toLocaleString()
57
 
58
            return (
59
              <li key={event.id}>
60
                <a href={event.url} target="_blank" rel="noreferrer">
61
                  <div
62
                    className="calendar-event"
63
                    style={{
64
                      color: event.textColor,
65
                      background: event.backgroundColor,
66
                    }}
67
                  >
68
                    <h4>
69
                      <b>Evento: </b> {event.title}
70
                    </h4>
71
                    <span>
72
                      <b>Inicio: </b>
73
                      {eventStart}
74
                    </span>
75
                    {event.end && (
76
                      <span>
77
                        <b>Fin: </b>
78
                        {eventEnd}
79
                      </span>
80
                    )}
81
                  </div>
82
                </a>
83
              </li>
84
            )
85
          })
86
        ) : (
87
          <EmptySection message="No hay eventos disponibles" />
88
        )}
89
      </ul>
90
    </StyledContainer>
91
  )
92
}
93
 
94
export default EventsList