Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3044 | Rev 3710 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3044 Rev 3704
Línea -... Línea 1...
-
 
1
/* eslint-disable react/prop-types */
1
import React, { useRef, useState } from 'react'
2
import React, { useRef, useState } from 'react'
2
import FileModal from '../../mobile-chat/mobile-chat/chat/fileModal/FileModal';
3
import FileModal from '../../mobile-chat/mobile-chat/chat/fileModal/FileModal';
3
import { axios } from '../../utils';
4
import { axios } from '../../utils';
4
import styles from "../../mobile-chat/mobile-chat/chat/chat.module.scss";
-
 
5
import { addNotification } from '../../redux/notification/notification.actions';
5
import { addNotification } from '../../redux/notification/notification.actions';
6
import { useDispatch } from 'react-redux';
6
import { useDispatch } from 'react-redux';
Línea 7... Línea 7...
7
 
7
 
Línea 65... Línea 65...
65
                        hidden
65
                        hidden
66
                        onChange={handleUploadFile}
66
                        onChange={handleUploadFile}
67
                    />
67
                    />
68
                    <button
68
                    <button
69
                        type="button"
69
                        type="button"
70
                        className={`${styles.inputIcon} ti-clip icon uploadFile text-gray`}
70
                        className='inputIcon ti-clip icon uploadFile text-gray'
71
                        id="uploadFile"
71
                        id="uploadFile"
72
                        onClick={() => fileInputEl.current.click()}
72
                        onClick={() => fileInputEl.current.click()}
73
                    />
73
                    />
74
                    <input
74
                    <input
75
                        type="text"
75
                        type="text"
Línea 79... Línea 79...
79
                        value={text}
79
                        value={text}
80
                        placeholder={backendVars.labelWriteMessage}
80
                        placeholder={backendVars.labelWriteMessage}
81
                        onChange={e => setText(e.target.value || '')}
81
                        onChange={e => setText(e.target.value || '')}
82
                    />
82
                    />
83
                    <button type="submit" className="btn btn-secondary p-1 inmail-submit-btn ">
83
                    <button type="submit" className="btn btn-secondary p-1 inmail-submit-btn ">
84
                        <i class="fas fa-chevron-right"></i>
84
                        <i className="fas fa-chevron-right" />
85
                    </button>
85
                    </button>
86
                </div>
86
                </div>
87
            </form>
87
            </form>
88
            {
88
            {
89
                selectedFile
89
                selectedFile