2010-01-07 03:19:50 +00:00
|
|
|
/*
|
|
|
|
* jquery.simulate - simulate browser mouse and keyboard events
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2010-01-07 03:19:50 +00:00
|
|
|
*
|
2012-07-04 13:08:08 +00:00
|
|
|
* Copyright 2012 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2010-01-07 03:19:50 +00:00
|
|
|
*/
|
|
|
|
|
2011-10-31 19:06:05 +00:00
|
|
|
;(function( $ ) {
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
var rkeyEvent = /^key/,
|
|
|
|
rmouseEvent = /^(?:mouse|contextmenu)|click/;
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
$.fn.simulate = function( type, options ) {
|
|
|
|
return this.each(function() {
|
|
|
|
new $.simulate( this, type, options );
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$.simulate = function( elem, type, options ) {
|
|
|
|
var method = $.camelCase( "simulate-" + type );
|
|
|
|
|
|
|
|
this.target = elem;
|
2010-01-07 03:19:50 +00:00
|
|
|
this.options = options;
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
if ( this[ method ] ) {
|
|
|
|
this[ method ]();
|
2010-01-07 03:19:50 +00:00
|
|
|
} else {
|
2012-03-01 03:08:47 +00:00
|
|
|
this.simulateEvent( elem, type, options );
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
2011-10-31 19:06:05 +00:00
|
|
|
};
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2011-10-31 19:06:05 +00:00
|
|
|
$.extend( $.simulate.prototype, {
|
2012-03-01 03:08:47 +00:00
|
|
|
simulateEvent: function( elem, type, options ) {
|
|
|
|
var event = this.createEvent( type, options );
|
|
|
|
this.dispatchEvent( elem, type, event, options );
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
2012-03-01 03:08:47 +00:00
|
|
|
|
2011-10-31 19:06:05 +00:00
|
|
|
createEvent: function( type, options ) {
|
2012-03-01 03:08:47 +00:00
|
|
|
if ( rkeyEvent.test( type ) ) {
|
|
|
|
return this.keyEvent( type, options );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( rmouseEvent.test( type ) ) {
|
2011-10-31 19:06:05 +00:00
|
|
|
return this.mouseEvent( type, options );
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
|
|
|
},
|
2012-03-01 03:08:47 +00:00
|
|
|
|
2011-10-31 19:06:05 +00:00
|
|
|
mouseEvent: function( type, options ) {
|
2012-03-01 03:08:47 +00:00
|
|
|
var event, eventDoc, doc, body;
|
|
|
|
options = $.extend({
|
2011-10-31 19:06:05 +00:00
|
|
|
bubbles: true,
|
|
|
|
cancelable: (type !== "mousemove"),
|
|
|
|
view: window,
|
|
|
|
detail: 0,
|
|
|
|
screenX: 0,
|
|
|
|
screenY: 0,
|
2012-03-01 03:08:47 +00:00
|
|
|
// TODO: default clientX/Y to a position within the target element
|
|
|
|
clientX: 1,
|
|
|
|
clientY: 1,
|
2011-10-31 19:06:05 +00:00
|
|
|
ctrlKey: false,
|
|
|
|
altKey: false,
|
|
|
|
shiftKey: false,
|
|
|
|
metaKey: false,
|
|
|
|
button: 0,
|
|
|
|
relatedTarget: undefined
|
|
|
|
}, options );
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
if ( document.createEvent ) {
|
|
|
|
event = document.createEvent( "MouseEvents" );
|
|
|
|
event.initMouseEvent( type, options.bubbles, options.cancelable,
|
|
|
|
options.view, options.detail,
|
|
|
|
options.screenX, options.screenY, options.clientX, options.clientY,
|
|
|
|
options.ctrlKey, options.altKey, options.shiftKey, options.metaKey,
|
|
|
|
options.button, options.relatedTarget || document.body.parentNode );
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2012-01-12 13:59:34 +00:00
|
|
|
// IE 9+ creates events with pageX and pageY set to 0.
|
|
|
|
// Trying to modify the properties throws an error,
|
|
|
|
// so we define getters to return the correct values.
|
2012-03-01 03:08:47 +00:00
|
|
|
if ( event.pageX === 0 && event.pageY === 0 && Object.defineProperty ) {
|
|
|
|
eventDoc = event.relatedTarget.ownerDocument || document;
|
2012-01-12 13:59:34 +00:00
|
|
|
doc = eventDoc.documentElement;
|
|
|
|
body = eventDoc.body;
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
Object.defineProperty( event, "pageX", {
|
2012-01-12 13:59:34 +00:00
|
|
|
get: function() {
|
2012-03-01 03:08:47 +00:00
|
|
|
return options.clientX +
|
2012-01-12 13:59:34 +00:00
|
|
|
( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -
|
|
|
|
( doc && doc.clientLeft || body && body.clientLeft || 0 );
|
|
|
|
}
|
|
|
|
});
|
2012-03-01 03:08:47 +00:00
|
|
|
Object.defineProperty( event, "pageY", {
|
2012-01-12 13:59:34 +00:00
|
|
|
get: function() {
|
2012-03-01 03:08:47 +00:00
|
|
|
return options.clientY +
|
2012-01-12 13:59:34 +00:00
|
|
|
( doc && doc.scrollTop || body && body.scrollTop || 0 ) -
|
|
|
|
( doc && doc.clientTop || body && body.clientTop || 0 );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-10-31 19:06:05 +00:00
|
|
|
} else if ( document.createEventObject ) {
|
2012-03-01 03:08:47 +00:00
|
|
|
event = document.createEventObject();
|
|
|
|
$.extend( event, options );
|
|
|
|
// TODO: what is this mapping for?
|
|
|
|
event.button = { 0:1, 1:4, 2:2 }[ event.button ] || event.button;
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
2012-03-01 03:08:47 +00:00
|
|
|
|
|
|
|
return event;
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
keyEvent: function( type, options ) {
|
|
|
|
var event;
|
|
|
|
options = $.extend({
|
2011-10-31 19:06:05 +00:00
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
view: window,
|
|
|
|
ctrlKey: false,
|
|
|
|
altKey: false,
|
|
|
|
shiftKey: false,
|
|
|
|
metaKey: false,
|
|
|
|
keyCode: 0,
|
2011-11-07 20:49:20 +00:00
|
|
|
charCode: undefined
|
2011-10-31 19:06:05 +00:00
|
|
|
}, options );
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
if ( document.createEvent ) {
|
2010-01-07 03:19:50 +00:00
|
|
|
try {
|
2012-03-01 03:08:47 +00:00
|
|
|
event = document.createEvent( "KeyEvents" );
|
|
|
|
event.initKeyEvent( type, options.bubbles, options.cancelable, options.view,
|
|
|
|
options.ctrlKey, options.altKey, options.shiftKey, options.metaKey,
|
|
|
|
options.keyCode, options.charCode );
|
|
|
|
// TODO: what is this supporting?
|
2011-10-31 19:06:05 +00:00
|
|
|
} catch( err ) {
|
2012-03-01 03:08:47 +00:00
|
|
|
event = document.createEvent( "Events" );
|
|
|
|
event.initEvent( type, options.bubbles, options.cancelable );
|
|
|
|
$.extend( event, {
|
|
|
|
view: options.view,
|
|
|
|
ctrlKey: options.ctrlKey,
|
|
|
|
altKey: options.altKey,
|
|
|
|
shiftKey: options.shiftKey,
|
|
|
|
metaKey: options.metaKey,
|
|
|
|
keyCode: options.keyCode,
|
|
|
|
charCode: options.charCode
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
}
|
2011-10-31 19:06:05 +00:00
|
|
|
} else if ( document.createEventObject ) {
|
2012-03-01 03:08:47 +00:00
|
|
|
event = document.createEventObject();
|
|
|
|
$.extend( event, options );
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
2012-03-01 03:08:47 +00:00
|
|
|
|
|
|
|
// TODO: can we hook into core's logic?
|
2011-10-31 19:06:05 +00:00
|
|
|
if ( $.browser.msie || $.browser.opera ) {
|
2012-03-01 03:08:47 +00:00
|
|
|
// TODO: is charCode ever <0 ? Can we just use charCode || keyCode?
|
|
|
|
event.keyCode = (options.charCode > 0) ? options.charCode : options.keyCode;
|
|
|
|
event.charCode = undefined;
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
return event;
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
// TODO: does this need type? Can't we just check event.type?
|
|
|
|
dispatchEvent: function( elem, type, event ) {
|
|
|
|
if ( elem.dispatchEvent ) {
|
|
|
|
elem.dispatchEvent( event );
|
|
|
|
} else if ( elem.fireEvent ) {
|
|
|
|
elem.fireEvent( "on" + type, event );
|
|
|
|
}
|
2011-10-31 21:28:00 +00:00
|
|
|
},
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
simulateFocus: function() {
|
2011-10-31 21:28:00 +00:00
|
|
|
var focusinEvent,
|
|
|
|
triggered = false,
|
|
|
|
element = $( this.target );
|
|
|
|
|
|
|
|
function trigger() {
|
|
|
|
triggered = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
element.bind( "focus", trigger );
|
|
|
|
element[ 0 ].focus();
|
|
|
|
|
|
|
|
if ( !triggered ) {
|
|
|
|
focusinEvent = $.Event( "focusin" );
|
|
|
|
focusinEvent.preventDefault();
|
|
|
|
element.trigger( focusinEvent );
|
|
|
|
element.triggerHandler( "focus" );
|
|
|
|
}
|
|
|
|
element.unbind( "focus", trigger );
|
|
|
|
},
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
simulateBlur: function() {
|
2011-10-31 21:28:00 +00:00
|
|
|
var focusoutEvent,
|
|
|
|
triggered = false,
|
|
|
|
element = $( this.target );
|
|
|
|
|
|
|
|
function trigger() {
|
|
|
|
triggered = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
element.bind( "blur", trigger );
|
|
|
|
element[ 0 ].blur();
|
|
|
|
|
2011-11-01 20:35:49 +00:00
|
|
|
// blur events are async in IE
|
|
|
|
setTimeout(function() {
|
|
|
|
// IE won't let the blur occur if the window is inactive
|
|
|
|
if ( element[ 0 ].ownerDocument.activeElement === element[ 0 ] ) {
|
|
|
|
element[ 0 ].ownerDocument.body.focus();
|
|
|
|
}
|
2011-10-31 21:28:00 +00:00
|
|
|
|
2011-11-01 20:35:49 +00:00
|
|
|
// Firefox won't trigger events if the window is inactive
|
|
|
|
// IE doesn't trigger events if we had to manually focus the body
|
|
|
|
if ( !triggered ) {
|
|
|
|
focusoutEvent = $.Event( "focusout" );
|
|
|
|
focusoutEvent.preventDefault();
|
|
|
|
element.trigger( focusoutEvent );
|
|
|
|
element.triggerHandler( "blur" );
|
|
|
|
}
|
|
|
|
element.unbind( "blur", trigger );
|
|
|
|
}, 1 );
|
2010-01-07 03:19:50 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-01 03:08:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** complex events **/
|
|
|
|
|
|
|
|
function findCenter( elem ) {
|
|
|
|
var offset,
|
|
|
|
document = $( elem.ownerDocument );
|
|
|
|
elem = $( elem );
|
|
|
|
offset = elem.offset();
|
|
|
|
|
|
|
|
return {
|
|
|
|
x: offset.left + elem.outerWidth() / 2 - document.scrollLeft(),
|
|
|
|
y: offset.top + elem.outerHeight() / 2 - document.scrollTop()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
$.extend( $.simulate.prototype, {
|
|
|
|
simulateDrag: function() {
|
|
|
|
var target = this.target,
|
|
|
|
options = this.options,
|
|
|
|
center = findCenter( target ),
|
|
|
|
x = Math.floor( center.x ),
|
|
|
|
y = Math.floor( center.y ),
|
|
|
|
dx = options.dx || 0,
|
|
|
|
dy = options.dy || 0,
|
|
|
|
coord = { clientX: x, clientY: y };
|
|
|
|
this.simulateEvent( target, "mousedown", coord );
|
|
|
|
coord = { clientX: x + 1, clientY: y + 1 };
|
|
|
|
this.simulateEvent( document, "mousemove", coord );
|
|
|
|
coord = { clientX: x + dx, clientY: y + dy };
|
|
|
|
this.simulateEvent( document, "mousemove", coord );
|
|
|
|
this.simulateEvent( document, "mousemove", coord );
|
|
|
|
this.simulateEvent( target, "mouseup", coord );
|
|
|
|
this.simulateEvent( target, "click", coord );
|
|
|
|
}
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
|
2011-10-31 19:06:05 +00:00
|
|
|
})( jQuery );
|