Fix onPaste handler to work with copying files from Finder
This commit is contained in:
parent
6a916757df
commit
ee8d1f51c2
1 changed files with 5 additions and 7 deletions
|
@ -445,13 +445,11 @@ export default class SendMessageComposer extends React.Component {
|
||||||
|
|
||||||
_onPaste = (event) => {
|
_onPaste = (event) => {
|
||||||
const {clipboardData} = event;
|
const {clipboardData} = event;
|
||||||
// Prioritize text on the clipboard over files as Office on macOS puts a bitmap
|
// Prioritize text on the clipboard over files if RTF is present as Office on macOS puts a bitmap
|
||||||
// in the clipboard as well as the content being copied.
|
// in the clipboard as well as the content being copied. Modern versions of Office seem to not do this anymore.
|
||||||
if (clipboardData.files.length && !clipboardData.types.some(t => t === "text/plain")) {
|
// We check text/rtf instead of text/plain as when copy+pasting a file from Finder it puts the filename
|
||||||
// This actually not so much for 'files' as such (at time of writing
|
// in as text/plain which we want to ignore.
|
||||||
// neither chrome nor firefox let you paste a plain file copied
|
if (clipboardData.files.length && !clipboardData.types.includes("text/rtf")) {
|
||||||
// from Finder) but more images copied from a different website
|
|
||||||
// / word processor etc.
|
|
||||||
ContentMessages.sharedInstance().sendContentListToRoom(
|
ContentMessages.sharedInstance().sendContentListToRoom(
|
||||||
Array.from(clipboardData.files), this.props.room.roomId, this.context,
|
Array.from(clipboardData.files), this.props.room.roomId, this.context,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue