mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 07:13:08 -05:00
Fix pasting image copied from browser
This commit is contained in:
parent
892986b17c
commit
2059c5a4ae
3 changed files with 63 additions and 68 deletions
|
@ -2348,50 +2348,34 @@ var onPaste = function ( event ) {
|
|||
var fireDrop = false;
|
||||
var hasImage = false;
|
||||
var plainItem = null;
|
||||
var htmlItem = null;
|
||||
var self = this;
|
||||
var l, item, type, types, data;
|
||||
|
||||
// Current HTML5 Clipboard interface
|
||||
// ---------------------------------
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html
|
||||
|
||||
// Edge only provides access to plain text as of 2016-03-11 and gives no
|
||||
// indication there should be an HTML part. However, it does support access
|
||||
// to image data, so check if this is present and use if so.
|
||||
if ( isEdge && items ) {
|
||||
l = items.length;
|
||||
while ( l-- ) {
|
||||
if ( !choosePlain && /^image\/.*/.test( items[l].type ) ) {
|
||||
hasImage = true;
|
||||
}
|
||||
}
|
||||
if ( !hasImage ) {
|
||||
items = null;
|
||||
}
|
||||
}
|
||||
if ( items ) {
|
||||
event.preventDefault();
|
||||
l = items.length;
|
||||
while ( l-- ) {
|
||||
item = items[l];
|
||||
type = item.type;
|
||||
if ( !choosePlain && type === 'text/html' ) {
|
||||
/*jshint loopfunc: true */
|
||||
item.getAsString( function ( html ) {
|
||||
self.insertHTML( html, true );
|
||||
});
|
||||
/*jshint loopfunc: false */
|
||||
return;
|
||||
}
|
||||
if ( type === 'text/plain' ) {
|
||||
if ( type === 'text/html' ) {
|
||||
htmlItem = item;
|
||||
} else if ( type === 'text/plain' ) {
|
||||
plainItem = item;
|
||||
}
|
||||
if ( !choosePlain && /^image\/.*/.test( type ) ) {
|
||||
} else if ( /^image\/.*/.test( type ) ) {
|
||||
hasImage = true;
|
||||
}
|
||||
}
|
||||
// Treat image paste as a drop of an image file.
|
||||
|
||||
// Treat image paste as a drop of an image file. When you copy
|
||||
// an image in Chrome/Firefox (at least), it copies the image data
|
||||
// but also an HTML version (referencing the original URL of the image)
|
||||
// and a plain text version. So we check for image data first, only if
|
||||
// none look for text/html.
|
||||
if ( hasImage ) {
|
||||
event.preventDefault();
|
||||
this.fireEvent( 'dragover', {
|
||||
dataTransfer: clipboardData,
|
||||
/*jshint loopfunc: true */
|
||||
|
@ -2405,6 +2389,19 @@ var onPaste = function ( event ) {
|
|||
dataTransfer: clipboardData
|
||||
});
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// Edge only provides access to plain text as of 2016-03-11 and gives no
|
||||
// indication there should be an HTML part. However, it does support
|
||||
// access to image data, so we check for that first. Otherwise though,
|
||||
// fall through to fallback clipboard handling methods
|
||||
if ( !isEdge ) {
|
||||
event.preventDefault();
|
||||
if ( htmlItem && ( !choosePlain || !plainItem ) ) {
|
||||
htmlItem.getAsString( function ( html ) {
|
||||
self.insertHTML( html, true );
|
||||
});
|
||||
} else if ( plainItem ) {
|
||||
plainItem.getAsString( function ( text ) {
|
||||
self.insertPlainText( text, true );
|
||||
|
@ -2412,6 +2409,7 @@ var onPaste = function ( event ) {
|
|||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Old interface
|
||||
// -------------
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -147,50 +147,34 @@ var onPaste = function ( event ) {
|
|||
var fireDrop = false;
|
||||
var hasImage = false;
|
||||
var plainItem = null;
|
||||
var htmlItem = null;
|
||||
var self = this;
|
||||
var l, item, type, types, data;
|
||||
|
||||
// Current HTML5 Clipboard interface
|
||||
// ---------------------------------
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html
|
||||
|
||||
// Edge only provides access to plain text as of 2016-03-11 and gives no
|
||||
// indication there should be an HTML part. However, it does support access
|
||||
// to image data, so check if this is present and use if so.
|
||||
if ( isEdge && items ) {
|
||||
l = items.length;
|
||||
while ( l-- ) {
|
||||
if ( !choosePlain && /^image\/.*/.test( items[l].type ) ) {
|
||||
hasImage = true;
|
||||
}
|
||||
}
|
||||
if ( !hasImage ) {
|
||||
items = null;
|
||||
}
|
||||
}
|
||||
if ( items ) {
|
||||
event.preventDefault();
|
||||
l = items.length;
|
||||
while ( l-- ) {
|
||||
item = items[l];
|
||||
type = item.type;
|
||||
if ( !choosePlain && type === 'text/html' ) {
|
||||
/*jshint loopfunc: true */
|
||||
item.getAsString( function ( html ) {
|
||||
self.insertHTML( html, true );
|
||||
});
|
||||
/*jshint loopfunc: false */
|
||||
return;
|
||||
}
|
||||
if ( type === 'text/plain' ) {
|
||||
if ( type === 'text/html' ) {
|
||||
htmlItem = item;
|
||||
} else if ( type === 'text/plain' ) {
|
||||
plainItem = item;
|
||||
}
|
||||
if ( !choosePlain && /^image\/.*/.test( type ) ) {
|
||||
} else if ( /^image\/.*/.test( type ) ) {
|
||||
hasImage = true;
|
||||
}
|
||||
}
|
||||
// Treat image paste as a drop of an image file.
|
||||
|
||||
// Treat image paste as a drop of an image file. When you copy
|
||||
// an image in Chrome/Firefox (at least), it copies the image data
|
||||
// but also an HTML version (referencing the original URL of the image)
|
||||
// and a plain text version. So we check for image data first, only if
|
||||
// none look for text/html.
|
||||
if ( hasImage ) {
|
||||
event.preventDefault();
|
||||
this.fireEvent( 'dragover', {
|
||||
dataTransfer: clipboardData,
|
||||
/*jshint loopfunc: true */
|
||||
|
@ -204,6 +188,19 @@ var onPaste = function ( event ) {
|
|||
dataTransfer: clipboardData
|
||||
});
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// Edge only provides access to plain text as of 2016-03-11 and gives no
|
||||
// indication there should be an HTML part. However, it does support
|
||||
// access to image data, so we check for that first. Otherwise though,
|
||||
// fall through to fallback clipboard handling methods
|
||||
if ( !isEdge ) {
|
||||
event.preventDefault();
|
||||
if ( htmlItem && ( !choosePlain || !plainItem ) ) {
|
||||
htmlItem.getAsString( function ( html ) {
|
||||
self.insertHTML( html, true );
|
||||
});
|
||||
} else if ( plainItem ) {
|
||||
plainItem.getAsString( function ( text ) {
|
||||
self.insertPlainText( text, true );
|
||||
|
@ -211,6 +208,7 @@ var onPaste = function ( event ) {
|
|||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Old interface
|
||||
// -------------
|
||||
|
|
Loading…
Reference in a new issue