2015-03-23 14:10:55 -07:00
|
|
|
import {isPresent} from 'angular2/src/facade/lang';
|
|
|
|
import {Promise} from 'angular2/src/facade/async';
|
|
|
|
import {List, Map} from 'angular2/src/facade/collection';
|
|
|
|
import {ASTWithSource} from 'angular2/change_detection';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General notes:
|
2015-04-15 21:51:30 -07:00
|
|
|
*
|
|
|
|
* The methods for creating / destroying views in this API are used in the AppViewHydrator
|
|
|
|
* and RenderViewHydrator as well.
|
|
|
|
*
|
2015-03-23 14:10:55 -07:00
|
|
|
* We are already parsing expressions on the render side:
|
|
|
|
* - this makes the ElementBinders more compact
|
|
|
|
* (e.g. no need to distinguish interpolations from regular expressions from literals)
|
|
|
|
* - allows to retrieve which properties should be accessed from the event
|
|
|
|
* by looking at the expression
|
|
|
|
* - we need the parse at least for the `template` attribute to match
|
|
|
|
* directives in it
|
|
|
|
* - render compiler is not on the critical path as
|
|
|
|
* its output will be stored in precompiled templates.
|
|
|
|
*/
|
2015-04-02 15:56:58 +02:00
|
|
|
export class EventBinding {
|
|
|
|
fullName: string; // name/target:name, e.g "click", "window:resize"
|
2015-04-15 21:51:30 -07:00
|
|
|
source: ASTWithSource;
|
2015-04-02 15:56:58 +02:00
|
|
|
|
|
|
|
constructor(fullName :string, source: ASTWithSource) {
|
|
|
|
this.fullName = fullName;
|
|
|
|
this.source = source;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-23 14:10:55 -07:00
|
|
|
export class ElementBinder {
|
|
|
|
index:number;
|
|
|
|
parentIndex:number;
|
|
|
|
distanceToParent:number;
|
|
|
|
directives:List<DirectiveBinder>;
|
2015-04-09 21:20:11 +02:00
|
|
|
nestedProtoView:ProtoViewDto;
|
2015-03-23 14:10:55 -07:00
|
|
|
propertyBindings: Map<string, ASTWithSource>;
|
|
|
|
variableBindings: Map<string, ASTWithSource>;
|
|
|
|
// Note: this contains a preprocessed AST
|
|
|
|
// that replaced the values that should be extracted from the element
|
|
|
|
// with a local name
|
2015-04-02 15:56:58 +02:00
|
|
|
eventBindings: List<EventBinding>;
|
2015-03-23 14:10:55 -07:00
|
|
|
textBindings: List<ASTWithSource>;
|
2015-04-02 14:40:49 -07:00
|
|
|
readAttributes: Map<string, string>;
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
constructor({
|
2015-04-02 14:40:49 -07:00
|
|
|
index, parentIndex, distanceToParent,
|
|
|
|
directives, nestedProtoView,
|
2015-03-23 14:10:55 -07:00
|
|
|
propertyBindings, variableBindings,
|
2015-04-02 14:40:49 -07:00
|
|
|
eventBindings, textBindings,
|
|
|
|
readAttributes
|
2015-03-23 14:10:55 -07:00
|
|
|
}) {
|
|
|
|
this.index = index;
|
|
|
|
this.parentIndex = parentIndex;
|
|
|
|
this.distanceToParent = distanceToParent;
|
|
|
|
this.directives = directives;
|
|
|
|
this.nestedProtoView = nestedProtoView;
|
|
|
|
this.propertyBindings = propertyBindings;
|
|
|
|
this.variableBindings = variableBindings;
|
|
|
|
this.eventBindings = eventBindings;
|
|
|
|
this.textBindings = textBindings;
|
2015-04-02 14:40:49 -07:00
|
|
|
this.readAttributes = readAttributes;
|
2015-03-23 14:10:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class DirectiveBinder {
|
2015-04-09 21:20:11 +02:00
|
|
|
// Index into the array of directives in the View instance
|
2015-03-23 14:10:55 -07:00
|
|
|
directiveIndex:any;
|
|
|
|
propertyBindings: Map<string, ASTWithSource>;
|
|
|
|
// Note: this contains a preprocessed AST
|
|
|
|
// that replaced the values that should be extracted from the element
|
|
|
|
// with a local name
|
2015-04-02 15:56:58 +02:00
|
|
|
eventBindings: List<EventBinding>;
|
2015-04-21 11:47:53 -07:00
|
|
|
hostPropertyBindings: Map<string, ASTWithSource>;
|
2015-03-23 14:10:55 -07:00
|
|
|
constructor({
|
2015-04-21 11:47:53 -07:00
|
|
|
directiveIndex, propertyBindings, eventBindings, hostPropertyBindings
|
2015-03-23 14:10:55 -07:00
|
|
|
}) {
|
|
|
|
this.directiveIndex = directiveIndex;
|
|
|
|
this.propertyBindings = propertyBindings;
|
|
|
|
this.eventBindings = eventBindings;
|
2015-04-21 11:47:53 -07:00
|
|
|
this.hostPropertyBindings = hostPropertyBindings;
|
2015-03-23 14:10:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-09 21:20:11 +02:00
|
|
|
export class ProtoViewDto {
|
2015-04-15 21:51:30 -07:00
|
|
|
// A view that contains the host element with bound
|
|
|
|
// component directive.
|
|
|
|
// Contains a view of type #COMPONENT_VIEW_TYPE.
|
|
|
|
static get HOST_VIEW_TYPE() { return 0; }
|
|
|
|
// The view of the component
|
|
|
|
// Can contain 0 to n views of type #EMBEDDED_VIEW_TYPE
|
|
|
|
static get COMPONENT_VIEW_TYPE() { return 1; }
|
|
|
|
// A view that is included via a Viewport directive
|
|
|
|
// inside of a component view
|
|
|
|
static get EMBEDDED_VIEW_TYPE() { return 1; }
|
|
|
|
|
2015-04-28 11:20:01 -07:00
|
|
|
render: RenderProtoViewRef;
|
2015-03-23 14:10:55 -07:00
|
|
|
elementBinders:List<ElementBinder>;
|
|
|
|
variableBindings: Map<string, string>;
|
2015-04-15 21:51:30 -07:00
|
|
|
type: number;
|
2015-03-23 14:10:55 -07:00
|
|
|
|
2015-04-15 21:51:30 -07:00
|
|
|
constructor({render, elementBinders, variableBindings, type}={}) {
|
2015-03-23 14:10:55 -07:00
|
|
|
this.render = render;
|
|
|
|
this.elementBinders = elementBinders;
|
|
|
|
this.variableBindings = variableBindings;
|
2015-04-15 21:51:30 -07:00
|
|
|
this.type = type;
|
2015-03-23 14:10:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class DirectiveMetadata {
|
|
|
|
static get DECORATOR_TYPE() { return 0; }
|
|
|
|
static get COMPONENT_TYPE() { return 1; }
|
|
|
|
static get VIEWPORT_TYPE() { return 2; }
|
|
|
|
id:any;
|
|
|
|
selector:string;
|
|
|
|
compileChildren:boolean;
|
2015-04-09 21:20:11 +02:00
|
|
|
hostListeners:Map<string, string>;
|
2015-04-21 11:47:53 -07:00
|
|
|
hostProperties:Map<string, string>;
|
2015-04-09 21:20:11 +02:00
|
|
|
properties:Map<string, string>;
|
2015-04-02 14:40:49 -07:00
|
|
|
readAttributes:List<string>;
|
2015-03-23 14:10:55 -07:00
|
|
|
type:number;
|
2015-04-21 11:47:53 -07:00
|
|
|
constructor({id, selector, compileChildren, hostListeners, hostProperties, properties, readAttributes, type}) {
|
2015-03-23 14:10:55 -07:00
|
|
|
this.id = id;
|
|
|
|
this.selector = selector;
|
|
|
|
this.compileChildren = isPresent(compileChildren) ? compileChildren : true;
|
2015-04-09 21:20:11 +02:00
|
|
|
this.hostListeners = hostListeners;
|
2015-04-21 11:47:53 -07:00
|
|
|
this.hostProperties = hostProperties;
|
2015-04-09 21:20:11 +02:00
|
|
|
this.properties = properties;
|
2015-04-02 14:40:49 -07:00
|
|
|
this.readAttributes = readAttributes;
|
2015-03-23 14:10:55 -07:00
|
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-09 21:20:11 +02:00
|
|
|
// An opaque reference to a RenderProtoView
|
2015-04-28 11:20:01 -07:00
|
|
|
export class RenderProtoViewRef {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
2015-04-09 21:20:11 +02:00
|
|
|
// An opaque reference to a RenderView
|
2015-04-28 11:20:01 -07:00
|
|
|
export class RenderViewRef {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
2015-04-27 09:26:55 -07:00
|
|
|
export class RenderViewContainerRef {
|
2015-04-28 11:20:01 -07:00
|
|
|
view:RenderViewRef;
|
2015-03-23 14:10:55 -07:00
|
|
|
elementIndex:number;
|
2015-04-28 11:20:01 -07:00
|
|
|
constructor(view:RenderViewRef, elementIndex: number) {
|
2015-03-23 14:10:55 -07:00
|
|
|
this.view = view;
|
|
|
|
this.elementIndex = elementIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-09 21:20:11 +02:00
|
|
|
export class ViewDefinition {
|
2015-03-23 14:10:55 -07:00
|
|
|
componentId: string;
|
|
|
|
absUrl: string;
|
2015-04-09 21:20:11 +02:00
|
|
|
template: string;
|
2015-03-23 14:10:55 -07:00
|
|
|
directives: List<DirectiveMetadata>;
|
|
|
|
|
2015-04-09 21:20:11 +02:00
|
|
|
constructor({componentId, absUrl, template, directives}) {
|
2015-03-23 14:10:55 -07:00
|
|
|
this.componentId = componentId;
|
|
|
|
this.absUrl = absUrl;
|
2015-04-09 21:20:11 +02:00
|
|
|
this.template = template;
|
2015-03-23 14:10:55 -07:00
|
|
|
this.directives = directives;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Renderer {
|
2015-04-15 21:51:30 -07:00
|
|
|
/**
|
|
|
|
* Creats a ProtoViewDto that contains a single nested component with the given componentId.
|
|
|
|
*/
|
|
|
|
createHostProtoView(componentId):Promise<ProtoViewDto> { return null; }
|
|
|
|
|
2015-04-20 11:34:53 -07:00
|
|
|
/**
|
|
|
|
* Creats a ProtoViewDto for a component that will use an imperative View using the given
|
|
|
|
* renderer.
|
|
|
|
* Note: Rigth now, the renderer argument is ignored, but will be used in the future to define
|
|
|
|
* a custom handler.
|
|
|
|
*/
|
|
|
|
createImperativeComponentProtoView(rendererId):Promise<ProtoViewDto> { return null; }
|
|
|
|
|
2015-03-23 14:10:55 -07:00
|
|
|
/**
|
2015-04-09 21:20:11 +02:00
|
|
|
* Compiles a single RenderProtoView. Non recursive so that
|
2015-03-23 14:10:55 -07:00
|
|
|
* we don't need to serialize all possible components over the wire,
|
|
|
|
* but only the needed ones based on previous calls.
|
|
|
|
*/
|
2015-04-09 21:20:11 +02:00
|
|
|
compile(template:ViewDefinition):Promise<ProtoViewDto> { return null; }
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
2015-04-07 17:24:09 -07:00
|
|
|
* Sets the preset nested components,
|
2015-03-23 14:10:55 -07:00
|
|
|
* which will be instantiated when this protoView is instantiated.
|
2015-04-07 17:24:09 -07:00
|
|
|
* Note: We can't create new ProtoViewRefs here as we need to support cycles / recursive components.
|
2015-04-28 11:20:01 -07:00
|
|
|
* @param {List<RenderProtoViewRef>} protoViewRefs
|
2015-04-09 21:20:11 +02:00
|
|
|
* RenderProtoView for every element with a component in this protoView or in a view container's protoView
|
2015-03-23 14:10:55 -07:00
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
mergeChildComponentProtoViews(protoViewRef:RenderProtoViewRef, componentProtoViewRefs:List<RenderProtoViewRef>) { return null; }
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
2015-04-15 21:51:30 -07:00
|
|
|
* Creates a view and inserts it into a ViewContainer.
|
2015-04-27 09:26:55 -07:00
|
|
|
* @param {RenderViewContainerRef} viewContainerRef
|
2015-04-28 11:20:01 -07:00
|
|
|
* @param {RenderProtoViewRef} protoViewRef A RenderProtoViewRef of type ProtoViewDto.HOST_VIEW_TYPE or ProtoViewDto.EMBEDDED_VIEW_TYPE
|
2015-04-15 21:51:30 -07:00
|
|
|
* @param {number} atIndex
|
2015-04-28 11:20:01 -07:00
|
|
|
* @return {List<RenderViewRef>} the view and all of its nested child component views
|
2015-03-23 14:10:55 -07:00
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
createViewInContainer(vcRef:RenderViewContainerRef, atIndex:number, protoViewRef:RenderProtoViewRef):List<RenderViewRef> { return null; }
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
2015-04-15 21:51:30 -07:00
|
|
|
* Destroys the view in the given ViewContainer
|
2015-03-23 14:10:55 -07:00
|
|
|
*/
|
2015-04-27 09:26:55 -07:00
|
|
|
destroyViewInContainer(vcRef:RenderViewContainerRef, atIndex:number):void {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts a detached view into a viewContainer.
|
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
insertViewIntoContainer(vcRef:RenderViewContainerRef, atIndex:number, view:RenderViewRef):void {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Detaches a view from a container so that it can be inserted later on
|
|
|
|
*/
|
2015-04-27 09:26:55 -07:00
|
|
|
detachViewFromContainer(vcRef:RenderViewContainerRef, atIndex:number):void {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
2015-04-15 21:51:30 -07:00
|
|
|
/**
|
|
|
|
* Creates a view and
|
|
|
|
* installs it as a shadow view for an element.
|
|
|
|
*
|
|
|
|
* Note: only allowed if there is a dynamic component directive at this place.
|
2015-04-28 11:20:01 -07:00
|
|
|
* @param {RenderViewRef} hostView
|
2015-04-15 21:51:30 -07:00
|
|
|
* @param {number} elementIndex
|
2015-04-28 11:20:01 -07:00
|
|
|
* @param {RenderProtoViewRef} componentProtoViewRef A RenderProtoViewRef of type ProtoViewDto.COMPONENT_VIEW_TYPE
|
|
|
|
* @return {List<RenderViewRef>} the view and all of its nested child component views
|
2015-04-15 21:51:30 -07:00
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
createDynamicComponentView(hostViewRef:RenderViewRef, elementIndex:number, componentProtoViewRef:RenderProtoViewRef):List<RenderViewRef> { return null; }
|
2015-04-15 21:51:30 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the component view at the given index
|
|
|
|
*
|
|
|
|
* Note: only allowed if there is a dynamic component directive at this place.
|
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
destroyDynamicComponentView(hostViewRef:RenderViewRef, elementIndex:number):void {}
|
2015-04-15 21:51:30 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a host view that includes the given element.
|
2015-04-28 11:20:01 -07:00
|
|
|
* @param {RenderViewRef} parentViewRef (might be null)
|
2015-04-15 21:51:30 -07:00
|
|
|
* @param {any} hostElementSelector element or css selector for the host element
|
2015-04-28 11:20:01 -07:00
|
|
|
* @param {RenderProtoViewRef} hostProtoView a RenderProtoViewRef of type ProtoViewDto.HOST_VIEW_TYPE
|
|
|
|
* @return {List<RenderViewRef>} the view and all of its nested child component views
|
2015-04-15 21:51:30 -07:00
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
createInPlaceHostView(parentViewRef:RenderViewRef, hostElementSelector, hostProtoViewRef:RenderProtoViewRef):List<RenderViewRef> { return null; }
|
2015-04-15 21:51:30 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the given host view in the given parent view.
|
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
destroyInPlaceHostView(parentViewRef:RenderViewRef, hostViewRef:RenderViewRef):void {}
|
2015-04-15 21:51:30 -07:00
|
|
|
|
2015-03-23 14:10:55 -07:00
|
|
|
/**
|
|
|
|
* Sets a property on an element.
|
2015-04-21 11:47:53 -07:00
|
|
|
* Note: This will fail if the property was not mentioned previously as a host property
|
2015-04-09 21:20:11 +02:00
|
|
|
* in the View.
|
2015-03-23 14:10:55 -07:00
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
setElementProperty(view:RenderViewRef, elementIndex:number, propertyName:string, propertyValue:any):void {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This will set the value for a text node.
|
|
|
|
* Note: This needs to be separate from setElementProperty as we don't have ElementBinders
|
2015-04-09 21:20:11 +02:00
|
|
|
* for text nodes in the RenderProtoView either.
|
2015-03-23 14:10:55 -07:00
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
setText(view:RenderViewRef, textNodeIndex:number, text:string):void {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the dispatcher for all events that have been defined in the template or in directives
|
|
|
|
* in the given view.
|
|
|
|
*/
|
2015-04-28 11:20:01 -07:00
|
|
|
setEventDispatcher(viewRef:RenderViewRef, dispatcher:any/*EventDispatcher*/):void {}
|
2015-03-23 14:10:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To be called at the end of the VmTurn so the API can buffer calls
|
|
|
|
*/
|
|
|
|
flush():void {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A dispatcher for all events happening in a view.
|
|
|
|
*/
|
|
|
|
export class EventDispatcher {
|
|
|
|
/**
|
|
|
|
* Called when an event was triggered for a on-* attribute on an element.
|
2015-04-07 20:54:20 -07:00
|
|
|
* @param {Map<string, any>} locals Locals to be used to evaluate the
|
2015-03-23 14:10:55 -07:00
|
|
|
* event expressions
|
|
|
|
*/
|
|
|
|
dispatchEvent(
|
2015-04-07 20:54:20 -07:00
|
|
|
elementIndex:number, eventName:string, locals:Map<string, any>
|
2015-03-23 14:10:55 -07:00
|
|
|
):void {}
|
|
|
|
}
|