Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
6956 stevensc 1
import React, { useCallback, useEffect, useRef, useState } from 'react'
2
import { axios } from '../../utils'
6981 stevensc 3
import { useParams } from 'react-router-dom'
6956 stevensc 4
import { addNotification } from '../../redux/notification/notification.actions'
5
import { Col, Container, Row } from 'react-bootstrap'
6981 stevensc 6
import { useDispatch, useSelector } from 'react-redux'
6956 stevensc 7
import QuestionAnswerRoundedIcon from '@mui/icons-material/QuestionAnswerRounded'
8
import SearchIcon from '@mui/icons-material/Search'
9
 
10
import EmptySection from '../../components/UI/EmptySection'
11
import InmailChat from '../../components/chat/InmailChat'
12
import Contacts from '../../components/chat/Contacts'
13
import StartConversationModal from '../../components/modals/StartConversationModal'
14
 
15
const InmailPage = () => {
16
  const [conversations, setConversations] = useState([])
17
  const [currentConversation, setCurrentConversation] = useState(null)
18
  const [search, setSearch] = useState('')
19
  const [loading, setLoading] = useState(false)
20
  const [showConversationModal, setShowConversationModal] = useState(false)
21
  const options = useRef([
22
    {
23
      label: 'Iniciar conversación',
24
      action: () => toggleConversationModal(),
25
    },
26
  ])
6968 stevensc 27
  const { uuid } = useParams()
6956 stevensc 28
  const labels = useSelector(({ intl }) => intl.labels)
29
  const dispatch = useDispatch()
30
 
31
  const toggleConversationModal = () => {
32
    setShowConversationModal(!showConversationModal)
33
  }
34
 
35
  const getConversations = async () => {
6984 stevensc 36
    setLoading(true)
37
    axios
38
      .get(window.location.href)
39
      .then((response) => {
40
        const { data, success } = response.data
41
 
42
        if (!success) {
43
          return
44
        }
45
 
46
        const resConversations = data
47
        const newConversations = resConversations.reduce(
48
          (acum, conversation) => {
6989 stevensc 49
            const messageIndex = conversations.findIndex(({ uuid }) => {
50
              console.log(uuid)
51
              console.log(conversation.uuid)
52
              return uuid === conversation.uuid
53
            })
6984 stevensc 54
 
55
            if (messageIndex === -1) {
56
              acum = [...acum, conversation]
57
            }
58
 
59
            return acum
60
          },
61
          []
62
        )
63
 
6989 stevensc 64
        console.log(newConversations)
65
 
6984 stevensc 66
        if (!newConversations.length) {
67
          return
68
        }
69
 
6987 stevensc 70
        setConversations(resConversations)
6984 stevensc 71
      })
72
      .catch((error) => {
73
        const errorMessage = new Error(error)
74
        dispatch(
75
          addNotification({ style: 'danger', msg: errorMessage.message })
76
        )
77
      })
78
      .finally(() => setLoading(false))
6956 stevensc 79
  }
80
 
81
  const changeConversation = (conversation) => {
82
    setCurrentConversation(conversation)
83
  }
84
 
85
  const filterConversations = useCallback(
86
    () =>
87
      conversations.filter((conversation) =>
88
        conversation.name.toLowerCase().includes(search.toLowerCase())
89
      ),
90
 
91
    [search, conversations]
92
  )
93
 
94
  useEffect(() => {
95
    if (loading) return
96
 
97
    const messagesInterval = setTimeout(() => {
98
      getConversations()
99
    }, 2000)
100
 
101
    return () => {
102
      clearTimeout(messagesInterval)
103
    }
104
  }, [loading])
105
 
6968 stevensc 106
  useEffect(() => {
6985 stevensc 107
    if (uuid && !currentConversation) {
6968 stevensc 108
      const conversation = conversations.find((c) => c.uuid === uuid)
6980 stevensc 109
      conversation && setCurrentConversation(conversation)
6968 stevensc 110
    }
6980 stevensc 111
  }, [conversations, uuid])
6968 stevensc 112
 
6956 stevensc 113
  return (
114
    <>
115
      <Container>
116
        <Row>
6976 stevensc 117
          <Col
118
            md="4"
6977 stevensc 119
            className={currentConversation ? 'd-none d-md-flex' : 'd-flex'}
6976 stevensc 120
          >
6956 stevensc 121
            <Contacts>
6959 stevensc 122
              <Contacts.Header options={options.current}>
123
                <h1>Inmail</h1>
6956 stevensc 124
              </Contacts.Header>
125
 
126
              <div className="contact__search show">
127
                <SearchIcon />
128
                <input
129
                  type="text"
130
                  placeholder="Buscar"
131
                  onChange={(e) => setSearch(e.target.value)}
132
                />
133
              </div>
134
 
135
              <Contacts.List
136
                contacts={filterConversations()}
137
                onChange={changeConversation}
138
                currentConversation={currentConversation}
139
              />
140
            </Contacts>
141
          </Col>
6976 stevensc 142
          <Col
143
            md="8"
6977 stevensc 144
            className={currentConversation ? 'd-flex' : 'd-none d-md-flex'}
6976 stevensc 145
          >
6956 stevensc 146
            {currentConversation ? (
147
              <InmailChat
148
                conversation={currentConversation}
149
                changeConversation={changeConversation}
150
              />
151
            ) : (
152
              <EmptySection
153
                message={labels.select_conversation}
154
                Icon={<QuestionAnswerRoundedIcon />}
155
                align="center"
156
              />
157
            )}
158
          </Col>
159
        </Row>
160
      </Container>
161
      <StartConversationModal
162
        show={showConversationModal}
163
        setConversation={changeConversation}
164
        onClose={toggleConversationModal}
165
      />
166
    </>
167
  )
168
}
169
 
170
export default InmailPage