Jira done count

Adds done-count to sprint description.

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

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला 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 done count
// @namespace   urn://https://www.georgegillams.co.uk/api/greasemonkey/jira_done_count
// @include     *gojira.*
// @exclude     none
// @version     2
// @grant    		none
// @description	Adds done-count to sprint description.
// ==/UserScript==

let doneCount = -1;

function getDoneCount() {
  const columns = document.getElementsByClassName('ghx-column ui-sortable');
  if (columns.length < 1) {
    return;
  }
  const doneColumn = columns[columns.length - 1];
  return doneColumn.childNodes.length;
}

function updateDoneCount(newValue) {
  if (doneCount === newValue) {
    return;
  }

  doneCount = newValue;

  const sprintDescriptionElement = document.getElementById('ghx-sprint-goal');
  const currentValue = sprintDescriptionElement.innerHTML;
  const newTextValue = `${currentValue.split(' • ')[0]} • ${doneCount} ticket${
    doneCount === 1 ? '' : 's'
  } done`;
  sprintDescriptionElement.innerHTML = newTextValue;
}

function updateCount() {
  const newDoneCount = getDoneCount();
  updateDoneCount(newDoneCount);
}

function worker() {
  try {
    updateCount();
  } catch (e) {
    // eslint-disable-next-line no-console
    console.log(e);
  }
}

setInterval(worker, 1500);