1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
import React, { useState, useEffect, useRef } from 'react';
import PropTypes from 'prop-types';
import { useFormState } from 'react-use-form-state';
import { MessageType } from './Types';
import Icon from './Icon';
import Button from './Button';
import UploadButton from './UploadButton';
export default function MessageInput({ text, data, rows, children, onSend }) {
let textareaRef = useRef();
let fileinput = useRef();
let updateFocus = () => {
const isDesktop = window.matchMedia('(min-width: 62.5rem)');
if (isDesktop.matches) {
textareaRef.current.focus();
}
};
useEffect(() => {
updateFocus();
}, []);
let handleCtrlEnter = (event) => {
if (event.ctrlKey && (event.charCode == 10 || event.charCode == 13)) {
onSubmit({});
}
};
let textChanged = (event) => {
const el = textareaRef.current;
const offset = el.offsetHeight - el.clientHeight;
const height = el.scrollHeight + offset;
el.style.height = `${height + offset}px`;
};
const [attach, setAttach] = useState('');
const [formState, { textarea }] = useFormState({
body: text
});
let uploadValueChanged = (attach) => {
setAttach(attach);
};
let onSubmit = (event) => {
if (event.preventDefault) {
event.preventDefault();
}
const input = fileinput.current;
onSend({
mid: data.mid,
rid: data.rid || 0,
body: formState.values.body,
attach: attach ? input.files[0] : '',
to: data.to || {}
});
setAttach('');
formState.clearField('body');
textareaRef.current.style.height = '';
updateFocus();
};
return (
<form className="msg-comment-target" style={{ padding: '12px' }} onSubmit={onSubmit}>
<div style={commentStyle}>
<textarea onChange={textChanged} onKeyPress={handleCtrlEnter}
ref={textareaRef} style={textInputStyle}
rows={rows || '1'} placeholder={children} {...textarea('body')} />
<div style={inputBarStyle}>
<UploadButton inputRef={fileinput} value={attach} onChange={uploadValueChanged} />
<Button onClick={onSubmit}><Icon name="ei-envelope" size="s" />Send</Button>
</div>
</div>
</form>
);
}
const commentStyle = {
display: 'flex',
flexDirection: 'column',
borderTop: '1px #eee solid',
width: '100%',
marginTop: '10px'
};
const inputBarStyle = {
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
padding: '3px'
};
const textInputStyle = {
overflow: 'hidden',
resize: 'none',
display: 'block',
boxSizing: 'border-box',
border: 0,
outline: 'none',
padding: '4px'
};
MessageInput.propTypes = {
children: PropTypes.node,
data: MessageType.isRequired,
onSend: PropTypes.func.isRequired,
rows: PropTypes.string,
text: PropTypes.string
};
|