Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
6999 stevensc 1
import React, { useState, useLayoutEffect, useEffect } from 'react'
2
import { axios } from '../../utils'
3
import { useDispatch } from 'react-redux'
4
import { getBackendVars } from '../../services/backendVars'
5
import { addNotification } from '../../redux/notification/notification.actions'
6
import { Col, Container, Row } from 'react-bootstrap'
7
import DeleteOutline from '@mui/icons-material/DeleteOutline'
8
 
9
import Options from '../../components/UI/Option'
10
import ConfirmModal from '../../components/modals/ConfirmModal'
11
import EmptySection from '../../components/UI/EmptySection'
12
import ProfileInfo from '../../components/widgets/default/ProfileWidget'
13
 
14
const NotificationsPage = () => {
15
  const [userInfo, setuserInfo] = useState({})
16
  const [notifications, setNotifications] = useState([])
17
  const [confirmModalShow, setConfirmModalShow] = useState(false)
18
  const dispatch = useDispatch()
19
 
20
  const { image, full_name, country, visits, connections, description } =
21
    userInfo
22
 
23
  const getNotifications = async () => {
24
    axios
25
      .get('/notifications')
26
      .then((response) => {
27
        const { data, success } = response.data
28
 
29
        if (!success) {
30
          const errorMessage =
31
            typeof data === 'string'
32
              ? data
33
              : 'Ha ocurrido un error, por favor intente más tarde'
34
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
35
          return
36
        }
37
 
38
        setNotifications(data)
39
      })
40
      .catch((error) => {
41
        console.log('>>: error > ', error)
42
      })
43
  }
44
 
45
  const deleteAllNotifications = () => {
46
    axios
47
      .post('/notifications/clear')
48
      .then((response) => {
49
        const { data, success } = response.data
50
        if (!success) {
51
          dispatch(addNotification({ style: 'danger', msg: data }))
52
          return
53
        }
54
 
55
        dispatch(addNotification({ style: 'success', msg: data }))
56
        setNotifications([])
57
      })
58
      .catch((err) => {
59
        dispatch(addNotification({ style: 'danger', msg: `Error: ${err}` }))
60
        throw new Error(err)
61
      })
62
  }
63
 
64
  const deleteNotification = (url) => {
65
    axios
66
      .post(url)
67
      .then((response) => {
68
        const { data, success } = response.data
69
 
70
        if (!success) {
71
          dispatch(addNotification({ style: 'danger', msg: data }))
72
          return
73
        }
74
 
75
        const newNotifications = notifications.filter(
76
          ({ link_delete }) => link_delete !== url
77
        )
78
 
79
        setNotifications(newNotifications)
80
        dispatch(addNotification({ style: 'success', msg: data }))
81
      })
82
      .catch((err) => {
83
        dispatch(addNotification({ style: 'danger', msg: `Error: ${err}` }))
84
        throw new Error(err)
85
      })
86
  }
87
 
88
  const toggleConfirmModal = () => {
89
    setConfirmModalShow(!confirmModalShow)
90
  }
91
 
92
  useEffect(() => {
93
    getBackendVars('/helpers/menu')
94
      .then(
95
        ({ image, full_name, country, visits, connections, description }) => {
96
          setuserInfo({
97
            image,
98
            full_name,
99
            country,
100
            visits,
101
            connections,
102
            description,
103
          })
104
        }
105
      )
106
      .catch((err) => {
107
        console.log(err)
108
        throw new Error(err)
109
      })
110
  }, [])
111
 
112
  useLayoutEffect(() => {
113
    getNotifications()
114
  }, [])
115
 
116
  return (
117
    <>
118
      <Container as="main">
119
        <Row>
120
          <Col as="aside" md="4" className="d-none d-md-flex">
121
            <ProfileInfo
122
              image={image}
123
              fullName={full_name}
124
              description={description}
125
              visits={visits}
126
              country={country}
127
              connections={connections}
128
            />
129
          </Col>
130
          <Col as="section" md="8" className="notification-list">
131
            <div className="notification-header position-relative">
132
              <h2>Notificaciones</h2>
133
              <Options
134
                options={[
135
                  {
136
                    label: 'Borrar notificaciones',
137
                    action: toggleConfirmModal,
138
                  },
139
                ]}
140
              />
141
            </div>
142
            <ul>
143
              {notifications.length ? (
144
                [...notifications].reverse().map((notification, index) => (
145
                  <li key={index}>
146
                    <NotificationsPage.Item
147
                      onDelete={deleteNotification}
148
                      {...notification}
149
                    />
150
                  </li>
151
                ))
152
              ) : (
153
                <EmptySection message="No hay notificaciones" align="center" />
154
              )}
155
            </ul>
156
          </Col>
157
        </Row>
158
      </Container>
159
      <ConfirmModal
160
        show={confirmModalShow}
161
        onClose={toggleConfirmModal}
162
        onAccept={() => {
163
          deleteAllNotifications()
164
          toggleConfirmModal()
165
        }}
166
      />
167
    </>
168
  )
169
}
170
 
171
const Item = ({ link_delete, link, message, time_elapsed, onDelete }) => {
172
  return (
173
    <div className="notification-item">
174
      <div className="d-flex align-items-center justify-content-between gap-2">
175
        <a href={link}>{message}</a>
176
        <DeleteOutline
177
          className="cursor-pointer"
178
          onClick={() => onDelete(link_delete)}
179
        />
180
      </div>
181
      <span>{time_elapsed}</span>
182
    </div>
183
  )
184
}
185
 
186
NotificationsPage.Item = Item
187
 
188
export default NotificationsPage