Sort group according to priority of each task inside each group #3332
-
TLDR: Is it possible to sort by total urgency score calculated from all the tasks inside each backlink's groups then sort descending? Hello, i really love tasks plugin, this enable linking and tracking my academic journey more consistent and clearer than Todoist. Current group by and sorting is nearly exact behaviour i would love to have, my desire behaviour is as following: Maintainer note: @claremacrae formatted the file contents as fenced code blocks so the text can be easily copied-and-pasted in to Obsidian File A:
File B
File C
Current code block:
I want scrap 1 with highest priority task due today will appear first then to scrap 3 and scrap 2 according to total urgency score. Will this possible to implement? And i sorry in advandce for the confusion in my grammar, english is not my mother tongue. Thanks for reading! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 11 replies
-
I am not totally certain I understand the question, but perhaps it will help to say that:
So I think the answer to your question is No. |
Beta Was this translation helpful? Give feedback.
-
Tasks 7.16.0Tasks 7.16.0 is out now. There is an undocumented feature, which is an experiment to see if I can speed up your code above. Updating your searchPlease:
group by function { \
let cacheKey = 'filename-heading-normalised-urgency'; \
let getTaskGroup = (t) => (t.file.filenameWithoutExtension || "") + (t.heading ? "#" + t.heading : ""); \
if (!query.searchCache[cacheKey]) { \
let allTasks = query.allTasks.filter(t => !t.isDone); \
let groupUrgencyMap = new Map(); \
let groupTaskCountMap = new Map(); \
allTasks.forEach(t => { \
let taskGroup = getTaskGroup(t); \
groupUrgencyMap.set(taskGroup, (groupUrgencyMap.get(taskGroup) || 0) + (t.urgency || 0)); \
groupTaskCountMap.set(taskGroup, (groupTaskCountMap.get(taskGroup) || 0) + 1); \
}); \
let normalize = (group) => groupUrgencyMap.get(group) / (groupTaskCountMap.get(group) || 1); \
let sortedGroups = [...groupUrgencyMap.keys()].sort((a, b) => normalize(b) - normalize(a)); \
query.searchCache[cacheKey] = { sortedGroups, normalize }; \
} \
let { sortedGroups, normalize } = query.searchCache[cacheKey]; \
let taskGroup = getTaskGroup(task); \
let index = sortedGroups.indexOf(taskGroup); \
return taskGroup ? '%%' + index + '%% [[' + taskGroup + ']] (Normalized Urgency: ' + normalize(taskGroup).toFixed(2) + ')' : ''; \
} It works by only populating the maps once at the start of the search. If you had 1,000 tasks in your vault, it would reduce the calculations from 1,000,000 to around 1,000 - so by a factor of a thousand... I think you will notice a speed-up. Why is this not documented?The code is quite complicated now. I may try and find an easier way to use this - so I don't want to encourage users to use it, in case I do change how it works in a future release. But first I need to test it for a while in my own main vault, and thought you might like to test it out too. Please let me know how you get on. |
Beta Was this translation helpful? Give feedback.
-
I just recently got an urge to see if tasks was capable of the following feature request I made 2 years ago: #1939. I want to thank you both. The code snippet will greatly help. My goal is to sort groups by the max urgency of all the tasks within a group. |
Beta Was this translation helpful? Give feedback.
-
@TamadoIchikai Not ideal but instead of querying all tasks it's possible to use group by to cache only the relevant tasks. Look here: #1939 (comment) |
Beta Was this translation helpful? Give feedback.
Hey @rhhub, your code definitely more logical than mine so i updated it: