Copy Github PR

Adds a "Copy PR" button to copy the title and link as a rich text

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Copy Github PR
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Adds a "Copy PR" button to copy the title and link as a rich text
// @author       Othman Shareef ([email protected])
// @match        https://github.com/*
// @icon         https://github.githubassets.com/favicons/favicon.svg
// @grant        none
// @license MIT
// ==/UserScript==
(function() {
    'use strict';
    const elementQuery = 'h1 .markdown-title'
    let button
    let debounceTimer;

    // Wait for the Jira ticket title element to be available
    const waitForElement = (selector, callback) => {
        const element = document.querySelector(selector);
        if (element) {
            callback();
        } else {
            setTimeout(() => {
                waitForElement(selector, callback);
            }, 200);
        }
    };

    // copy ticket title to clipboard
    const copyPR = () => {
        button.innerText = 'Loading...';
        const ticketTitleElement = document.querySelector(elementQuery);

        // Get issue numbers from PR template
        const issueNumberElements = Array.from(document.querySelectorAll('.issue-link.js-issue-link'));

        // Use a Set to keep track of unique inner texts
        const uniqueTexts = new Set();

        // Use filter to include only the first occurrence of each inner text
        const uniqueElementsData = issueNumberElements
        .filter((element) => {
            const innerText = element.textContent;
            const href = element.getAttribute('href');
            if (href && href.includes('atlassian.net') && !uniqueTexts.has(innerText)) {
                uniqueTexts.add(innerText);
                return true;
            }
            return false;
        })
        .map((element) => ({
            innerText: element.textContent,
            href: element.getAttribute('href'),
        }));

        const issuesHTML = uniqueElementsData.length > 0 ? "Resolves: " + uniqueElementsData.map(({ innerText, href }) => `<a href="${href}">${innerText}</a>`).join(', ') : ""

        if (ticketTitleElement) {
            const PRTitle = ticketTitleElement.innerText;
            const PRLink = window.location.href
            const html = `<a href="${PRLink}">${PRTitle}</a><br/>${issuesHTML}`
            const clipboardItem = new ClipboardItem({
                'text/html': new Blob([html], {
                    type: 'text/html'
                }),
                'text/plain': new Blob([html], {
                    type: 'text/plain'
                })
            });
            navigator.clipboard.write([clipboardItem]).then(_ => {
                // Change button text to "Copied!" for a moment
                button.innerText = 'Copied!';
                setTimeout(() => {
                    // Change button text back to the original text after a delay
                    button.innerText = 'Copy PR';
                }, 1000); // You can adjust the delay (in milliseconds) as needed
            }, error => alert(error));
             } else {
            alert('PR title element not found!');
        }
    };

    // Add button next to the ticket title
    const addButton = () => {
        const existingCopyBtn = document.getElementById("copy-button")
        if(existingCopyBtn) return
        const copyButton = document.createElement('button');
        copyButton.innerText = 'Copy PR';
        copyButton.className = 'Button--secondary Button--big Button';
        copyButton.id = "copy-button"
        copyButton.style.marginLeft = '10px';
        copyButton.style.marginTop = '5px';
        copyButton.style.verticalAlign = 'text-top';

        copyButton.addEventListener('click', copyPR);

        button = copyButton
        const element = document.querySelector(elementQuery);
        element.parentElement.appendChild(copyButton);
    };

    waitForElement(elementQuery, addButton);

    const debounce = (func, delay) => {
        clearTimeout(debounceTimer);
        debounceTimer = setTimeout(func, delay);
    };

        // Use MutationObserver to detect changes in the DOM
    const observer = new MutationObserver(() => {
        debounce(() => {
            waitForElement(elementQuery, addButton);
        }, 100);
    });

    // Observe changes in the body and its descendants
    observer.observe(document.body, {
        childList: true,
        subtree: true,
    });

})();