Last active
December 18, 2023 07:18
-
-
Save gempir/adabced53888fcf100ba30ab07773dfb to your computer and use it in GitHub Desktop.
Bitbucket Cloud PR Shortcuts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bitbucket Shortcuts advanced | |
// @namespace https://bitbucket.org | |
// @version 0.2 | |
// @description Shortcuts | |
// @author Marco, Denes, Daniel | |
// @match https://bitbucket.org/*/*/pull-requests/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=bitbucket.org | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
"use strict"; | |
document.onkeyup = function() { | |
var e = e || window.event; // for IE to cover IEs window event-object | |
if( e.target.nodeName == "INPUT" || e.target.nodeName == "TEXTAREA" ) return; | |
if( e.target.isContentEditable ) return; | |
const viewedBox = document.querySelector("input.css-1buck15"); | |
if (e.which == 75) { | |
if (viewedBox && viewedBox.getAttribute("aria-checked") == "true") { | |
viewedBox.click(); | |
} | |
document.querySelector("button[aria-label=\"Previous file\"]").click(); | |
const yOffset = -35; | |
const element = document.querySelector("ul[data-testid=\"comment-filter--avatar-group\"]"); | |
const y = element.getBoundingClientRect().top + window.pageYOffset + yOffset; | |
window.scrollTo({top: y, behavior: "instant"}); | |
return false; | |
} | |
if (e.which == 74) { | |
console.log(viewedBox); | |
if (viewedBox && viewedBox.getAttribute("aria-checked") == "false") { | |
viewedBox.click(); | |
} | |
document.querySelector("button[aria-label=\"Next file\"]").click(); | |
const yOffset = -35; | |
const element = document.querySelector("ul[data-testid=\"comment-filter--avatar-group\"]"); | |
const y = element.getBoundingClientRect().top + window.pageYOffset + yOffset; | |
window.scrollTo({top: y, behavior: "instant"}); | |
return false; | |
} | |
if (e.which == 32) { | |
return false; | |
} | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment