-
-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: Remove need to construct temporary Task objects #3391
Conversation
|
@@ -127,18 +127,28 @@ export class TaskLineRenderer { | |||
* @note Output is based on the {@link DefaultTaskSerializer}'s format, with default (emoji) symbols | |||
* @param task The task to be rendered. | |||
* @param taskIndex Task's index in the list. This affects `data-line` data attributes of the list item. | |||
* @param isTaskInQueryFile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder whether this jsdoc is still valid since now function
public async renderTaskLine({
task,
taskIndex,
isTaskInQueryFile,
isFilenameUnique,
}: {
task: Task;
taskIndex: number;
isTaskInQueryFile: boolean;
isFilenameUnique?: boolean;
}): Promise<HTMLLIElement> {}
has only one parameter: {task, taskIndex, isTaskInQueryFile, isFilenameUnique }
with 4 properties...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wondered the same thing, but neither WebStorm nor SonarLine/Qube is complaining...
Types of changes
Done by pairing with @ilandikov.
Internal changes:
refactor
- non-breaking change which only improves the design or structure of existing code, and making no changes to its external behaviour)Description
This refactors the fix for #3297
Motivation and Context
The goal was to remove the need to create new
Task
objects during rendering.How has this been tested?
resources/sample_vaults/Tasks-Demo/Test Data/internal_heading_links.md
Screenshots (if appropriate)
Checklist
yarn run lint
.Terms