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

fix: Allow multi-line properties in {{query.file.property('...')}} #3245

Merged
merged 51 commits into from
Dec 22, 2024

Conversation

claremacrae
Copy link
Collaborator

@claremacrae claremacrae commented Dec 22, 2024

Types of changes

Changes visible to users:

  • Bug fix (prefix: fix - non-breaking change which fixes an issue)

Internal changes:

  • Tests (prefix: test - additions and improvements to unit tests and the smoke tests)

Description

This fixes one of the limitations from PR #3242 - the following now works:

Only single-line properties work. Multiple-line properties give an error message 'do not understand query'.

Note that continuation lines are not supported in multi-line properties, when they are used in placeholders.

Motivation and Context

Getting closer to releasing access to query.file.property() and query.file.hasProperty() to users...

See:

How has this been tested?

  • Extra automated tests
  • Exploratory testing

Screenshots (if appropriate)

Consider the following demo sample markdown note.

I have 3 Tasks searches, and they differ only in the happens date filter: I have a bunch of standard instructions that I want to use in all 3 searches.

Now, I can put all my standard instructions in a multi-line common_instructions property value, and embed its value as a placeholder in each of the 3 searches 🎉 :

---
common_instructions: |
  tags include #my/lovely/project
  short mode
  show tree
  show urgency
  group by due
---

- [ ] #task Do stuff - ==overdue== #my/lovely/project 📅 2024-12-21
- [ ] #task Do stuff - ==today== #my/lovely/project 📅 2024-12-22
- [ ] #task Do stuff - ==future== #my/lovely/project 📅 2024-12-23

## Overdue tasks

```tasks
{{query.file.property('common_instructions')}}
happens before today
```

## Tasks for today

```tasks
{{query.file.property('common_instructions')}}
happens today
```

## Future tasks

```tasks
{{query.file.property('common_instructions')}}
happens after today
```

Here are the search results:

image

Checklist

Terms

…roperties

This removes the spaces that were retained before end-of-line placeholder comments,
that were previously present but undocumented.
@claremacrae claremacrae added scope: filters Additions and modifications to the search filters scope: scripting Issues to do with custom filters, custom sorting and similar labels Dec 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: filters Additions and modifications to the search filters scope: scripting Issues to do with custom filters, custom sorting and similar
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant