Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
5112 stevensc 1
/* eslint-disable camelcase */
4250 stevensc 2
/* eslint-disable react/prop-types */
3
/* eslint-disable react/jsx-key */
5110 stevensc 4
import React, { useEffect, useState } from 'react'
5
import axios from '../../../../utils/axios'
6
import { connect } from 'react-redux'
7
import { HiOutlineTag } from 'react-icons/hi'
8
import { addNotification } from '../../../../redux/notification/notification.actions'
4250 stevensc 9
 
10
const ICON_OPTIONS = [
11
  <img src="/images/icons/home.png" className="img-icon lg" />,
12
  <img src="/images/icons/conecctions.png" className="img-icon lg" />,
13
  <img src="/images/icons/company.png" className="img-icon lg" />,
14
  <img src="/images/icons/groups.png" className="img-icon lg" />,
15
  <HiOutlineTag />
16
]
17
 
18
const ADD_OPTIONS = [
5110 stevensc 19
  <i className="fa fa-calendar img-icon lg" />
4250 stevensc 20
]
21
 
22
const NavLinks = ({ menuData, sessionLink, addNotification }) => {
23
  const [menuItems, setMenuItems] = useState(menuData || [])
24
  const [aditionalItems, setAditionalItems] = useState([])
25
  const [notifications, setNotifications] = useState([])
26
  const [notificationsCount, setNotificationsCount] = useState(0)
27
  const [totalMessages, setTotalMessages] = useState(0)
5110 stevensc 28
  const [loading, setLoading] = useState(false)
4250 stevensc 29
 
30
  useEffect(() => {
31
    handleNotifications()
32
  }, [notificationsCount])
33
 
34
  useEffect(() => {
35
    if (menuData.length > 5) {
36
      setMenuItems(menuData.splice(0, 5))
37
      setAditionalItems(menuData.splice(menuData.length - 5))
38
    }
39
  }, [])
40
 
41
  useEffect(() => {
5110 stevensc 42
    let timer
4250 stevensc 43
    if (!loading) {
5110 stevensc 44
      timer = setTimeout(() => checkSession(), 1000)
4250 stevensc 45
    }
46
    return () => {
5110 stevensc 47
      clearTimeout(timer)
48
    }
4250 stevensc 49
  }, [loading])
50
 
51
  const checkSession = async () => {
52
    try {
53
      setLoading(true)
54
 
55
      const { data: response } = await axios.get(sessionLink)
56
      const { total_messages, total_notifications } = response.data
57
 
58
      if (response.success) {
59
        setNotificationsCount(Number(total_notifications))
60
        setTotalMessages(Number(total_messages))
61
      }
62
 
63
      setLoading(false)
64
    } catch (error) {
65
      console.log(error)
66
    }
67
  }
68
 
69
  const readNotification = (link_read, link_notification) => {
70
    axios.post(link_read)
71
      .then(({ data }) =>
72
        data.success
73
          ? window.open(link_notification, '_blank').focus()
74
          : addNotification({ style: 'danger', msg: data.data }))
75
  }
76
 
77
  const deleteNotification = (link_delete) => {
78
    axios.post(link_delete)
79
      .then(({ data }) => {
80
        !data.success && addNotification({ style: 'danger', msg: data.data })
81
        setNotificationsCount(prev => prev - 1)
82
        setNotifications(notifications.filter(notification => notification.link_delete !== link_delete))
83
        addNotification({ style: 'success', msg: data.data })
84
      })
85
  }
86
 
87
  const handleNotifications = () => {
88
    axios.get('/notifications/unreads')
89
      .then(({ data }) => {
90
        if (data.success) {
5110 stevensc 91
          const notifications = new Set(data.data.notifications)
4250 stevensc 92
          setNotifications([...notifications])
93
        }
94
      })
95
      .catch(err => {
96
        addNotification({
5110 stevensc 97
          style: 'error',
98
          msg: 'Disculpe, ha ocurrido un error buscando notificaciones'
4250 stevensc 99
        })
100
        console.log('>>: err > ', err)
101
      })
102
  }
103
 
5004 stevensc 104
  const handleAjaxRequest = async (url) => {
105
    try {
106
      const { data } = await axios.get(url)
107
      if (data.success) window.open(data.data, '_backend')
108
    } catch (error) {
109
      console.log('>>: error > ', error)
110
    }
111
  }
112
 
4250 stevensc 113
  return (
114
    <ul>
115
      {menuItems.map((item, index) =>
116
        <li key={index}>
117
          <a
5145 stevensc 118
            href={`/${item.href}`}
5004 stevensc 119
            onClick={(e) => {
120
              if (item.ajax) {
121
                e.preventDefault()
122
                handleAjaxRequest(item.href)
123
              }
124
              if (item.childs.length) {
125
                e.preventDefault()
126
              }
127
            }}
4250 stevensc 128
          >
129
            {ICON_OPTIONS[index]}
130
            <p>{item.label}</p>
131
          </a>
132
          {!!item.childs.length &&
133
            <nav className='navLinkDropdown'>
134
              <ul>
135
                {item.childs.map((_element, _i) =>
136
                  <li key={_i}>
5145 stevensc 137
                    <a
138
                      href={`/${_element.href}`}
139
                      target='framename'
140
                      onClick={(e) => {
141
                        if (_element.childs?.length) e.preventDefault()
142
                      }}>
143
                      {_element.label}
144
                    </a>
4250 stevensc 145
                    {!!_element.childs?.length &&
146
                      <>
147
                        <i className="fa fa-angle-right" />
5110 stevensc 148
                        <nav className='navigation-level_three'>
4250 stevensc 149
                          <ul>
150
                            {_element.childs?.map((levelThree, index) =>
151
                              <li key={index}>
5145 stevensc 152
                                <a href={`/${levelThree.href}`}>
4250 stevensc 153
                                  {levelThree.label}
154
                                </a>
155
                              </li>
156
                            )}
157
                          </ul>
158
                        </nav>
159
                      </>
160
                    }
161
                  </li>
162
                )}
163
              </ul>
164
            </nav>
165
          }
166
        </li>
167
      )}
168
      <li>
169
        <a href="/inmail">
170
          <i className="fa fa-envelope-o" />
171
          <p>Inmail</p>
172
          <span className={`badge ${totalMessages ? 'd-block' : 'd-none'}`}>
173
            {totalMessages}
174
          </span>
175
        </a>
176
      </li>
177
      <li className='d-md-none'>
178
        <a href="/chat">
179
          <i className="fa fa-comment-o" />
180
          <p>Chat</p>
181
          <span className="badge" />
182
        </a>
183
      </li>
184
      {!!aditionalItems.length &&
185
        <li>
186
          <a
187
            href={'#'}
188
            onClick={(e) => e.preventDefault()}
189
          >
190
            <i className="fa fa-inbox img-icon lg" />
191
            <p>Comunicación</p>
192
          </a>
193
          <div className="aditional_links">
194
            <ul>
195
              {aditionalItems.map((item, index) =>
196
                <li key={index}>
5145 stevensc 197
                  <a href={`/${item.href}`}>
4250 stevensc 198
                    {ADD_OPTIONS[index] || null}
199
                    <p>{item.label}</p>
200
                  </a>
201
                </li>
202
              )}
203
              <li>
204
                <a href="/notifications">
205
                  <img src="/images/icons/bell.png" className="img-icon lg" />
206
                  <p>Notificaciones</p>
207
                  <span className={`badge ${notificationsCount ? 'd-block' : 'd-none'}`}>
208
                    {notificationsCount}
209
                  </span>
210
                </a>
211
                {!!notifications.length &&
5117 stevensc 212
                  <nav className='navigation-level_three'>
4250 stevensc 213
                    <ul>
214
                      {[...notifications].reverse().map(element => {
215
                        return (
5463 stevensc 216
                          <li key={element.message}>
5112 stevensc 217
                            <div className="d-flex align-items-center">
4250 stevensc 218
                              <a
219
                                href={element.link}
220
                                onClick={(e) => {
221
                                  e.preventDefault()
222
                                  readNotification(element.link_mark_read, element.link)
223
                                }}
224
                              >
225
                                {element.message}
226
                              </a>
227
                              <i className="ml-3 fa fa-trash-o cursor-pointer" onClick={() => deleteNotification(element.link_delete)} />
228
                            </div>
229
                            <small style={{ fontSize: '.85rem' }}>
230
                              {element.time_elapsed}
231
                            </small>
232
                          </li>
233
                        )
234
                      })
235
                      }
236
                    </ul>
237
                  </nav>
238
                }
239
              </li>
240
            </ul>
241
          </div>
242
        </li>
243
      }
244
    </ul>
5110 stevensc 245
  )
246
}
4250 stevensc 247
 
248
const mapDispatchToProps = {
5110 stevensc 249
  addNotification: (notification) => addNotification(notification)
250
}
4250 stevensc 251
 
5110 stevensc 252
export default connect(null, mapDispatchToProps)(NavLinks)