summaryrefslogtreecommitdiffstats
path: root/js/vendor/angular-ui/modules/directives/keypress/keypress.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/angular-ui/modules/directives/keypress/keypress.js')
-rw-r--r--js/vendor/angular-ui/modules/directives/keypress/keypress.js110
1 files changed, 110 insertions, 0 deletions
diff --git a/js/vendor/angular-ui/modules/directives/keypress/keypress.js b/js/vendor/angular-ui/modules/directives/keypress/keypress.js
new file mode 100644
index 000000000..1efa5df97
--- /dev/null
+++ b/js/vendor/angular-ui/modules/directives/keypress/keypress.js
@@ -0,0 +1,110 @@
+angular.module('ui.directives').factory('keypressHelper', ['$parse', function keypress($parse){
+ var keysByCode = {
+ 8: 'backspace',
+ 9: 'tab',
+ 13: 'enter',
+ 27: 'esc',
+ 32: 'space',
+ 33: 'pageup',
+ 34: 'pagedown',
+ 35: 'end',
+ 36: 'home',
+ 37: 'left',
+ 38: 'up',
+ 39: 'right',
+ 40: 'down',
+ 45: 'insert',
+ 46: 'delete'
+ };
+
+ var capitaliseFirstLetter = function (string) {
+ return string.charAt(0).toUpperCase() + string.slice(1);
+ };
+
+ return function(mode, scope, elm, attrs) {
+ var params, combinations = [];
+ params = scope.$eval(attrs['ui'+capitaliseFirstLetter(mode)]);
+
+ // Prepare combinations for simple checking
+ angular.forEach(params, function (v, k) {
+ var combination, expression;
+ expression = $parse(v);
+
+ angular.forEach(k.split(' '), function(variation) {
+ combination = {
+ expression: expression,
+ keys: {}
+ };
+ angular.forEach(variation.split('-'), function (value) {
+ combination.keys[value] = true;
+ });
+ combinations.push(combination);
+ });
+ });
+
+ // Check only matching of pressed keys one of the conditions
+ elm.bind(mode, function (event) {
+ // No need to do that inside the cycle
+ var altPressed = event.metaKey || event.altKey;
+ var ctrlPressed = event.ctrlKey;
+ var shiftPressed = event.shiftKey;
+ var keyCode = event.keyCode;
+
+ // normalize keycodes
+ if (mode === 'keypress' && !shiftPressed && keyCode >= 97 && keyCode <= 122) {
+ keyCode = keyCode - 32;
+ }
+
+ // Iterate over prepared combinations
+ angular.forEach(combinations, function (combination) {
+
+ var mainKeyPressed = (combination.keys[keysByCode[event.keyCode]] || combination.keys[event.keyCode.toString()]) || false;
+
+ var altRequired = combination.keys.alt || false;
+ var ctrlRequired = combination.keys.ctrl || false;
+ var shiftRequired = combination.keys.shift || false;
+
+ if (
+ mainKeyPressed &&
+ ( altRequired == altPressed ) &&
+ ( ctrlRequired == ctrlPressed ) &&
+ ( shiftRequired == shiftPressed )
+ ) {
+ // Run the function
+ scope.$apply(function () {
+ combination.expression(scope, { '$event': event });
+ });
+ }
+ });
+ });
+ };
+}]);
+
+/**
+ * Bind one or more handlers to particular keys or their combination
+ * @param hash {mixed} keyBindings Can be an object or string where keybinding expression of keys or keys combinations and AngularJS Exspressions are set. Object syntax: "{ keys1: expression1 [, keys2: expression2 [ , ... ]]}". String syntax: ""expression1 on keys1 [ and expression2 on keys2 [ and ... ]]"". Expression is an AngularJS Expression, and key(s) are dash-separated combinations of keys and modifiers (one or many, if any. Order does not matter). Supported modifiers are 'ctrl', 'shift', 'alt' and key can be used either via its keyCode (13 for Return) or name. Named keys are 'backspace', 'tab', 'enter', 'esc', 'space', 'pageup', 'pagedown', 'end', 'home', 'left', 'up', 'right', 'down', 'insert', 'delete'.
+ * @example <input ui-keypress="{enter:'x = 1', 'ctrl-shift-space':'foo()', 'shift-13':'bar()'}" /> <input ui-keypress="foo = 2 on ctrl-13 and bar('hello') on shift-esc" />
+ **/
+angular.module('ui.directives').directive('uiKeydown', ['keypressHelper', function(keypressHelper){
+ return {
+ link: function (scope, elm, attrs) {
+ keypressHelper('keydown', scope, elm, attrs);
+ }
+ };
+}]);
+
+angular.module('ui.directives').directive('uiKeypress', ['keypressHelper', function(keypressHelper){
+ return {
+ link: function (scope, elm, attrs) {
+ keypressHelper('keypress', scope, elm, attrs);
+ }
+ };
+}]);
+
+angular.module('ui.directives').directive('uiKeyup', ['keypressHelper', function(keypressHelper){
+ return {
+ link: function (scope, elm, attrs) {
+ keypressHelper('keyup', scope, elm, attrs);
+ }
+ };
+}]); \ No newline at end of file