Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
5344 stevensc 1
/* eslint-disable react/prop-types */
2
import React, { Suspense, useRef, useState } from 'react'
3
import AttachFileIcon from '@mui/icons-material/AttachFile'
4
import SentimentVerySatisfiedRoundedIcon from '@mui/icons-material/SentimentVerySatisfiedRounded'
5
import Emojione from '../../chat/chat/personal-chat/emojione/Emojione'
6
const SendFileModal = React.lazy(() => import('../../chat/chat/personal-chat/send-file-modal/SendFileModal'))
7
 
8
const TextBox = ({
9
  uploadUrl = '',
10
  isNotSeen = false,
11
  markRead = () => false,
12
  onSend
13
}) => {
14
  const [showEmojiTab, setShowEmojiTab] = useState(false)
15
  const [showFileModal, setShowFileModal] = useState(false)
16
  const textAreaEl = useRef(null)
17
 
18
  const handleshowFileModal = () => setShowFileModal(!showFileModal)
19
 
20
  const handleShowEmojiTab = () => setShowEmojiTab(!showEmojiTab)
21
 
22
  const handleClickEmoji = (e) => {
23
    const shortname = e.currentTarget.dataset.shortname
24
    const currentText = textAreaEl.current.value
25
    const cursorPosition = textAreaEl.current.selectionStart
26
    const textBehind = currentText.substring(0, cursorPosition)
27
    const textForward = currentText.substring(cursorPosition)
28
    const unicode = emojione.shortnameToUnicode(shortname)
29
    textAreaEl.current.value = `${textBehind}${unicode}${textForward}`
30
    textAreaEl.current.focus()
31
    textAreaEl.current.setSelectionRange(
32
      cursorPosition + unicode.length,
33
      cursorPosition + unicode.length
34
    )
35
  }
36
 
37
  const onKeyDown = async (e) => {
38
    if (e.key !== 'Enter') return false
39
    e.preventDefault()
40
    const message = e.target.value
41
    await onSend(message)
42
    e.target.value = ''
43
    setShowEmojiTab(false)
44
  }
45
 
46
  return (
47
        <>
48
            <div className="block-wchat">
49
                <AttachFileIcon className='btn' onClick={handleshowFileModal} />
50
                <SentimentVerySatisfiedRoundedIcon className="btn" onClick={handleShowEmojiTab} />
51
                <textarea
52
                    placeholder={CHAT_LABELS.WRITE_A_MESSAGE}
53
                    onKeyDown={onKeyDown}
54
                    ref={textAreaEl}
55
                    onFocus={() => isNotSeen && markRead()}
56
                />
57
                <div className="wchat-box-items-overlay-container" style={{ display: showEmojiTab ? 'block' : 'none' }}>
58
                    <Emojione onClickEmoji={handleClickEmoji} />
59
                </div>
60
            </div>
61
            {showFileModal &&
62
                <Suspense fallback={null}>
63
                    <SendFileModal
64
                        show={true}
65
                        onHide={() => setShowFileModal(false)}
66
                        urlUpload={uploadUrl}
67
                    />
68
                </Suspense>
69
            }
70
        </>
71
  )
72
}
73
 
74
export default TextBox