-
Notifications
You must be signed in to change notification settings - Fork 275
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
Still problems with ternary operators in arrays. #853
Comments
We are trying to simulate drupal's behaviors in twig.js |
Can you provide an example of it working as expected in Twigfiddle? |
@willrowe Here is a twigfiddle example, very simplified version of the Drupal example from @koskinpark : https://twigfiddle.com/caakml |
I did a little bit of testing with this and it appears to be an issue in the parsing of the array. If I break out each of the items into a separate print statement, it seems to work properly. |
I can confirm @willrowe assessment, this is a very annoying parsing issue. Putting the ternary expression between brackets solve the issue. Not working: Working: This is very annoying when simulating existing Drupal templates. |
While annoying, the brackets solution works and shouldn't be an issue for Drupal. |
@arakwar They don't break anything on the Drupal side, you are right, but it is crummy to have to be aware of this to get your stuff working, twig.js should be as close to php twig as it can to be useful. A lot of folks may not find their way here and will probably ditch tools that are using this rather than come to the conclusion that there is a slight library mismatch, since the twig itself is valid syntax. |
@sarahjean I 100% agree that this needs to be fixed. My point is that the brackets should not interfere with Drupal, so anyone who wants to use this solution don't have to wait for the fix. |
twig.js:^1.15.4
{% set classes = [ 'a-button', modifier ? modifier, ] %}
This returns now
{ classes: [ 0: undefined ] }
Normally, if
modifier
is not exist, we should return only['a-button']
. Or if it's exist -> it should return['a-button', 'some-modifier-value']
, or even['a-button', ['some-modifier-value-1', 'some-modifier-value-2']]
The text was updated successfully, but these errors were encountered: