gist-copy

Copy gist code with one-click.

2024-04-14 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name gist-copy
// @namespace hakurouken/tamper-scripts/gist-copy
// @version 1.0.1
// @description Copy gist code with one-click.
// @author Hakurouken
// @homepage https://github.com/hakurouken/tamper-scripts/packages/gist-copy
// @supportURL https://github.com/hakurouken/tamper-scripts/issues
// @license MIT
// @run-at document-end
// @match https://gist.github.com/*
// @grant GM_setClipboard
// @grant window.onurlchange
// ==/UserScript==

function noop() { }
function debounce(f, delay) {
    let timeoutId = null;
    return function (...args) {
        if (timeoutId) {
            clearTimeout(timeoutId);
        }
        timeoutId = setTimeout(() => {
            f.apply(this, args);
        }, delay);
    };
}
function createCopyButton(fileElement) {
    const fileActionElement = fileElement.querySelector('.file-actions');
    const source = fileActionElement?.querySelector('a.Button');
    const url = source?.href;
    if (!url) {
        return noop;
    }
    const dummy = document.createElement('div');
    dummy.innerHTML = `
  <a class="Button--secondary Button--small Button gist-copy-button">
    <span class="Button-content">
      <span class="Button-label">Copy</span>
    </span>
  </a>
  `;
    const button = dummy.firstElementChild.cloneNode(true);
    let lockedTimeoutId = null;
    const copyHandler = (e) => {
        if (lockedTimeoutId) {
            return;
        }
        e.preventDefault();
        const rawContent = fileElement.querySelector('.blob-code-content')
            ?.innerText || '';
        const content = rawContent
            .split('\n')
            .map((line) => line.replace(/^\t/, ''))
            .join('\n');
        GM_setClipboard(content, { type: 'text', mimetype: 'text/plain' });
        button.style.filter = 'brightness(0.8)';
        button.innerText = 'Copied!';
        lockedTimeoutId = setTimeout(() => {
            button.style.filter = '';
            button.innerText = 'Copy';
            lockedTimeoutId = null;
        }, 1500);
    };
    button.addEventListener('click', copyHandler);
    fileActionElement.prepend(button);
    return () => {
        button.removeEventListener('click', copyHandler);
        if (lockedTimeoutId) {
            clearTimeout(lockedTimeoutId);
        }
        button.remove();
    };
}
function run() {
    let removeAllListeners = noop;
    function tryCreateCopyButtons() {
        removeAllListeners();
        const fileElements = [...document.querySelectorAll('.file')];
        const removeListeners = fileElements.map(createCopyButton);
        removeAllListeners = () => {
            removeListeners.map((f) => f());
            [...document.querySelectorAll('.gist-copy-button')].forEach((el) => {
                el.remove();
            });
        };
    }
    window.addEventListener('urlchange', debounce(tryCreateCopyButtons, 16));
}
run();