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

[PROPOSAL] Switch case mask #254

Open
adrienaury opened this issue Aug 17, 2023 · 0 comments
Open

[PROPOSAL] Switch case mask #254

adrienaury opened this issue Aug 17, 2023 · 0 comments

Comments

@adrienaury
Copy link
Member

adrienaury commented Aug 17, 2023

Actual

  - selector:
      jsonpath: "client_type1"
    mask:
        hashInCSV:
           uri: "file://../referentiels/type1.csv"

  - selector:
      jsonpath: "client_type2"
    mask:
        hashInCSV:
           uri: "file://../referentiels/type2.csv"

  - selector:
      jsonpath: "client"
    mask:
      template: '{{if eq .type_client 1}}{{.client_type1}}{{else}}{{.client_type2}}{{end}}'

Wanted

  - selector:
      jsonpath: "client"
    mask:
      switch:
        - case: '{{eq .type_client 1}}'  # required
          mask:  # one of mask / masks
            hashInCSV:
              uri: "file://../referentiels/type1.csv"
        default:    # required
          mask:
            hashInCSV:
              uri: "file://../referentiels/type2.csv"
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

No branches or pull requests

1 participant