Merge pull request #95 from jamesjulich/paste-image

Support pasting images as attachments. Fixes #87.
This commit is contained in:
Ajay Bura 2021-09-14 07:50:07 +05:30 committed by GitHub
commit 470fdd62bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -285,6 +285,32 @@ function RoomViewInput({
}
}
function handlePaste(e) {
if (e.clipboardData === false) {
return;
}
if (e.clipboardData.items === undefined) {
return;
}
for (let i = 0; i < e.clipboardData.items.length; i += 1) {
const item = e.clipboardData.items[i];
if (item.type.indexOf('image') !== -1) {
const image = item.getAsFile();
if (attachment === null) {
setAttachment(image);
if (image !== null) {
roomsInput.setAttachment(roomId, image);
return;
}
} else {
return;
}
}
}
}
function addEmoji(emoji) {
textAreaRef.current.value += emoji.unicode;
}
@ -315,6 +341,7 @@ function RoomViewInput({
<TextareaAutosize
ref={textAreaRef}
onChange={handleMsgTyping}
onPaste={handlePaste}
onResize={() => timelineScroll.autoReachBottom()}
onKeyDown={handleKeyDown}
placeholder="Send a message..."