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

feat: partial support for query.file.property() and query.file.hasProperty() #3242

Merged
merged 44 commits into from
Dec 20, 2024

Conversation

claremacrae
Copy link
Collaborator

@claremacrae claremacrae commented Dec 20, 2024

Types of changes

Changes visible to users:

Internal changes:

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

Description

Add access to query.file.property() and query.file.hasProperty()

Example with placeholders

---
task_instruction: group by filename
---

```tasks
{{query.file.property('task_instruction')}}
```

Note: Only placeholders only work with single-line properties in this first version.

Example with custom filters

Note the example error-checking for if the property is not set.

---
root_dirs_to_search:
  - Formats/
  - Filters/
---

```tasks
filter by function \
    if (!query.file.hasProperty('root_dirs_to_search')) { \
        throw Error('Please set the "root_dirs_to_search" list property, with each value ending in a backslash...'); \
    } \
    const roots = query.file.property('root_dirs_to_search'); \
    return roots.includes(task.file.root);
```

Definite Limitations

  • Documentation will be provided later, once I have more experience using this in my own vault.
  • Only single-line properties work. Multiple-line properties give an error message 'do not understand query'.
  • It does not listen out for edits the properties, so if a property is edited, the user needs to close and re-open the file.

Possible limitation

  • If the query file was created in the last second or two before the query is run, any CachedMetadata may not yet be available - in which case, the properties could not be read.

Motivation and Context

This is the majority of the implementation needed for:

How has this been tested?

  • Automated tests
  • Exploratory testing

Screenshots (if appropriate)

Checklist

Terms

This will make it a bit simpler to write tests,
as one TasksFile can be used in several tests.
See #3083.

There are a lot of caveats and limitations right now.
See the comments in the code and the tests.
"Group parts of the regex together to make the intended operator precedence explicit."
Now query.file.property() can be used in placeholders, all the uses of query.file.frontmatter
need to be removed.
…nted...

Now that placeholders can contain function calls
@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 20, 2024
Copy link

sonarqubecloud bot commented Dec 20, 2024

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

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