]> source.dussan.org Git - nextcloud-server.git/commitdiff
initial setup
authorErik Sargent <esthepiking@gmail.com>
Wed, 28 Nov 2012 16:50:54 +0000 (09:50 -0700)
committerErik Sargent <esthepiking@gmail.com>
Wed, 28 Nov 2012 16:50:54 +0000 (09:50 -0700)
apps/files/js/keyboardshortcuts.js [new file with mode: 0644]

diff --git a/apps/files/js/keyboardshortcuts.js b/apps/files/js/keyboardshortcuts.js
new file mode 100644 (file)
index 0000000..2a193f7
--- /dev/null
@@ -0,0 +1,52 @@
+// your file
+var Files = Files || {};
+
+// Array Remove - By John Resig (MIT Licensed)
+Array.prototype.remove = function(from, to) {
+  var rest = this.slice((to || from) + 1 || this.length);
+  this.length = from < 0 ? this.length + from : from;
+  return this.push.apply(this, rest);
+};
+
+Files.bindKeyboardShortcuts = function (document, $){
+       var keys = []
+
+       $(document).keydown(function(event){//check for modifier keys
+               if($.inArray(event.keyCode, keys) == -1)
+                       keys.push(event.keyCode);
+               console.log(event.keyCode);
+               
+               if($.inArray(78, keys) !== -1 && ($.inArray(224, keys) !== -1 || $.inArray(17, keys) !== -1 || $.inArray(91, keys) !== -1 || $.inArray(93, keys) !== -1)){ //78=n, 224=cmd(firefox), 17=cmd(Opera), 91=leftCmd(WebKit), 93=rightCmd(WebKit)
+                       event.preventDefault(); //Prevent web browser from responding
+               }
+       });
+       
+       $(document).keyup(function(event){
+       // do your event.keyCode checks in here
+               
+               console.log(JSON.stringify(keys));
+               
+               if($.inArray(78, keys) !== -1 && ($.inArray(224, keys) !== -1 || $.inArray(17, keys) !== -1 || $.inArray(91, keys) !== -1 || $.inArray(93, keys) !== -1)){ //78=n, 224=cmd(firefox), 17=cmd(Opera), 91=leftCmd(WebKit), 93=rightCmd(WebKit)
+                       if($.inArray(16, keys) !== -1){ //16=shift, New File
+                               $("#new").addClass("active");
+                               $(".popup.popupTop").toggle(true);
+                               $('#new li[data-type="file"]').trigger('click');
+                               console.log("new file");
+                               keys.remove($.inArray(78, keys));
+                       }
+                       else{ //New Folder
+                               $("#new").addClass("active");
+                               $(".popup.popupTop").toggle(true);
+                               $('#new li[data-type="folder"]').trigger('click');
+                               console.log("new folder");
+                               keys.remove($.inArray(78, keys));
+                       }
+               }
+               if($("#new").hasClass("active") && $.inArray(27, keys) !== -1){
+                       $("#controls").trigger('click');
+                       console.log("close");
+               }
+               
+               keys.remove($.inArray(event.keyCode, keys));
+       });
+};
\ No newline at end of file