Skip to content

Sort group according to priority of each task inside each group #3332

Discussion options

You must be logged in to vote

Hey @rhhub, your code definitely more logical than mine so i updated it:

group by function {
    const tasksInQueryKey = "tasksInQuery";
    if (!query.searchCache[tasksInQueryKey]) {
        query.searchCache[tasksInQueryKey] = [];
    }
    query.searchCache[tasksInQueryKey].push(task);
    return null;
}

group by function {
    const tasksInQueryKey = "tasksInQuery";
    const cacheKey = "filename-heading-normalised-urgency";
    let getTaskGroup = (t) => (t.file.filenameWithoutExtension || "") + (t.heading ? "#" + t.heading : "");
    
    if (!query.searchCache[cacheKey]) {
        const tasksInQuery = query.searchCache[tasksInQueryKey];
        let groupUrgencyMap = new Map();

Replies: 4 comments 11 replies

Comment options

You must be logged in to vote
5 replies
@TamadoIchikai
Comment options

@claremacrae
Comment options

@TamadoIchikai
Comment options

@claremacrae
Comment options

@claremacrae
Comment options

Comment options

You must be logged in to vote
2 replies
@TamadoIchikai
Comment options

@claremacrae
Comment options

Comment options

You must be logged in to vote
2 replies
@claremacrae
Comment options

@rhhub
Comment options

Comment options

You must be logged in to vote
2 replies
@TamadoIchikai
Comment options

Answer selected by TamadoIchikai
@rhhub
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants