Skip to content
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

Merged
merged 39 commits into from
Mar 24, 2025

Conversation

claremacrae
Copy link
Collaborator

Types of changes

Done by pairing with @ilandikov.

Internal changes:

  • Refactor (prefix: 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?

  • Automated tests
  • Manual exploratory testing, by adding a Tasks search to:
    • resources/sample_vaults/Tasks-Demo/Test Data/internal_heading_links.md

Screenshots (if appropriate)

Checklist

Terms

@claremacrae claremacrae added type: internal Only regards development or contributing scope: rendering of tasks How the plugin displays tasks, including search results (except CSS issues) labels Mar 24, 2025
@claremacrae claremacrae merged commit 691baa4 into main Mar 24, 2025
4 checks passed
@claremacrae claremacrae deleted the refactor-description-render branch March 24, 2025 15:34
@@ -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
Copy link
Collaborator

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...

Copy link
Collaborator Author

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...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: rendering of tasks How the plugin displays tasks, including search results (except CSS issues) type: internal Only regards development or contributing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants