ui/app/components/input-paste/component.js

37 lines
832 B
JavaScript

import Ember from 'ember';
export default Ember.TextField.extend({
_onPaste: null,
didInsertElement: function() {
this._super();
this.set('_onPaste', this.handlePaste.bind(this));
this.$().on('paste', this.get('_onPaste'));
},
willDestroyElement: function() {
this.$().off('paste', this.get('_onPaste'));
this._super();
},
handlePaste: function(event) {
var e = event.originalEvent;
if ( e && e.clipboardData && e.clipboardData.getData )
{
if ( /text\/plain/.test(e.clipboardData.types) )
{
var text = e.clipboardData.getData('text/plain');
if ( text )
{
e.stopPropagation();
e.preventDefault();
this.sendAction('pasted',text, event.target);
return false;
}
}
return true;
}
}
});