-
-
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
fix: convert internal heading links when task is rendered in different file #3357
fix: convert internal heading links when task is rendered in different file #3357
Conversation
…t file When a task containing an internal heading link (e.g. [[#Header]]) is rendered in a different file than where it was created, the link is now automatically converted to include the source file path (e.g. [[original.md#Header]]). Changes: - Added queryPath parameter to TaskLineRenderer to track source context - Updated link conversion logic in renderComponentText - Added comprehensive test suite for internal heading link handling - Updated InlineRenderer to pass current file path Fixes obsidian-tasks-group#3297
Hi @byronluk, wow, thank you for looking at this - I appreciate it greatly. And thank you for taking care with the test cases. Before looking at the code, I did some exploratory testing - I spent about 45 minutes trying to come up with cases to fool it. Summary of thoughts after exploratory testing
I don't know how experienced you are with the Obsidian API? Cases not tested
How I testedThese are the files I used: 3297 - Search.md
3297 - Tasks.md
Here is what the query looks like, running the code in the PR: |
It would also be worth testing rendering of nested list items that contain links to headings in their own file - and when their parent task line is shown in search results that contain |
At the moment So it would be fine for this PR to focus just on fixing task lines - and then we can later make sure that any fix is also applied to list items. |
@byronluk many thanks for looking at this and spending time for this PR. I left a couple of suggestions on code level. @claremacrae it would be nice to refactor this is in a way to make this change easyER (I don't find it not_easy). Maybe we can discuss this on our next session before refactoring the description rendering you mentioned before. In any case I agree with you that this could be merged without the latter. |
Thanks...
Where I haven't already paired with contributors, I don't request the 'make the change easy/make the easy change' approach, as the technique is just not sufficiently well known, and most people don't use refactoring IDEs either... It's a skill that takes quite some time to learn... So I focus on small PRs, and ensuring good exploratory testing and agreeing the desired behaviour before giving feedback on code. |
Thanks for the detailed feedback @claremacrae, @ilandikov! I agreed, I'm not a huge fan of the extra parameter I introduced either 😅. I'm not very familiar with the codebase and wanted to timebox, so figured it'd be best to put a PR out where we could anchor our discussion around.
This sounds like a great idea! I'll poke around and see if we can resolve this async, as I'm quite busy with work and my 1 year old haha.. I'll take a look at:
Will keep you all updated on my progress here! Probably should be able to get around to this within the next week or so. |
Super - thanks very much @byronluk. Given your time constraints, I suggest you don’t worry about the parameter, though. We can always refactor the code easily after the PR is merged. |
PS @byronluk ... I like your mentioning of time-boxing... Feel free to time-box your next investigations, and then send me an email to have a chat. Because of my familiarity with the code, I can see the next few steps on implementation and testing and it will save you hours, whilst still leaving you the actual problem to fix. :-) |
Plan B: If you really, really don't have time for a chat, let me know if you are happy for me to push some demo code to your PR branch instead - and I'll explain things in comments instead. It would be lower band-width communication, but might fit in better with your schedule... And could be followed by a later conversation, too, if need be... |
…erer This commit: 1. Adds a new processTaskLinks method to QueryResultsRenderer that correctly processes internal heading links 2. Removes the link handling from TaskLineRenderer (removing queryPath parameter and related code) 3. Ensures links are rendered with proper display text format using the '|' separator 4. Adds comprehensive test cases for various heading link scenarios 5. Adds test data for internal heading links 6. Properly handles different link formats including links with spaces, dashes, underscores, and aliases This improves how internal heading links display in query results by keeping the proper link text formatting while ensuring correct file references.
@claremacrae, @ilandikov I took another pass at the change using the linkCache. Would appreciate your feedback! |
I went through the test cases you provided @claremacrae and this change should cover them all correctly |
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.
Wow - I'm super impressed at how much you have figured out about our testing mechanism.
This is just a quick initial comment...
ee1133a
to
604d054
Compare
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.
Wow, this is a huge improvement. 🎉 ❤️
I have approved this, as if you wanted to put it down now, I think with just fixing probably wrong test cases, it is good enough to merge and release - perhaps logging the problem cases I pointed out as bugs, to possible be addressed in future...
I'll take another pass through when I have some time tomorrow! Will fix up the simple mistakes (sorry about the messy test cases!) and think about the positioning problem. Thank you for the thorough review! |
Thank you for this reply, but.... tl;dr I have been thinking about it quite a lot, and I actively do not want you to adjust this code to address the positioning problem! 😄 Rather than having the rendering code try to find links, I feel the the right-or-sustainable answer is to make links first-class objects in the Tasks code, and to use the stored link positions in the rendering. So, please do not spend your time making the current PR use Obsidian's link-location data. As well as making the current code a lot more complicated, for what would be an interim measure, the writing of tests for it would be nightmarishly complicated. Here are some of the scenarios to consider:
Let's instead focus on getting the current implementation ready to merge (fix the misleading comment, improve the tests)... |
- Enhance link processing to only transform internal heading links (starting with #) - Implement position-based link replacement to correctly handle multiple occurrences - Add test cases for mixed formatting scenarios (code blocks, HTML tags) - Reorganize test data structure and simplify test approach - Use snapshot testing for more precise verification
I agree with this :) I did fix up my solution before seeing your comment and I do think it is a fairly reasonable approach with minimal added complexity- I'll push it up and see what you think and happy to revert back to the current approach we have here if you'd like. |
resources/sample_vaults/Tasks-Demo/Test Data/internal_heading_links.md
Outdated
Show resolved
Hide resolved
|
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.
Awesome work - huge thanks @byronluk. 🎉 😄
Types of changes
Changes visible to users:
feat
- non-breaking change which adds functionality)feat!!
orfix!!
- fix or feature that would cause existing functionality to not work as expected)fix
- non-breaking change which fixes an issue)i18n
- additions or improvements to the translations - see Support a new language)docs
- improvements to any documentation content for users)vault
- improvements to the Tasks-Demo sample vault)contrib
- any improvements to documentation content for contributors - see Contributing to Tasks)Internal changes:
refactor
- non-breaking change which only improves the design or structure of existing code, and making no changes to its external behaviour)test
- additions and improvements to unit tests and the smoke tests)chore
- examples include GitHub Actions, issue templates)Description
When a task containing an internal heading link (e.g. [[#Header]]) is rendered in a different file than where it was created, the link is now automatically converted to include the source file path (e.g. [[original.md#Header]]).
Changes:
Motivation and Context
Fixes #3297.
I use inline links frequently with tasks and also run queries on tasks, which results in the broken link.
How has this been tested?
Screenshots (if appropriate)
Checklist
yarn run lint
.Terms