JIRA task mover plugin

Plugin to allow moving tasks in JIRA

2018-09-12 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला 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         JIRA task mover plugin
// @description  Plugin to allow moving tasks in JIRA
// @version      0.4
// @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;
    }

    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;

        issueRows.each(function() {
            var issueRow = $(this);
            var dragger = $("<td>");
            dragger.addClass("dragger");
            issueRow.prepend(dragger);
            dropSequence = null;

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

        $(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();
            }
        });

        $(document).bind("mouseup.drag", function(e) {
            e.preventDefault();

            if(draggedRow != null && dropSequence != null) {
                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;
            }
        });
    });
})($);