Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: pkg/polymer_expressions/lib/polymer_expressions.dart

Issue 141703024: Refactor of PolymerExpressions. Adds "as" expressions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: syntax, bindings, and globals tests now passing in Safari Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer_expressions/lib/parser.dart ('k') | pkg/polymer_expressions/lib/tokenizer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer_expressions/lib/polymer_expressions.dart
diff --git a/pkg/polymer_expressions/lib/polymer_expressions.dart b/pkg/polymer_expressions/lib/polymer_expressions.dart
index 81736c8ed4276760a21f77a3cd26365e0ebbc9f6..32ddd0ea67e156517754e12e76261c427b5b0114 100644
--- a/pkg/polymer_expressions/lib/polymer_expressions.dart
+++ b/pkg/polymer_expressions/lib/polymer_expressions.dart
@@ -38,7 +38,6 @@ import 'expression.dart';
import 'parser.dart';
import 'src/globals.dart';
-// TODO(justin): Investigate XSS protection
Object _classAttributeConverter(v) =>
(v is Map) ? v.keys.where((k) => v[k] == true).join(' ') :
(v is Iterable) ? v.join(' ') :
@@ -53,59 +52,218 @@ class PolymerExpressions extends BindingDelegate {
/** The default [globals] to use for Polymer expressions. */
static const Map DEFAULT_GLOBALS = const { 'enumerate': enumerate };
+ final ScopeFactory _scopeFactory;
final Map<String, Object> globals;
+ // allows access to scopes created for template instances
+ final Expando<Scope> _scopes = new Expando<Scope>();
+ // allows access to scope identifiers (for "in" and "as")
+ final Expando<String> _scopeIdents = new Expando<String>();
+
/**
* Creates a new binding delegate for Polymer expressions, with the provided
* variables used as [globals]. If no globals are supplied, a copy of the
* [DEFAULT_GLOBALS] will be used.
*/
- PolymerExpressions({Map<String, Object> globals})
+ PolymerExpressions({Map<String, Object> globals,
+ ScopeFactory scopeFactory: const ScopeFactory()})
: globals = globals == null ?
- new Map<String, Object>.from(DEFAULT_GLOBALS) : globals;
+ new Map<String, Object>.from(DEFAULT_GLOBALS) : globals,
+ _scopeFactory = scopeFactory;
- prepareBinding(String path, name, node) {
+ @override
+ PrepareBindingFunction prepareBinding(String path, name, Node boundNode) {
if (path == null) return null;
var expr = new Parser(path).parse();
- // For template bind/repeat to an empty path, just pass through the model.
- // We don't want to unwrap the Scope.
- // TODO(jmesserly): a custom element extending <template> could notice this
- // behavior. An alternative is to associate the Scope with the node via an
- // Expando, which is what the JavaScript PolymerExpressions does.
- if (isSemanticTemplate(node) && (name == 'bind' || name == 'repeat') &&
- expr is EmptyExpression) {
- return null;
+ if (isSemanticTemplate(boundNode) && (name == 'bind' || name == 'repeat')) {
+ if (expr is HasIdentifier) {
+ var identifier = expr.identifier;
+ var bindExpr = expr.expr;
+ return (model, Node node, bool oneTime) {
+ _scopeIdents[node] = identifier;
+ // model may not be a Scope if it was assigned directly via
+ // template.model = x; In that case, prepareInstanceModel will
+ // be called _after_ prepareBinding and will lookup this scope from
+ // _scopes
+ var scope = _scopes[node] = (model is Scope)
+ ? model
+ : _scopeFactory.modelScope(model: model, variables: globals);
+ return new _Binding(bindExpr, scope);
+ };
+ } else {
+ return (model, Node node, bool oneTime) {
+ var scope = _scopes[node] = (model is Scope)
+ ? model
+ : _scopeFactory.modelScope(model: model, variables: globals);
+ if (oneTime) {
+ return _Binding._oneTime(expr, scope, null);
+ }
+ return new _Binding(expr, scope);
+ };
+ }
}
- return (model, node, oneTime) {
- if (model is! Scope) {
- model = new Scope(model: model, variables: globals);
+ // For regular bindings, not bindings on a template, the model is always
+ // a Scope created by prepareInstanceModel
+ _Converter converter = null;
+ if (boundNode is Element && name == 'class') {
+ converter = _classAttributeConverter;
+ } else if (boundNode is Element && name == 'style') {
+ converter = _styleAttributeConverter;
+ }
+
+ return (model, Node node, bool oneTime) {
+ var scope = _getScopeForModel(node, model);
+ if (oneTime) {
+ return _Binding._oneTime(expr, scope, converter);
}
- var converter = null;
- if (node is Element && name == "class") {
- converter = _classAttributeConverter;
+ return new _Binding(expr, scope, converter);
+ };
+ }
+
+ prepareInstanceModel(Element template) {
+ var ident = _scopeIdents[template];
+
+ if (ident == null) {
+ return (model) {
+ var existingScope = _scopes[template];
+ // TODO (justinfagnani): make template binding always call
+ // prepareInstanceModel first and get rid of this check
+ if (existingScope != null) {
+ // If there's an existing scope, we created it in prepareBinding
+ // If it has the same model, then we can reuse it, otherwise it's
+ // a repeat with no identifier and we create new scope to occlude
+ // the outer one
+ if (model == existingScope.model) return existingScope;
+ return _scopeFactory.modelScope(model: model, variables: globals);
+ } else {
+ return _getScopeForModel(template, model);
+ }
+ };
+ }
+
+ // We have an ident, so it's a bind/as or repeat/in expression
+ assert(templateBind(template).templateInstance == null);
+ return (model) {
+ var existingScope = _scopes[template];
+ if (existingScope != null) {
+ // This only happens when a model has been assigned programatically
+ // and prepareBinding is called _before_ prepareInstanceModel.
+ // The scope assigned in prepareBinding wraps the model and is the
+ // scope of the expression. That should be the parent of the templates
+ // scope in the case of bind/as or repeat/in bindings.
+ return _scopeFactory.childScope(existingScope, ident, model);
+ } else {
+ // If there's not an existing scope then we have a bind/as or
+ // repeat/in binding enclosed in an outer scope, so we use that as
+ // the parent
+ var parentScope = _getParentScope(template);
+ return _scopeFactory.childScope(parentScope, ident, model);
}
- if (node is Element && name == "style") {
- converter = _styleAttributeConverter;
+ };
+ }
+
+ /**
+ * Gets an existing scope for use as a parent, but does not create a new one.
+ */
+ Scope _getParentScope(Node node) {
+ var parent = node.parentNode;
+ if (parent == null) return null;
+
+ if (isSemanticTemplate(node)) {
+ var templateExtension = templateBind(node);
+ var templateInstance = templateExtension.templateInstance;
+ var model = templateInstance == null
+ ? templateExtension.model
+ : templateInstance.model;
+ if (model is Scope) {
+ return model;
+ } else {
+ // A template with a bind binding might have a non-Scope model
+ return _scopes[node];
}
+ }
+ if (parent != null) return _getParentScope(parent);
+ return null;
+ }
- if (oneTime) {
- return _Binding._oneTime(expr, model, converter);
+ /**
+ * Returns the Scope to be used to evaluate expressions in the template
+ * containing [node]. Since all expressions in the same template evaluate
+ * against the same model, [model] is passed in and checked against the
+ * template model to make sure they agree.
+ *
+ * For nested templates, we might have a binding on the nested template that
+ * should be evaluated in the context of the parent template. All scopes are
+ * retreived from an ancestor of [node], since node may be establishing a new
+ * Scope.
+ */
+ Scope _getScopeForModel(Node node, model) {
+ // This only happens in bindings_test because it calls prepareBinding()
+ // directly. Fix the test and throw if node is null?
+ if (node == null) {
+ return _scopeFactory.modelScope(model: model, variables: globals);
+ }
+
+ var id = node is Element ? node.id : '';
+ if (model is Scope) {
+ return model;
+ }
+ if (_scopes[node] != null) {
+ var scope = _scopes[node];
+ assert(scope.model == model);
+ return _scopes[node];
+ } else if (node.parentNode != null) {
+ return _getContainingScope(node.parentNode, model);
+ } else {
+ // here we should be at a top-level template, so there's no parent to
+ // look for a Scope on.
+ if (!isSemanticTemplate(node)) {
+ throw "expected a template instead of $node";
}
+ return _getContainingScope(node, model);
+ }
+ }
- return new _Binding(expr, model, converter);
- };
+ Scope _getContainingScope(Node node, model) {
+ if (isSemanticTemplate(node)) {
+ var templateExtension = templateBind(node);
+ var templateInstance = templateExtension.templateInstance;
+ var templateModel = templateInstance == null
+ ? templateExtension.model
+ : templateInstance.model;
+ assert(templateModel == model);
+ var scope = _scopes[node];
+ assert(scope != null);
+ assert(scope.model == model);
+ return scope;
+ } else if (node.parent == null) {
+ var scope = _scopes[node];
+ if (scope != null) {
+ assert(scope.model == model);
+ } else {
+ // only happens in bindings_test
+ scope = _scopeFactory.modelScope(model: model, variables: globals);
+ }
+ return scope;
+ } else {
+ return _getContainingScope(node.parentNode, model);
+ }
}
- prepareInstanceModel(Element template) => (model) =>
- model is Scope ? model : new Scope(model: model, variables: globals);
}
+typedef Object _Converter(Object);
+
class _Binding extends Bindable {
+ static int __seq = 1;
+
+ final int _seq = __seq++;
+
final Scope _scope;
- final _converter;
- Expression _expr;
+ final _Converter _converter;
+ final Expression _expr;
Function _callback;
StreamSubscription _sub;
var _value;
@@ -113,10 +271,10 @@ class _Binding extends Bindable {
_Binding(this._expr, this._scope, [converter])
: _converter = converter == null ? _identity : converter;
- static _oneTime(Expression expr, Scope scope, [converter]) {
+ static Object _oneTime(Expression expr, Scope scope, _Converter converter) {
try {
- var v = eval(expr, scope);
- return converter == null ? v : converter(v);
+ var value = eval(expr, scope);
+ return (converter == null) ? value : converter(value);
} catch (e, s) {
new Completer().completeError(
"Error evaluating expression '$expr': $e", s);
@@ -133,6 +291,8 @@ class _Binding extends Bindable {
}
get value {
+ // if there's a callback, then _value has been set, if not we need to
+ // force an evaluation
if (_callback != null) return _value;
return _oneTime(_expr, _scope, _converter);
}
@@ -147,17 +307,18 @@ class _Binding extends Bindable {
}
}
- open(callback(value)) {
+ Object open(callback(value)) {
if (_callback != null) throw new StateError('already open');
_callback = callback;
final expr = observe(_expr, _scope);
- _expr = expr;
+// _expr = expr;
_sub = expr.onUpdate.listen(_check)..onError((e, s) {
new Completer().completeError(
"Error evaluating expression '$expr': $e", s);
});
try {
+ // this causes a call to _updateValue with the new value
update(expr, _scope);
_check(expr.currentValue, skipChanges: true);
} catch (e, s) {
@@ -172,9 +333,20 @@ class _Binding extends Bindable {
_sub.cancel();
_sub = null;
- _expr = (_expr as ExpressionObserver).expression;
_callback = null;
}
}
_identity(x) => x;
+
+/**
+ * Factory function used for testing.
+ */
+class ScopeFactory {
+ const ScopeFactory();
+ modelScope({Object model, Map<String, Object> variables}) =>
+ new Scope(model: model, variables: variables);
+
+ childScope(Scope parent, String name, Object value) =>
+ parent.childScope(name, value);
+}
« no previous file with comments | « pkg/polymer_expressions/lib/parser.dart ('k') | pkg/polymer_expressions/lib/tokenizer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698