generated from obsidianmd/obsidian-sample-plugin
-
-
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
feat: Placeholders can now contain expressions #3292
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When I was experimenting with using Expression inside some new code, I passed in the wrong data for paramsArgs and had trouble tracking it down because the use was outside the try/catch block.
The code is used more generally now. I actually don't think this code is reachable, but am not 100% confident of that.
Fixed by SonarLint - see sonarlint S6644: Unnecessary use of conditional expression for default assignment.
I want to replace the current manual parsing of function calls with use of parseExpression() and evaluateExpression(). For now, I am still returning the value from the original code.
This demonstrates more of the current behaviours.
In preparation for next step.
If there was any error in evaluateAnyFunctionCalls(), just return the raw input string, and let Mustache process it.
This placeholder now works!!! {{query.file.property("show-tree") ? "show tree" : "hide tree"}}
I am especially proud of the query inside the heading "Can now have logical operators inside placeholders".
It makes the pattern easier to read, though perhaps makes the intention of the code a little harder to read.
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Types of changes
Changes visible to users:
feat
- non-breaking change which adds functionality)docs
- improvements to any documentation content for users)vault
- improvements to the Tasks-Demo sample vault)Internal changes:
test
- additions and improvements to unit tests and the smoke tests)Description
This greatly improves the utility of query properties in Tasks searches, by allowing expressions inside placeholders.
Motivation and Context
Desperately wanting to put down query-file-properties and get the next release out.
How has this been tested?
Screenshots (if appropriate)
Here is a video of the kind of thing this enables.... I have added to the Global Query all the placeholder instructions shown in the markdown below...
Show.File.Properties-3.mp4
Example use of this PR:
Checklist
yarn run lint
.Terms