Created
November 14, 2022 04:08
-
-
Save ndbroadbent/4b3cf2181074b955d8a658966c694be1 to your computer and use it in GitHub Desktop.
Tampermonkey script: Make CircleCI links clickable
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 Make CircleCI links clickable | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Scan CircleCI step output for URLs and turn them into links | |
// @author You | |
// @match https://app.circleci.com/pipelines/github/*/*/*/workflows/*/jobs/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=circleci.com | |
// @grant none | |
// @require https://code.jquery.com/jquery-3.6.0.min.js | |
// ==/UserScript== | |
(function () { | |
"use strict"; | |
function createLinksForStepButton($button) { | |
const $spans = $button.parent().find("> div pre span"); | |
console.log("Searching for URLs. Found spans:", $spans.length); | |
$spans.each((i, el) => { | |
const $el = $(el); | |
const text = $el.text(); | |
console.log(i, "Checking text: ", text); | |
const urls = [...text.matchAll(/https?:\/\/[^\s]+/g)]; | |
if (urls.length > 0) { | |
console.log("Creating links for URLs:", urls.join(", ")); | |
$el.html( | |
text.replace( | |
/https?:\/\/[^\s]+/g, | |
(url) => | |
`<a style="color: white;" href="${url}" target="_blank">${url}</a>` | |
) | |
); | |
} | |
}); | |
console.log("Done!"); | |
} | |
$("body").on("click", "button", function (el) { | |
const $button = $(el.currentTarget); | |
console.log( | |
"Clicked button:", | |
$button.text(), | |
", waiting for output to load..." | |
); | |
// Wait for $el.parent().find('> div pre span').length to be > 0 | |
const interval = setInterval(() => { | |
const $span = $button.parent().find("> div pre span"); | |
if ($span.length > 0) { | |
console.log("Output loaded, creating links..."); | |
clearInterval(interval); | |
createLinksForStepButton($button); | |
} | |
}, 100); | |
setTimeout(() => { | |
clearInterval(interval); | |
}, 5000); | |
}); | |
// Wait for $("main > div > div > div > div > button").length to be > 0, then run createLinksForStepButton | |
const interval = setInterval(() => { | |
const $button = $("main > div > div > div > div > button"); | |
if ($button.length > 0) { | |
clearInterval(interval); | |
createLinksForStepButton($button); | |
} | |
}, 100); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Added this functionality for test items as well: https://gist.github.com/CChanHY/44da18968047746a03ca79fee3f09a40