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

Expose query.file.property similarly to task.file.property #3083

Closed
4 tasks done
jbusecke opened this issue Sep 15, 2024 · 21 comments
Closed
4 tasks done

Expose query.file.property similarly to task.file.property #3083

jbusecke opened this issue Sep 15, 2024 · 21 comments
Labels
scope: frontmatter Anything to do with YAML frontmatter, also known as Obsidian properties scope: scripting Issues to do with custom filters, custom sorting and similar type: enhancement New feature or request

Comments

@jbusecke
Copy link

jbusecke commented Sep 15, 2024

⚠️ Please check that this feature request hasn't been suggested before.

  • I searched previous Ideas in Discussions didn't find any similar feature requests.
  • I searched previous Issues didn't find any similar feature requests.
  • I am only requesting a single feature. Multiple changes should be split into individual requests, with links between them.
  • I believe my requested feature will be generally applicable to other users, not just me: it is not uniquely tied to my personal workflow.

🔖 Feature description

First of all a huge thanks for maintaining this awesome plugin!

I believe my request is an extension of #2480 mostly. I would like to be able to access the file properties of the query file exactly like one is able to access them on for tasks.
I think this would be particularly useful for workflows involving templates.

✔️ Solution

This already works
I can make a template for an index file where I add a task block that will capture tasks whos file property matches a certain value similar to this:

```tasks
filter by function task.file.property('status') === 'in progress'
```

But I am thinking of another use case where I want to define a value in the query notes frontmatter and then match tasks based on that value (without having to modify the templates task block).

An example: I am creating a 'cooking' index note with a property matching_tag:cooking.

Ideally the note has a task block like this:

```tasks
filter by function task.tags.contain(query.file.property('matching_tag'))
```

Which would then give me all the tasks in my vault that have the tag #cooking.

I believe this would be very handy to organize notes that pull together tasks from many different (e.g. daily planner) notes, particularly if you have several task blocks that add additonal filters (e.g. different task blocks for overdue, due soon, scheduled that all show only tasks with the #cooking tag).

Exposing query.file.property in the same way as task.file.property is also fairly general and might help other folks. I am unfortunately not very familiar with the internals but was hoping that this might not be too complex, since it might be similar to the recent addition to expose task.file.property?

❓ Alternatives

The only way I have found to make this work currently is to enter the value manually like this:

```tasks
filter by function task.tags.contain("#manually_added_tag")
```

which works, but is much more prone to typos and needs additional user intervention.

📝 Additional Context

It seems that what I describe was already part of the testing here? Maybe I missed an issue that is tracking this already?

@jbusecke jbusecke added the type: enhancement New feature or request label Sep 15, 2024
@claremacrae
Copy link
Collaborator

claremacrae commented Sep 15, 2024

Hi thanks for the suggestion. There seems to be a problem with the formatting of text which makes it hard to read.

Could you edit the description and fix it please?

@claremacrae claremacrae added question Further information is requested scope: scripting Issues to do with custom filters, custom sorting and similar labels Sep 15, 2024
@jbusecke
Copy link
Author

Ah sorry about that, just fixed it. Thanks for the ping.

@jbusecke
Copy link
Author

This feature would open up a bunch of opportunities to interact with other plugins too. Just as an example, one could define a button using meta-bind that modifies a property (to e.g. #personal #work) and could then have the task block update dynamically and show only work/personal tasks. One could build an entire task dashboard this way I guess 😁

@claremacrae claremacrae removed the question Further information is requested label Sep 16, 2024
@claremacrae
Copy link
Collaborator

I had the code for this when working on #2480 and it was buggy.

IIRC The biggest problem was that the query was not updated when I edited the frontmatter in the file containing the query, so I had to close and re-open the query file every time I edited its frontmatter.

So it was clearly not releasable, and I chose to release access to task.file.property as a first step, and document the limitation in https://publish.obsidian.md/tasks/Getting+Started/Obsidian+Properties#Limitations

image

I will edit that docs to reference this issue.

@claremacrae
Copy link
Collaborator

I will edit that docs to reference this issue.

Done:

image

@jbusecke
Copy link
Author

Thanks for the explanation. Curious to see if there might be upstream improvements that fix this eventually.

@claremacrae
Copy link
Collaborator

Thanks for the explanation. Curious to see if there might be upstream improvements that fix this eventually.

No, it is code that needs to be written in Tasks. It is just competing with a lot of other requests, and finite development time.

@jbusecke
Copy link
Author

Ah got it. Either way, just wanted to say again how much I appreciate all the work on this great plugin!

@ulbrich
Copy link

ulbrich commented Sep 21, 2024

Plus 1 from me! 🙂 This would make templates so much more powerful, s you would just need to modify file properties to change the behaviour. By the way: The Tasks plugin is brilliant! 🤩

@neerolyte
Copy link

neerolyte commented Oct 9, 2024

I think I really want this too.

My use case is that I have files representing people (who I need to do stuff for) or projects (that are big lists of related tasks) and when looking at either of those files, I want to be able to pick up related tasks by matching anything set as the current file tags.

Currently I've landed on:

tasks
not done
# searchTags needs to be manually updated until https://github.com/obsidian-tasks-group/obsidian-tasks/issues/3083
filter by function \
	const searchTags = ['#at-least-one-tag-here']; \
	const fileTags = task.file.property('tags'); \
	const allTags = task.tags.concat(fileTags); \
	return searchTags.find((tag) => allTags.includes(tag)) !== undefined;

but assuming I've fully understood the issue here, I'd like to just populate searchTags from query.file.property('tags') if this is implemented.

Edit: I too think the plugin is amazing!

@Vadych
Copy link

Vadych commented Oct 22, 2024

Plus 1 from me!

claremacrae added a commit that referenced this issue Dec 10, 2024
See #3083.

There are a lot of caveats and limitations right now.
See the comments in the code and the tests.
@claremacrae
Copy link
Collaborator

@NicolaCostantino You kindly asked in #3154 (comment)

Hi @claremacrae, is there any similar past issue/PR that I could have a look to, to figure out how the codebase works internally to purpose a PR with a consistent implementation? Thank you!

Edit: I already had a look at the contribution guide, I'd just like to have a reference to be consistent since it'd be a new introduction

I have spent about 4 or 5 hours taking my initial experiments to the point where they have some tests and I understand the behaviour.

So here is the work for you have a look at:

main...query-accessing-properties

I've made an effort to describe in comments the issues that would currently stop me releasing the code as-is...

I actually have some free time this month to do a little pair-programming on Tasks, as my main pairer is unavailable until January, so if you wanted, we could have a Zoom call to talk through the code...

But first of all, could you drop some notes in here saying what you thing, and if you are indeed interested in picking this work up?
Many thanks.

@NicolaCostantino
Copy link

@NicolaCostantino You kindly asked in #3154 (comment)

Hi @claremacrae, is there any similar past issue/PR that I could have a look to, to figure out how the codebase works internally to purpose a PR with a consistent implementation? Thank you!
Edit: I already had a look at the contribution guide, I'd just like to have a reference to be consistent since it'd be a new introduction

I have spent about 4 or 5 hours taking my initial experiments to the point where they have some tests and I understand the behaviour.

So here is the work for you have a look at:

main...query-accessing-properties

I've made an effort to describe in comments the issues that would currently stop me releasing the code as-is...

I actually have some free time this month to do a little pair-programming on Tasks, as my main pairer is unavailable until January, so if you wanted, we could have a Zoom call to talk through the code...

But first of all, could you drop some notes in here saying what you thing, and if you are indeed interested in picking this work up? Many thanks.

Hi @claremacrae,
thank you for this (I'll answer you directly here since I understood these two features could be somehow related to each other)

I'll have a look at the changes you referred to.

I could be more available this month as well to have a look at this and pairing would be great: I never worked on this codebase and Obsidian plugins before and I'm still figuring out the architecture, so any kind of onboarding would be more than appreciated!

I'd be deeply interested to have a look at this development since it's an actual blocker in my workflow and querying using dataview isn't a valid solution.

How should be proceed from there then?
I'm finishing having a deeper look at the doc and tracing the flow about your changes in the meanwhile, let me know what's next

Thank you!

@claremacrae
Copy link
Collaborator

Excellent!

How should be proceed from there then?

could you drop me an email - see my profile here for address… then we can set up a pairing session.

@claremacrae
Copy link
Collaborator

Ooooh - one more thought, @NicolaCostantino,

I'd be deeply interested to have a look at this development since it's an actual blocker in my workflow and querying using dataview isn't a valid solution.

Since you are so keen to use it out, you could stun two birds with one stone by:

  1. Installing and using the code on the branch in to your vault - ideally by building it yourself (so you have a build already set up before we pair), or alternatively from downloading the dist....zip file in this build of the branch
  2. Reading the code and tests on the branch, and the comments, you will be able to see what I have been able to implement so far - and then also the known limitations to be aware of.
  3. Then you are definitely safe to use it in your own vault for real, to unblock your workflow!

In my experience, there's no substitute for trying out a feature on my own vault. If there are problems to be found I find them very quickly, when I know the data in the vault.

Your experience of this will be very helpful when we are considering if/when the feature will be ready for release....

@NicolaCostantino
Copy link

That's a great insight @claremacrae , thank you!
I think I could set it up right tomorrow and then ping you right after via email.

@claremacrae
Copy link
Collaborator

That's great.

Not saying you would, but please don't spend more than an hour-or-so trying to set it up, if you have problems...

It would be better for us to set a date soon to meet, and get going, than for (maybe) days to pass before we even try to find a date to start working together... 😄

@claremacrae
Copy link
Collaborator

Hi @NicolaCostantino,

I've pushed some more fixes to the branch, and would really like to go ahead and set up at least our first pairing session ASAP...

It's better to talk than to wait, and with December holidays coming up fast, if we don't book something soon, we will have missed my window of opportunity.

So please could you email me when you have a moment...

Thanks in advance...

@NicolaCostantino
Copy link

Hey @claremacrae,
I've sent you an email yesterday at the address on your profile
Thanks

@claremacrae
Copy link
Collaborator

This is now implemented via these PRs.

Those PRs describe the current limitations, and it needs documentation, but the basic facility is there now, and will be included in the next release - the date of which is not yet known.

@claremacrae claremacrae added the scope: frontmatter Anything to do with YAML frontmatter, also known as Obsidian properties label Feb 4, 2025
@claremacrae claremacrae moved this from ✅ Done to 🎉 Released in Tasks (Obsidian plugin) Roadmap Feb 10, 2025
@claremacrae
Copy link
Collaborator

I have just released this in Tasks 7.15.0.

The release notes have links to the relevant documentation pages.

@claremacrae claremacrae removed the status: next release Should be part of the next release label Feb 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: frontmatter Anything to do with YAML frontmatter, also known as Obsidian properties scope: scripting Issues to do with custom filters, custom sorting and similar type: enhancement New feature or request
Projects
Status: 🎉 Released
Development

No branches or pull requests

6 participants