2015-08-14 13:03:45 -04:00
|
|
|
library angular2.src.core.metadata;
|
|
|
|
|
2015-09-14 18:59:09 -04:00
|
|
|
import 'package:angular2/src/core/facade/collection.dart' show List;
|
2015-08-26 14:44:59 -04:00
|
|
|
import 'package:angular2/src/core/change_detection/change_detection.dart';
|
2015-09-14 18:59:09 -04:00
|
|
|
import './metadata/di.dart';
|
|
|
|
import './metadata/directives.dart';
|
|
|
|
import './metadata/view.dart';
|
2015-08-14 13:03:45 -04:00
|
|
|
|
2015-09-14 18:59:09 -04:00
|
|
|
export './metadata/di.dart';
|
|
|
|
export './metadata/directives.dart';
|
|
|
|
export './metadata/view.dart';
|
2015-08-14 13:03:45 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [DirectiveMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Directive extends DirectiveMetadata {
|
|
|
|
const Directive({String selector, List<String> properties,
|
|
|
|
List<String> events, Map<String, String> host,
|
2015-09-14 18:59:09 -04:00
|
|
|
List bindings, String exportAs, String moduleId,
|
2015-09-17 21:45:14 -04:00
|
|
|
Map<String, dynamic> queries,
|
2015-08-14 13:03:45 -04:00
|
|
|
bool compileChildren: true})
|
|
|
|
: super(
|
|
|
|
selector: selector,
|
|
|
|
properties: properties,
|
|
|
|
events: events,
|
|
|
|
host: host,
|
|
|
|
bindings: bindings,
|
|
|
|
exportAs: exportAs,
|
2015-09-14 18:59:09 -04:00
|
|
|
moduleId: moduleId,
|
2015-09-17 21:45:14 -04:00
|
|
|
queries: queries,
|
2015-08-14 13:03:45 -04:00
|
|
|
compileChildren: compileChildren);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [ComponentMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Component extends ComponentMetadata {
|
|
|
|
const Component({String selector, List<String> properties,
|
2015-09-14 18:59:09 -04:00
|
|
|
List<String> events, Map<String, String> host, bool dynamicLoadable,
|
|
|
|
List bindings, String exportAs, String moduleId,
|
2015-09-17 21:45:14 -04:00
|
|
|
Map<String, dynamic> queries,
|
2015-08-26 14:44:59 -04:00
|
|
|
bool compileChildren, List viewBindings, ChangeDetectionStrategy changeDetection})
|
2015-08-14 13:03:45 -04:00
|
|
|
: super(
|
|
|
|
selector: selector,
|
|
|
|
properties: properties,
|
|
|
|
events: events,
|
|
|
|
host: host,
|
2015-09-14 18:59:09 -04:00
|
|
|
dynamicLoadable: dynamicLoadable,
|
2015-08-14 13:03:45 -04:00
|
|
|
bindings: bindings,
|
|
|
|
exportAs: exportAs,
|
2015-09-14 18:59:09 -04:00
|
|
|
moduleId: moduleId,
|
2015-08-14 13:03:45 -04:00
|
|
|
compileChildren: compileChildren,
|
|
|
|
viewBindings: viewBindings,
|
2015-09-17 21:45:14 -04:00
|
|
|
queries: queries,
|
2015-08-14 13:03:45 -04:00
|
|
|
changeDetection: changeDetection);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [ViewMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class View extends ViewMetadata {
|
|
|
|
const View({String templateUrl, String template, dynamic directives,
|
|
|
|
dynamic pipes, ViewEncapsulation encapsulation, List<String> styles,
|
|
|
|
List<String> styleUrls})
|
|
|
|
: super(
|
|
|
|
templateUrl: templateUrl,
|
|
|
|
template: template,
|
|
|
|
directives: directives,
|
|
|
|
pipes: pipes,
|
|
|
|
encapsulation: encapsulation,
|
|
|
|
styles: styles,
|
|
|
|
styleUrls: styleUrls);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [PipeMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Pipe extends PipeMetadata {
|
2015-09-08 12:17:58 -04:00
|
|
|
const Pipe({name, pure}) : super(name: name, pure: pure);
|
2015-08-14 13:03:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [AttributeMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Attribute extends AttributeMetadata {
|
|
|
|
const Attribute(String attributeName) : super(attributeName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [QueryMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Query extends QueryMetadata {
|
|
|
|
const Query(dynamic /*Type | string*/ selector, {bool descendants: false})
|
|
|
|
: super(selector, descendants: descendants);
|
|
|
|
}
|
|
|
|
|
2015-09-17 21:45:14 -04:00
|
|
|
/**
|
|
|
|
* See: [ContentChildrenMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class ContentChildren extends ContentChildrenMetadata {
|
|
|
|
const ContentChildren(dynamic /*Type | string*/ selector, {bool descendants: false})
|
|
|
|
: super(selector, descendants: descendants);
|
|
|
|
}
|
|
|
|
|
2015-08-14 13:03:45 -04:00
|
|
|
/**
|
|
|
|
* See: [ViewQueryMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class ViewQuery extends ViewQueryMetadata {
|
2015-08-19 00:51:28 -04:00
|
|
|
const ViewQuery(dynamic /*Type | string*/ selector)
|
|
|
|
: super(selector, descendants: true);
|
2015-08-14 13:03:45 -04:00
|
|
|
}
|
2015-09-03 18:10:48 -04:00
|
|
|
|
2015-09-17 21:45:14 -04:00
|
|
|
/**
|
|
|
|
* See: [ViewChildrenMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class ViewChildren extends ViewChildrenMetadata {
|
|
|
|
const ViewChildren(dynamic /*Type | string*/ selector)
|
|
|
|
: super(selector);
|
|
|
|
}
|
|
|
|
|
2015-09-03 18:10:48 -04:00
|
|
|
/**
|
|
|
|
* See: [PropertyMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Property extends PropertyMetadata {
|
|
|
|
const Property([String bindingPropertyName])
|
|
|
|
: super(bindingPropertyName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [EventMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class Event extends EventMetadata {
|
|
|
|
const Event([String bindingPropertyName])
|
|
|
|
: super(bindingPropertyName);
|
2015-08-19 00:51:28 -04:00
|
|
|
}
|
2015-09-04 17:07:16 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [HostBindingMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class HostBinding extends HostBindingMetadata {
|
|
|
|
const HostBinding([String hostPropertyName])
|
|
|
|
: super(hostPropertyName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See: [HostListenerMetadata] for docs.
|
|
|
|
*/
|
|
|
|
class HostListener extends HostListenerMetadata {
|
|
|
|
const HostListener(String eventName, [List<String> args])
|
|
|
|
: super(eventName, args);
|
|
|
|
}
|