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: support sub-attributes after value paths. #99

Merged

Conversation

mastermatt
Copy link
Contributor

Allow comparison operations on sub-attributes following value paths. e.g. emails[type eq "work"].value eq "[email protected]"

The tokenizer regex was updated to allow for a trailing dot (.) after a closing square bracket (]) when searching for "Bracket" tokens. readValFilter was then updated to look for any dot after the closing bracket and a following "Word" token. When this happens an implicit and op is returned.

One issue with this approach is that any and ops before or after this syntax will result in nested and ops instead of a single op with more than two filters. Check the last test added to parse.test.ts for an example. However, I couldn't figure out a neat way to flattening that use case without a much more disruptive changeset.

fixes: #96

Allow comparison operations on sub-attributes following value paths.
e.g. `emails[type eq "work"].value eq "[email protected]"`

The tokenizer regex was updated to allow for a trailing dot (.) after a closing square bracket (]) when searching for "Bracket" tokens.
`readValFilter` was then updated to look for any dot after the closing bracket and a following "Word" token. When this happens an implicit `and` op is returned.

One issue with this approach is that any `and` ops before or after this syntax will result in nested `and` ops instead of a single op with more than two filters. Check the last test added to `parse.test.ts` for an example. However, I couldn't figure out a neat way to flattening that use case without a much more disruptive changeset.

fixes: thomaspoignant#96
@sonarqubecloud
Copy link

sonarqubecloud bot commented Oct 2, 2022

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@thomaspoignant
Copy link
Owner

thanks a lot @mastermatt for this contribution, this is super helpful.
I will release a new version containing this fix.

@thomaspoignant thomaspoignant merged commit f03e832 into thomaspoignant:master Oct 3, 2022
@mastermatt mastermatt deleted the 96/subattr-after-valpath branch October 3, 2022 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

A Sub-Attribute after a Value Path causes an 'unexpected token' error
2 participants