Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Implement inline ternary operator support #719

Closed
ThomasBurleson opened this issue Jan 14, 2012 · 9 comments
Closed

Implement inline ternary operator support #719

ThomasBurleson opened this issue Jan 14, 2012 · 9 comments

Comments

@ThomasBurleson
Copy link

Per discussions on Google Groups, ternary operator support should be allowed inline in attributes (directives, widgets, databinding)... similar to current support for arithmetic and booleon operator features.

@IgorMinar
Copy link
Contributor

#156 is related to this

@kstep
Copy link
Contributor

kstep commented Jan 19, 2012

Yes, this would be really great! Meanwhile I use the following workaround: condition && yes_expr || no_expr which is almost identical to condition ? yes_expr : no_expr. Almost means one must be very aware the expression can fail to work correctly if yes_expr happens to evaluate to boolean false.

zachsnow added a commit to zachsnow/angular.js that referenced this issue Apr 23, 2013
Add '?' token to lexer, add ternary rule to parser at
(hopefully) proper precedence and associativity (based
on https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Operator_Precedence).
Since (exp1 && exp2 || exp3) is supported by the parser,
and (exp1 ? exp2 : exp3) works the same way, it seems
reasonable to add this minor form of control to templates
(see angular#719).
@zachsnow
Copy link
Contributor

(Wow, just realized that this thread is really old! Hope this is still warranted.)

@cburgdorf
Copy link
Contributor

That's something I have been missing for so long. I hope it will be merged.

@frosas
Copy link
Contributor

frosas commented Apr 24, 2013

To make @kstep workaround work always one can use this syntax:

condition && (yes_expr || true) || no_expr

UPDATE: Sorry, this is not as universal as I thought, it doesn't work as expected if you care about the result of yes_expr.

@nertzy
Copy link

nertzy commented May 15, 2013

Seems like it would encourage having more logic in the view. I don't like it. It's easy enough to build a function that returns the value you want and refer to that instead.

petebacondarwin pushed a commit that referenced this issue May 16, 2013
Add '?' token to lexer, add ternary rule to parser at
(hopefully) proper precedence and associativity (based
on https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Operator_Precedence).
Since (exp1 && exp2 || exp3) is supported by the parser,
and (exp1 ? exp2 : exp3) works the same way, it seems
reasonable to add this minor form of control to templates
(see #719).
@gabzim
Copy link

gabzim commented May 19, 2013

@nertzy Templates sometimes require very basic logic. Something like "if username is set, then print it, else print 'no username given' "... That belongs in the template, not the controller, if the view changes we shouldn't have to be fixing things like that in our controllers, it increases coupling between templates and controllers unnecesarily.

Giving a bit of freedom to use a tiny bit of logic such as offered by ternary operators doesn't encourage "having more logic in the template", but rather the current implementation forces the developer to put logic in the controller that belongs in the view. Could anyone use this new feature and create a mess? Sure, but that's true of many oher angular features that are already present. An inexperienced programmer can make a mess with or without this feature.

@kstep
Copy link
Contributor

kstep commented May 19, 2013

I second your opinion. I couldn't say better.

@petebacondarwin
Copy link
Contributor

The ternary operator is now in master: #2482.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

9 participants