Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Testability API for ProtractorDart #1191

Merged
merged 7 commits into from
Jul 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ packages:
di:
description: di
source: hosted
version: "0.0.40"
version: "1.1.0"
html5lib:
description: html5lib
source: hosted
Expand All @@ -58,15 +58,15 @@ packages:
path:
description: path
source: hosted
version: "1.1.0"
version: "1.2.1"
perf_api:
description: perf_api
source: hosted
version: "0.0.8"
route_hierarchical:
description: route_hierarchical
source: hosted
version: "0.4.20"
version: "0.4.21"
source_maps:
description: source_maps
source: hosted
Expand Down
3 changes: 2 additions & 1 deletion lib/angular.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ export 'package:angular/application.dart';
export 'package:angular/core/module.dart';
export 'package:angular/directive/module.dart';
export 'package:angular/core/annotation.dart';
export 'package:angular/introspection.dart';
export 'package:angular/introspection.dart' hide
elementExpando, publishToJavaScript;
export 'package:angular/formatter/module.dart';
export 'package:angular/routing/module.dart';
export 'package:di/di.dart' hide lastKeyId;
Expand Down
2 changes: 1 addition & 1 deletion lib/application.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ import 'package:angular/core_dom/module_internal.dart';
import 'package:angular/directive/module.dart';
import 'package:angular/formatter/module_internal.dart';
import 'package:angular/routing/module.dart';
import 'package:angular/introspection_js.dart';
import 'package:angular/introspection.dart';

import 'package:angular/core_dom/static_keys.dart';

Expand Down
10 changes: 7 additions & 3 deletions lib/core_dom/element_binder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,8 @@ class ElementBinder {
void _createDirectiveFactories(DirectiveRef ref, nodeModule, node, nodesAttrsDirectives, nodeAttrs,
visibility) {
if (ref.type == TextMustache) {
nodeModule.bind(TextMustache, toFactory: (Injector injector) {
return new TextMustache(node, ref.valueAST, injector.getByKey(SCOPE_KEY));
});
nodeModule.bind(TextMustache, toFactory: (Injector injector) => new TextMustache(
node, ref.valueAST, injector.getByKey(SCOPE_KEY)));
} else if (ref.type == AttrMustache) {
if (nodesAttrsDirectives.isEmpty) {
nodeModule.bind(AttrMustache, toFactory: (Injector injector) {
Expand Down Expand Up @@ -310,6 +309,11 @@ class ElementBinder {
probe = _expando[node] =
new ElementProbe(parentInjector.getByKey(ELEMENT_PROBE_KEY),
node, nodeInjector, scope);
directiveRefs.forEach((DirectiveRef ref) {
if (ref.valueAST != null) {
probe.bindingExpressions.add(ref.valueAST.expression);
}
});
scope.on(ScopeEvent.DESTROY).listen((_) {
_expando[node] = null;
});
Expand Down
6 changes: 3 additions & 3 deletions lib/core_dom/mustache.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ class AttrMustache {

// This Directive is special and does not go through injection.
AttrMustache(this._attrs,
String this._attrName,
AST valueAST,
Scope scope) {
String this._attrName,
AST valueAST,
Scope scope) {
_updateMarkup('', 'INITIAL-VALUE');

_attrs.listenObserverChanges(_attrName, (hasObservers) {
Expand Down
2 changes: 2 additions & 0 deletions lib/core_dom/view_factory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ class ElementProbe {
final Injector injector;
final Scope scope;
final directives = [];
final bindingExpressions = <String>[];
final modelExpressions = <String>[];

ElementProbe(this.parent, this.element, this.injector, this.scope);
}
7 changes: 6 additions & 1 deletion lib/directive/ng_bind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ part of angular.directive;
class NgBind {
final dom.Element element;

NgBind(this.element);
NgBind(this.element, ElementProbe probe) {
// TODO(chirayu): Generalize this.
if (probe != null) {
probe.bindingExpressions.add(element.attributes['ng-bind']);
}
}

set value(value) => element.text = value == null ? '' : value.toString();
}
5 changes: 4 additions & 1 deletion lib/directive/ng_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,13 @@ class NgModel extends NgControl implements AttachAware {
bool _watchCollection;

NgModel(this._scope, NgElement element, Injector injector, NodeAttrs attrs,
Animate animate)
Animate animate, ElementProbe probe)
: super(element, injector, animate)
{
_expression = attrs["ng-model"];
if (probe != null) {
probe.modelExpressions.add(_expression);
}
watchCollection = false;

//Since the user will never be editing the value of a select element then
Expand Down
Loading