-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.dev-helpers.js
76 lines (59 loc) · 1.96 KB
/
module.dev-helpers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
window.development = window.development || {};
window.development.DEVHelpers = (function() {
'use strict';
/**
* Declare variables
*/
var _isDevGuideShowing = false;
var _guideLocation = '../images/placeholders/guide.png';
var _keysPressed = [];
var _keysRequired = 2;
var _keyFirst = 17;
var _keySecond = 71;
/**
* Initialise the modules event handlers and variables.
*/
function init() {
document.onkeydown = function(event) {
return development.DEVHelpers.showGuideImage(event);
};
document.onkeyup = function(event) {
return development.DEVHelpers.showGuideImage(event);
};
}
// Self initialise this module
init();
/**
* Determines whether to toggle the display of the guide image based on
* whether the declared keys are being pressed.
*
* @param event The triggered event object.
*/
function showGuideImage(event) {
var _indexOfKey = _keysPressed.indexOf(event.which);
if (event.type === 'keydown') {
if (_indexOfKey === -1) {
_keysPressed.push(event.which);
}
if (_keysPressed.length === _keysRequired &&
_keysPressed.indexOf(_keyFirst) !== -1 &&
_keysPressed.indexOf(_keySecond) !== -1)
{
document.body.style.background = _isDevGuideShowing ? '' : 'url(' + _guideLocation + ') no-repeat';
document.body.style.webkitFilter = _isDevGuideShowing ? '' : 'invert(100%) opacity(50%)';
_isDevGuideShowing = !_isDevGuideShowing;
}
} else if (_indexOfKey !== -1) {
_keysPressed.splice(_indexOfKey, 1);
}
}
/**
* Returns the functions that will be publicly accessable.
*
* @return The public methods object.
*/
return {
init: init,
showGuideImage: showGuideImage,
};
})();