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: add TaskLocation to ListItem #3326

Conversation

ilandikov
Copy link
Collaborator

Done by pairing with @claremacrae

Types of changes

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)
  • Tests (prefix: test - additions and improvements to unit tests and the smoke tests)

Description

  • add TaskLocation to ListItem (TaskLocation not removed from Task)

Motivation and Context

  • prepare to add event listener to non-task list items with checkbox that would check/uncheck them

How has this been tested?

  • unit tests

Checklist

  • My code follows the code style of this project and passes yarn run lint.
  • My change has adequate Unit Test coverage.

Terms

Copy link

sonarqubecloud bot commented Feb 13, 2025

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarQube Cloud

}
} catch (e) {
this.errorReporter(e, this.filePath, listItem, line);
}
return sectionIndex;
}

private createListItem(listItem: ListItemCache, line: string, lineNumber: number) {
private createListItem(listItem: ListItemCache, line: string, lineNumber: number, taskLocation: TaskLocation) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At some point we can remove the lineNumber parameter here, as taskLocation now also supplies the lineNumber.
I put an assert in, and confirmed that across all our tests, the two values always agree.

@claremacrae claremacrae merged commit 428eff5 into obsidian-tasks-group:main Feb 13, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants