2015-02-05 13:08:05 -08:00
|
|
|
import {Decorator, Template} from 'angular2/src/core/annotations/annotations';
|
|
|
|
import {ViewPort} from 'angular2/src/core/compiler/viewport';
|
|
|
|
import {NgElement} from 'angular2/src/core/dom/element';
|
|
|
|
import {DOM} from 'angular2/src/facade/dom';
|
|
|
|
import {isPresent, isBlank} from 'angular2/src/facade/lang';
|
|
|
|
import {ListWrapper, List, MapWrapper, Map} from 'angular2/src/facade/collection';
|
|
|
|
import {Parent} from 'angular2/src/core/annotations/visibility';
|
2015-01-09 09:16:12 +01:00
|
|
|
|
|
|
|
/**
|
2015-02-04 22:27:31 +01:00
|
|
|
* The `Switch` directive is used to conditionally swap DOM structure on your template based on a
|
2015-01-09 09:16:12 +01:00
|
|
|
* scope expression.
|
2015-02-04 22:27:31 +01:00
|
|
|
* Elements within `Switch` but without `SwitchWhen` or `SwitchDefault` directives will be
|
2015-01-09 09:16:12 +01:00
|
|
|
* preserved at the location as specified in the template.
|
|
|
|
*
|
2015-02-04 22:27:31 +01:00
|
|
|
* `Switch` simply chooses nested elements and makes them visible based on which element matches
|
2015-01-09 09:16:12 +01:00
|
|
|
* the value obtained from the evaluated expression. In other words, you define a container element
|
2015-02-04 22:27:31 +01:00
|
|
|
* (where you place the directive), place an expression on the **`[switch]="..."` attribute**),
|
|
|
|
* define any inner elements inside of the directive and place a `[switch-when]` attribute per
|
2015-01-09 09:16:12 +01:00
|
|
|
* element.
|
2015-02-04 22:27:31 +01:00
|
|
|
* The when attribute is used to inform Switch which element to display when the expression is
|
2015-01-09 09:16:12 +01:00
|
|
|
* evaluated. If a matching expression is not found via a when attribute then an element with the
|
|
|
|
* default attribute is displayed.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* ```
|
2015-02-04 22:27:31 +01:00
|
|
|
* <ANY [switch]="expression">
|
|
|
|
* <template [switch-when]="whenExpression1">...</template>
|
|
|
|
* <template [switch-when]="whenExpression1">...</template>
|
|
|
|
* <template [switch-default]>...</template>
|
2015-01-09 09:16:12 +01:00
|
|
|
* </ANY>
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
@Decorator({
|
2015-02-04 22:27:31 +01:00
|
|
|
selector: '[switch]',
|
2015-01-09 09:16:12 +01:00
|
|
|
bind: {
|
2015-02-04 22:27:31 +01:00
|
|
|
'switch': 'value'
|
2015-01-09 09:16:12 +01:00
|
|
|
}
|
|
|
|
})
|
2015-02-04 22:27:31 +01:00
|
|
|
export class Switch {
|
2015-01-09 09:16:12 +01:00
|
|
|
_switchValue: any;
|
|
|
|
_useDefault: boolean;
|
|
|
|
_valueViewPorts: Map;
|
|
|
|
_activeViewPorts: List;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this._valueViewPorts = MapWrapper.create();
|
|
|
|
this._activeViewPorts = ListWrapper.create();
|
|
|
|
this._useDefault = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
set value(value) {
|
|
|
|
// Remove the currently active viewports
|
|
|
|
this._removeAllActiveViewPorts();
|
|
|
|
|
|
|
|
// Add the viewports matching the value (with a fallback to default)
|
|
|
|
this._useDefault = false;
|
|
|
|
var viewPorts = MapWrapper.get(this._valueViewPorts, value);
|
|
|
|
if (isBlank(viewPorts)) {
|
|
|
|
this._useDefault = true;
|
|
|
|
viewPorts = MapWrapper.get(this._valueViewPorts, _whenDefault);
|
|
|
|
}
|
|
|
|
this._activateViewPorts(viewPorts);
|
|
|
|
|
|
|
|
this._switchValue = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
_onWhenValueChanged(oldWhen, newWhen, viewPort: ViewPort) {
|
|
|
|
this._deregisterViewPort(oldWhen, viewPort);
|
|
|
|
this._registerViewPort(newWhen, viewPort);
|
|
|
|
|
|
|
|
if (oldWhen === this._switchValue) {
|
|
|
|
viewPort.remove();
|
|
|
|
ListWrapper.remove(this._activeViewPorts, viewPort);
|
|
|
|
} else if (newWhen === this._switchValue) {
|
|
|
|
if (this._useDefault) {
|
|
|
|
this._useDefault = false;
|
|
|
|
this._removeAllActiveViewPorts();
|
|
|
|
}
|
|
|
|
viewPort.create();
|
|
|
|
ListWrapper.push(this._activeViewPorts, viewPort);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch to default when there is no more active viewports
|
|
|
|
if (this._activeViewPorts.length === 0 && !this._useDefault) {
|
|
|
|
this._useDefault = true;
|
|
|
|
this._activateViewPorts(MapWrapper.get(this._valueViewPorts, _whenDefault));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_removeAllActiveViewPorts() {
|
|
|
|
var activeViewPorts = this._activeViewPorts;
|
|
|
|
for (var i = 0; i < activeViewPorts.length; i++) {
|
|
|
|
activeViewPorts[i].remove();
|
|
|
|
}
|
|
|
|
this._activeViewPorts = ListWrapper.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
_activateViewPorts(viewPorts) {
|
|
|
|
// TODO(vicb): assert(this._activeViewPorts.length === 0);
|
|
|
|
if (isPresent(viewPorts)) {
|
|
|
|
for (var i = 0; i < viewPorts.length; i++) {
|
|
|
|
viewPorts[i].create();
|
|
|
|
}
|
|
|
|
this._activeViewPorts = viewPorts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_registerViewPort(value, viewPort: ViewPort) {
|
|
|
|
var viewPorts = MapWrapper.get(this._valueViewPorts, value);
|
|
|
|
if (isBlank(viewPorts)) {
|
|
|
|
viewPorts = ListWrapper.create();
|
|
|
|
MapWrapper.set(this._valueViewPorts, value, viewPorts);
|
|
|
|
}
|
|
|
|
ListWrapper.push(viewPorts, viewPort);
|
|
|
|
}
|
|
|
|
|
|
|
|
_deregisterViewPort(value, viewPort: ViewPort) {
|
|
|
|
// `_whenDefault` is used a marker for non-registered whens
|
|
|
|
if (value == _whenDefault) return;
|
|
|
|
var viewPorts = MapWrapper.get(this._valueViewPorts, value);
|
|
|
|
if (viewPorts.length == 1) {
|
|
|
|
MapWrapper.delete(this._valueViewPorts, value);
|
|
|
|
} else {
|
|
|
|
ListWrapper.remove(viewPorts, viewPort);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines a case statement as an expression.
|
|
|
|
*
|
2015-02-04 22:27:31 +01:00
|
|
|
* If multiple `SwitchWhen` match the `Switch` value, all of them are displayed.
|
2015-01-09 09:16:12 +01:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* // match against a context variable
|
2015-02-04 22:27:31 +01:00
|
|
|
* <template [switch-when]="contextVariable">...</template>
|
2015-01-09 09:16:12 +01:00
|
|
|
*
|
|
|
|
* // match against a constant string
|
2015-02-04 22:27:31 +01:00
|
|
|
* <template [switch-when]="'stringValue'">...</template>
|
2015-01-09 09:16:12 +01:00
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
@Template({
|
2015-02-04 22:27:31 +01:00
|
|
|
selector: '[switch-when]',
|
2015-01-09 09:16:12 +01:00
|
|
|
bind: {
|
2015-02-04 22:27:31 +01:00
|
|
|
'switch-when' : 'when'
|
2015-01-09 09:16:12 +01:00
|
|
|
}
|
|
|
|
})
|
2015-02-04 22:27:31 +01:00
|
|
|
export class SwitchWhen {
|
2015-01-09 09:16:12 +01:00
|
|
|
_value: any;
|
2015-02-04 22:27:31 +01:00
|
|
|
_switch: Switch;
|
2015-01-09 09:16:12 +01:00
|
|
|
_viewPort: ViewPort;
|
|
|
|
|
2015-02-04 22:27:31 +01:00
|
|
|
constructor(el: NgElement, viewPort: ViewPort, @Parent() sswitch: Switch) {
|
2015-01-09 09:16:12 +01:00
|
|
|
// `_whenDefault` is used as a marker for a not yet initialized value
|
|
|
|
this._value = _whenDefault;
|
2015-02-04 22:27:31 +01:00
|
|
|
this._switch = sswitch;
|
2015-01-09 09:16:12 +01:00
|
|
|
this._viewPort = viewPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
set when(value) {
|
2015-02-04 22:27:31 +01:00
|
|
|
this._switch._onWhenValueChanged(this._value, value, this._viewPort);
|
2015-01-09 09:16:12 +01:00
|
|
|
this._value = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines a default case statement.
|
|
|
|
*
|
2015-02-04 22:27:31 +01:00
|
|
|
* Default case statements are displayed when no `SwitchWhen` match the `switch` value.
|
2015-01-09 09:16:12 +01:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* ```
|
2015-02-04 22:27:31 +01:00
|
|
|
* <template [switch-default]>...</template>
|
2015-01-09 09:16:12 +01:00
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
@Template({
|
2015-02-04 22:27:31 +01:00
|
|
|
selector: '[switch-default]'
|
2015-01-09 09:16:12 +01:00
|
|
|
})
|
2015-02-04 22:27:31 +01:00
|
|
|
export class SwitchDefault {
|
|
|
|
constructor(viewPort: ViewPort, @Parent() sswitch: Switch) {
|
|
|
|
sswitch._registerViewPort(_whenDefault, viewPort);
|
2015-01-09 09:16:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var _whenDefault = new Object();
|