Skip to content

Instantly share code, notes, and snippets.

@gempir
Last active December 18, 2023 07:18
Show Gist options
  • Save gempir/adabced53888fcf100ba30ab07773dfb to your computer and use it in GitHub Desktop.
Save gempir/adabced53888fcf100ba30ab07773dfb to your computer and use it in GitHub Desktop.
Bitbucket Cloud PR Shortcuts
// ==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