forked from AdamCraven/angular-fng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular-fng.js
109 lines (97 loc) · 4.32 KB
/
angular-fng.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Angular fng / MIT License
(function() {
'use strict';
// Refer to https://github.com/angular/angular.js/blob/master/src/ng/directive/ngEventDirs.js
// and angular code base for much of the originating source code.
// There are many private methods in angular, duplication has been necessary.
var PREFIX_REGEXP = /^((?:x|data)[\:\-_])/i;
var SPECIAL_CHARS_REGEXP = /([\:\-\_]+(.))/g;
/**
* Converts all accepted directives format into proper directive name.
* @param name Name to normalize
*/
function directiveNormalize(name) {
return camelCase(name.replace(PREFIX_REGEXP, ''));
}
/**
* Converts snake_case to camelCase.
* Also there is special case for Moz prefix starting with upper case letter.
* @param name Name to normalize
*/
function camelCase(name) {
return name.
replace(SPECIAL_CHARS_REGEXP, function(_, separator, letter, offset) {
return offset ? letter.toUpperCase() : letter;
});
}
/**
* Bubbles up the scope tree to check if digest stopDigestPropagation is set on scope
* returns that scope if defined otherwise rootscope
* @param {object} scope Where scope originated
*/
function scopeToCallDigestIn(scope) {
var digestScope = scope;
while (digestScope.$parent) {
if (digestScope.hasOwnProperty('$stopDigestPropagation')) {
break;
}
digestScope = digestScope.$parent;
}
return digestScope;
}
// For events that might fire synchronously during DOM manipulation
// we need to execute their event handlers asynchronously using $evalAsync,
// so that they are not executed in an inconsistent state.
var forceAsyncEvents = {
'blur': true,
'focus': true
};
var events = 'click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste'.split(' ');
function fng(angular) {
var fngModule = angular.module('fng', []);
function assignDirectives(eventName) {
var directiveName = directiveNormalize('fng-' + eventName);
fngModule.directive(directiveName, ['$parse', '$rootScope', function($parse, $rootScope) {
return {
restrict: 'A',
compile: function($element, attr) {
// We expose the powerful $event object on the scope that provides access to the Window,
// etc. that isn't protected by the fast paths in $parse. We explicitly request better
// checks at the cost of speed since event handler expressions are not executed as
// frequently as regular change detection.
var fn = $parse(attr[directiveName], /* interceptorFn */ null, /* expensiveChecks */ true);
return function ngEventHandler(scope, element) {
element.on(eventName, function(event) {
var digestScope = scopeToCallDigestIn(scope);
var callback = function() {
fn(scope, {
$event: event
});
};
if (forceAsyncEvents[eventName] && $rootScope.$$phase) {
scope.$evalAsync(callback);
} else {
if (digestScope.$stopDigestPropagation) {
callback();
digestScope.$digest();
} else {
scope.$apply(callback);
}
}
});
};
}
};
}]);
}
events.forEach(assignDirectives);
}
if (typeof define === 'function' && define.amd) {
define(['angular'], fng);
} else if (typeof module !== 'undefined' && module && module.exports) {
fng(angular);
module.exports = 'fng';
} else {
fng(angular);
}
})();