JIRA Subtask Move Plugin

Plugin to allow moving of sub-tasks in JIRA

Stan na 12-09-2018. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         JIRA Subtask Move Plugin
// @description  Plugin to allow moving of sub-tasks in JIRA
// @version      0.5.1
// @author       Max Schlüssel <[email protected]>
// @namespace    https://ghostkernel.org/
// @match        *://*/*
// @grant        GM_addStyle
// ==/UserScript==

(function($) {
    'use strict';

    if($ == undefined) return;
    if(!$("body").is("#jira")) {
        return;
    }

    // Add styling for our dragging knob
    GM_addStyle("                                        \
        .issuerow .dragger {                             \
            display: block;                              \
            height: 10px;                                \
            margin-top: 15px;                            \
            margin-right: 5px;                           \
            border: none !important;                     \
            cursor: move;                                \
            background: repeating-linear-gradient(0,     \
                                transparent 0%,          \
                                transparent 2%, #aaa 2%, \
                                #aaa 3%, transparent 3%);\
        }                                                \
        .issuerow.dragged {                              \
            background-color: #eee !important;           \
        }                                                \
      ");

    $(document).ready(function() {
        var issueRows = $(".issuerow");

        var draggedRow = null;
        var dropSequence = null;
        var insertAfter = false;

        // Create a dragger knob on each issue row
        issueRows.each(function() {
            var issueRow = $(this);
            var dragger = $("<td>");
            dragger.addClass("dragger");
            issueRow.prepend(dragger);
            dropSequence = null;

            // Start dragging
            dragger.bind("mousedown.drag", function(e) {
                e.preventDefault();
                draggedRow = dragger.parent();
                draggedRow.addClass("dragged");
            });
        });

        // Update dragged row & move it to new position
        $(document).bind("mousemove.drag", function(e) {
            e.preventDefault();
            if(draggedRow == null) {
                return;
            }

            var el = $(e.target);
            var hoveredRow = el.closest(".issuerow");
            if(hoveredRow.length > 0) {
                if(!draggedRow.is(hoveredRow)) {
                    draggedRow.detach();
                    if(e.offsetY < 20) {
                        insertAfter = false;
                        draggedRow.insertBefore(hoveredRow);
                    } else {
                        insertAfter = true;
                        draggedRow.insertAfter(hoveredRow);
                    }
                }
                dropSequence = draggedRow.index();
            }
        });

        // Perform the actual task update
        $(document).bind("mouseup.drag", function(e) {
            e.preventDefault();

            if(draggedRow != null && dropSequence != null) {
                // Take original move URL & build update URL
                var moveUrl = draggedRow.find(".subtask-reorder a").first().attr("href");
                var currentSequence = moveUrl.substring(moveUrl.indexOf("&currentSubTaskSequence=") + "&currentSubTaskSequence=".length, moveUrl.indexOf("&subTaskSequence="));
                if(currentSequence != dropSequence) {
                    var id = moveUrl.substring(moveUrl.indexOf("id=") + "id=".length, moveUrl.indexOf("&currentSubTaskSequence="));
                    var newLink = "/secure/MoveIssueLink.jspa?id=" + id + "&currentSubTaskSequence=" + currentSequence + "&subTaskSequence=" + dropSequence;
                    window.location = newLink;
                }

                // Reset dragged row
                draggedRow.removeClass("dragged");
                draggedRow = null;
            }
        });
    });
})($);