Compare commits

...

2 commits

Author SHA1 Message Date
eeb290586b
Updated RH_jira_bz_linker
- Isolated function
- updated namespace
2021-07-08 17:36:07 +03:00
87261d33a0
github list pr script cleanup and ui changes.
- Isolated in a function
 - changed namespace
 - updated description
 - added PR number
 - list is more concise
 - removed open button. Clicing on an item will open PR in new tab
2021-07-08 17:33:23 +03:00
2 changed files with 125 additions and 109 deletions

View file

@ -1,30 +1,31 @@
// ==UserScript== // ==UserScript==
// @name RedHat jira BZ Linker // @name RedHat jira BZ Linker
// @version 0.0.1 // @version 0.0.1
// @namespace http://arantius.com/misc/greasemonkey/ // @namespace https://git.sagidayan.com/sagi/greasemonkey-scripts
// @author Sagi Dayan // @author Sagi Dayan
// @description Adds BZ links in (RedHat) Jira when needed // @description Adds BZ links in (RedHat) Jira when needed
// @match https://issues.redhat.com/* // @match https://issues.redhat.com/*
// ==/UserScript== // ==/UserScript==
// Constants (function () {
const LOG_TAG = '[BZ-LINKER]'; // Constants
const summaryRegExp = new RegExp(/\[([0-9]+)\]/); const LOG_TAG = '[BZ-LINKER]';
const summaryRegExp = new RegExp(/\[([0-9]+)\]/);
// Entry point - observe DOM changes - and search for unlinked jira tickets // Entry point - observe DOM changes - and search for unlinked jira tickets
var observer = new MutationObserver(update); var observer = new MutationObserver(update);
observer.observe(document.body, { childList: true, characterData: true, subtree: true }); observer.observe(document.body, { childList: true, characterData: true, subtree: true });
// adds a tag prefix to logs for easy filters // adds a tag prefix to logs for easy filters
function log(...args) { function log(...args) {
const msg = args.reduce((msg, data) => { const msg = args.reduce((msg, data) => {
return `${msg} ${data}`; return `${msg} ${data}`;
}, LOG_TAG); }, LOG_TAG);
console.log(msg); console.log(msg);
} }
// When DOM changes - check for new unlinked issues // When DOM changes - check for new unlinked issues
function update() { function update() {
const issues = filterAndInflate([...document.getElementsByClassName("issuerow")]); const issues = filterAndInflate([...document.getElementsByClassName("issuerow")]);
if (issues.length) log(`Found #${issues.length} new unlinked issues. Linking...`); if (issues.length) log(`Found #${issues.length} new unlinked issues. Linking...`);
issues.forEach(issue => { issues.forEach(issue => {
@ -42,9 +43,9 @@ function update() {
} }
issue.touched = true; issue.touched = true;
}); });
} }
// Returns only rows (TR tags) that are not linked and are BZ bugs // Returns only rows (TR tags) that are not linked and are BZ bugs
function filterAndInflate(rows) { function filterAndInflate(rows) {
return rows.filter(r => { return rows.filter(r => {
if (r.tagName === 'TR' && !r.touched) { if (r.tagName === 'TR' && !r.touched) {
const summary = [...r.children].reduce((prev, child) => { const summary = [...r.children].reduce((prev, child) => {
@ -64,4 +65,5 @@ function filterAndInflate(rows) {
} }
return false; return false;
}) })
} }
})();

View file

@ -1,22 +1,22 @@
// ==UserScript== // ==UserScript==
// @name GitHub - list own PRs in a repository // @name GitHub - list own PRs in a repository
// @description A brief description of your script // @description List Your own (open) PRs in a repo with CI state for easy navigation
// @namespace http://arantius.com/misc/greasemonkey/ // @namespace https://git.sagidayan.com/sagi/greasemonkey-scripts
// @author Sagi Dayan // @author Sagi Dayan
// @match https://github.com/* // @match https://github.com/*
// @version 1.0 // @version 1.0
// ==/UserScript== // ==/UserScript==
// Update These (function () {
const GITHUB_AUTH = ''; // https://github.com/settings/tokens // Update These
const GITHUB_USERNAME = ''; const GITHUB_AUTH = '';
// const GITHUB_USERNAME = '';
//
let currentRepo = '';
let currentRepo = ''; // fetch my prs
async function getPRs() {
// fetch my prs
async function getPRs() {
const response = await fetch("https://api.github.com/graphql", { const response = await fetch("https://api.github.com/graphql", {
"method": "POST", "method": "POST",
"headers": { "headers": {
@ -33,42 +33,56 @@ async function getPRs() {
const main = document.getElementsByTagName('main')[0]; const main = document.getElementsByTagName('main')[0];
if (!main) return; if (!main) return;
prs.forEach(pr => { prs.forEach(pr => {
// Check if element Exists - if it does, remove and add updated one.
const prItem = document.getElementById(generatePrItemId(pr.number));
if (prItem) {
console.log('Item Found', prItem.id);
main.removeChild(prItem);
}
main.lastElementChild.insertBefore(createPrHTML(pr), main.lastElementChild.firstElementChild); main.lastElementChild.insertBefore(createPrHTML(pr), main.lastElementChild.firstElementChild);
}); });
}
setInterval(() => {
const urlSplit = document.URL.split('/');
if (urlSplit.length !== 5) { // Not A base repo URL
currentRepo = '';
return;
} }
setInterval(() => {
const urlSplit = document.URL.split('/');
if (urlSplit.length !== 5) {
currentRepo = '';
return; // Not A base repo URL
}
const location = urlSplit.slice(-2).join('/') const location = urlSplit.slice(-2).join('/')
if (location !== currentRepo) { if (location !== currentRepo) {
currentRepo = location; currentRepo = location;
getPRs(); getPRs();
} }
}, 1000); }, 1000);
function createPrHTML(pr) { function createPrHTML(pr) {
const div = document.createElement('div'); const div = document.createElement('div');
const prState = pr.commits.nodes[0].commit.statusCheckRollup?.state || ''; const prState = pr.commits.nodes[0].commit.statusCheckRollup?.state || '';
const prStateColor = prState === 'FAILURE' ? 'red' : (prState === 'SUCCESS' ? 'green' : 'yellow'); const prStateColor = prState === 'FAILURE' ? 'red' : (prState === 'SUCCESS' ? 'green' : 'yellow');
div.id = generatePrItemId(pr.number);
div.className = "d-sm-flex Box mb-2 Box-body color-bg-secondary"; div.onclick = () => {
window.open(pr.url, '_blank');
}
div.className = "btn d-sm-flex Box mb-2 Box-body color-bg-secondary";
div.innerHTML = ` div.innerHTML = `
<div class="d-flex flex-auto"> <div class="d-flex flex-auto">
<div class="flex-shrink-0 mb-2 mr-2" > <div class="flex-shrink-0 mr-2" >
<span title="Status" data-view-component="true" class="State" style="color:${prStateColor}"> <span title="Status" data-view-component="true" class="State" style="color:${prStateColor}">
<svg height="16" class="octicon octicon-git-pull-request" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"></path></svg> ${prState} <svg height="16" class="octicon octicon-git-pull-request" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path style="color:${prStateColor}" fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"></path></svg> #${pr.number} - ${prState}
</span> </span>
</div> </div>
<p style="padding-top:5px"> <p style="padding-top:5px" class="mb-0">
${pr.title} ${pr.title}
</p> </p>
<div class="flex-auto"></div>
<a class="btn ml-2 d-none d-md-block" href="${pr.url}">Open</a>
</div> </div>
`; `;
return div; return div;
} }
function generatePrItemId(prNumber) {
return `PR-${prNumber}`;
}
})();