-
Notifications
You must be signed in to change notification settings - Fork 27.4k
ngShowIf (Feature Request) #8433
Comments
I think you could achieve something like this already. For example;
|
In the 1.3 branch, it can be done using one-time binding <!-- untested code -->
<div ng-if=":: foo ? true : undefined" ng-show="foo">...</div> |
Thank you both! Indeed, both suggestions will work. A few things to consider though:
I honestly don't know how popular a directive such as |
@Izhaki I do not want to disappoint you, but as posted the directive would not work as expected. The first implementation is not aware of Directives that do DOM manipulation are hard, this is why reusing the existing building blocks works best |
@lgalfaso I wasn't suggesting the code is ready to be integrated into the Angular framework. Obviously much more work will have to be done to account for the various possible scenarios - some of which you have mentioned. It was just for the sake of an example (and there might be others like me who only need this to work in the context of a particular case of showing a dropdown). |
it would be pretty cool if we had a way for directives to optionally create a new child scope (from the POV of debugging applications using ng-inspector or batarang, and for perf in 1.x), but it would be pretty uncool from the POV of users writing code without wanting to think about what a scope is or how scopes work in angular. but as cool (and uncool) as it would be, I don't think it's likely to happen, other solutions to these problems have been proposed and prototyped for 2.0 instead |
If I'm honest, I can't see anyone using Angular without thinking about what a scope is or how scopes work. If I had to give an introduction class to Angular to a group of developers, scopes would be there as one of the first 3 topics. Other than that, all you say is well understood. |
You'd have a hard time getting anything done with Angular 1.x without understanding Scopes (but many people don't actually thoroughly understand scopes or even prototypical inheritance and still manage to build angular apps), but this is really one of the problems with 1.x, it's not really a "feature" |
I think the discussion has shown that there's not much chance this will be included into 1.x. Regarding the initial performance of many ngIf's, #12078 seems to address this in a more general way. |
Abstract
If is often desirable to insert a directive's content upon first usage, and show/hide thereafter.
That is, have an
ngIf
behaviour once, andngShow
behaviour thereafter.Current state of affairs
The two directives in question are:
ngIf
- the directive inserts/removes the contents from the DOM. The directive also creates a new child scope upon each insertion (unfavourable behaviour at times, as it forces outside/inside communication to be based on objects, rather than primitives).ngShow
- the directive simply shows or hides the contents. It does not affect the scope.The request
It would be useful to have a directive that inserts the contents first time its value turns true, and following that simply hides and show it.
Example
Consider a typeahead directive on an input field:
The directive reveals a dropdown with options and search matches, like so:
The initiation of the dropdown may be time-consuming and its existence on the DOM performance-consuming. The dropdown may:
On a single form, there may be 10 fields with such typeahead directives. And the user may or may not open the dropdowns. When the form represents a new entry, the dropdowns are likely to be opened; but when editing/reviewing an entry, very few (if any) dropdowns will be open.
And so if one chooses:
ngIf
- quite a bit of work will have to be done every time a dropdown opens (think AJAX requests); and due to the child scope, one has to take some extra step to ensure state preservation (eg, the query that was entered).ngShow
- we do a lot of work (10 typeaheds X 10 AJAX calls and many listeners and watches), which may not be needed at all.A directive that inserts on the first show but show/hide thereafter would solve this.
Code
ngIfShow
Here's a code for and
ngIfShow
directive, essentially a slimed-down marrige betweenngIf
andngShow
. As it usestransclude
the inside scope is a sibling scope (which quite a few people aren't happy with).ngShowIf
The following directive does the same thing, but behaves more like
ngShow
in that it does not affect the scope:The text was updated successfully, but these errors were encountered: