phaser/v3/src/boot/VisibilityHandler.js
2017-10-04 23:48:16 +01:00

72 lines
1.6 KiB
JavaScript

var Event = require('../events/Event');
/**
* [description]
*
* @function Phaser.Boot.VisibilityHandler
* @since 3.0.0
*
* @param {Phaser.Events.EventDispatcher} eventDispatcher - The EventDispatcher that will dispatch the visibility events.
*/
var VisibilityHandler = function (eventDispatcher)
{
var hiddenVar;
if (document.hidden !== undefined)
{
hiddenVar = 'visibilitychange';
}
else
{
var vendors = [ 'webkit', 'moz', 'ms' ];
vendors.forEach(function (prefix)
{
if (document[prefix + 'Hidden'] !== undefined)
{
document.hidden = function ()
{
return document[prefix + 'Hidden'];
};
hiddenVar = prefix + 'visibilitychange';
}
});
}
var onChange = function (event)
{
if (document.hidden || event.type === 'pause')
{
eventDispatcher.dispatch(new Event('HIDDEN'));
}
else
{
eventDispatcher.dispatch(new Event('VISIBLE'));
}
};
// Does browser support it?
// If not (like in IE9 or old Android) we need to fall back to blur / focus
if (hiddenVar)
{
document.addEventListener(hiddenVar, onChange, false);
}
else
{
console.log('Fallback TODO');
}
window.onblur = function ()
{
eventDispatcher.dispatch(new Event('ON_BLUR'));
};
window.onfocus = function ()
{
eventDispatcher.dispatch(new Event('ON_FOCUS'));
};
};
module.exports = VisibilityHandler;