GGn Upload Blocker Manager

The "library" version of upload blocker. Import this with @require and use the APIs to standardize blocking uploads in GGn.

Verze ze dne 26. 04. 2025. Zobrazit nejnovější verzi.

Tento skript by neměl být instalován přímo. Jedná se o knihovnu, kterou by měly jiné skripty využívat pomocí meta příkazu // @require https://update.greasyfork.org/scripts/533781/1578387/GGn%20Upload%20Blocker%20Manager.js

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         GGn Upload Blocker Manager
// @namespace    https://greasyfork.org/users/1395131
// @version      1.1
// @author       SleepingGiant
// @description  The "library" version of upload blocker. Import this with @require and use the APIs to standardize blocking uploads in GGn.
// @match        https://gazellegames.net/*
// @grant        none
// ==/UserScript==
// @export UploadBlockerManager

(function (global) {
  'use strict';
  const reasonListId = 'ggn-block-reasons';

  class UploadBlockerManager {
    constructor(submitButton) {
      this.submitButton = submitButton;
      this.originalText = submitButton.value;
      this.reasonContainer = this._ensureReasonList();
    }

    _ensureReasonList() {
      let ul = document.getElementById(reasonListId);
      if (!ul) {
        ul = document.createElement('ul');
        ul.id = reasonListId;
        ul.style.marginTop = '0.5em';
        ul.style.color = 'red';
        ul.style.listStyleType = 'none';
        this.submitButton.parentNode.insertBefore(ul, this.submitButton.nextSibling);
      }
      return ul;
    }

    addReason(text) {
      if (!this._hasReason(text)) {
        const li = document.createElement('li');
        li.textContent = text;
        this.reasonContainer.appendChild(li);
      }
      this._updateButtonState();
    }

    removeReason(text) {
      for (const li of Array.from(this.reasonContainer.children)) {
        if (li.textContent === text) {
          li.remove();
          break;
        }
      }
      this._updateButtonState();
    }

    _hasReason(text) {
      return Array.from(this.reasonContainer.children)
        .some(li => li.textContent === text);
    }

    _updateButtonState() {
      const hasBlockers = this.reasonContainer.children.length > 0;
      const override = document.querySelector('#upload-blocker-override')?.checked;

      if (hasBlockers && !override) {
        this.submitButton.disabled = true;
        this.submitButton.style.opacity = '0.5';
        this.submitButton.style.pointerEvents = 'none';
        this.submitButton.value = 'Uploading Blocked';
      } else {
        this.submitButton.disabled = false;
        this.submitButton.style.opacity = '1';
        this.submitButton.style.pointerEvents = 'auto';
        this.submitButton.value = this.originalText;
      }
    }

    attachOverrideCheckbox() {
      if (!document.getElementById('upload-blocker-override')) {
        const cb = document.createElement('input');
        cb.type = 'checkbox';
        cb.id = 'upload-blocker-override';
        cb.style.marginLeft = '0.5em';
        cb.addEventListener('change', () => this._updateButtonState());

        const label = document.createElement('label');
        label.htmlFor = cb.id;
        label.textContent = ' Override blockers';
        label.style.marginLeft = '0.25em';

        this.submitButton.parentNode.insertBefore(cb, this.submitButton.nextSibling);
        this.submitButton.parentNode.insertBefore(label, cb.nextSibling);
      }
    }

  }

  // Export into global so other scripts can import it
  global.UploadBlockerManager = UploadBlockerManager;

})(window);