JavaScript Bookmarklet to add-up all the estimated checklist items on a card in Trello.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $lists=$(".checklist"); | |
$.each($lists, function( key, value ) { | |
var $lName = $(value).find(".checklist-title h3"); | |
var $lNameInput = $(value).find(".checklist-title input"); | |
var $items = $(value).find(".checklist-item"); | |
var $tot = 0; | |
$.each($items, function(key, value) { | |
var $itemText = $(value).find(".checklist-item-details-text"); | |
var $itemEst = $itemText[0].innerText.match(/\(\d+\.?\d*\)/g); | |
if ($itemEst) { | |
$itemEst = new Number($itemEst[0].replace("(", '').replace(")", '')); | |
if (!isNaN($itemEst)) { | |
$tot += $itemEst; | |
} | |
} | |
}); | |
$lNameUp = $lName[0].innerText.match(/^[^\(]*/i); | |
$lNameUp += ' (' + $tot + ')'; | |
$lName[0].innerText = $lNameUp; | |
$lNameInput.val($lNameUp); | |
}); |
Gist updated for recent Trello changes
well done! Could you please advise how to aggregate now checklists to card name?
Then Scrum for Trello plugin will be compatible
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instructions for use:
Note: If estimates aren't fixed, just add a ? or some non-numeric character into the estimate and they'll be excluded from the sum