当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript MapWrapper.create方法代码示例

本文整理汇总了TypeScript中angular2/src/facade/collection.MapWrapper.create方法的典型用法代码示例。如果您正苦于以下问题:TypeScript MapWrapper.create方法的具体用法?TypeScript MapWrapper.create怎么用?TypeScript MapWrapper.create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular2/src/facade/collection.MapWrapper的用法示例。


在下文中一共展示了MapWrapper.create方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: constructor

 constructor({urlData,
   viewCacheCapacity,
   shadowDomStrategy,
   templates}) {
   this._templates = MapWrapper.create();
   if (isPresent(templates)) {
     ListWrapper.forEach(templates, (template) => {
       MapWrapper.set(this._templates, template.componentId, template);
     });
   }
   this._compileCache = MapWrapper.create();
   var parser = new Parser(new Lexer());
   var urlResolver = new UrlResolver();
   if (isBlank(shadowDomStrategy)) {
     shadowDomStrategy = new EmulatedUnscopedShadowDomStrategy(new StyleUrlResolver(urlResolver), null);
   }
   var compiler = new Compiler(new DefaultStepFactory(parser, shadowDomStrategy), new FakeTemplateLoader(urlResolver, urlData));
   if (isBlank(viewCacheCapacity)) {
     viewCacheCapacity = 1;
   }
   if (isBlank(urlData)) {
     urlData = MapWrapper.create();
   }
   this.eventPlugin = new FakeEventManagerPlugin();
   var eventManager = new EventManager([this.eventPlugin], new FakeVmTurnZone());
   var viewFactory = new ViewFactory(viewCacheCapacity, eventManager, shadowDomStrategy);
   this.renderer = new DirectDomRenderer(compiler, viewFactory, shadowDomStrategy);
   this.rootEl = el('<div></div>');
   this.rootProtoViewRef = this.renderer.createRootProtoView(this.rootEl);
 }
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:30,代码来源:integration_testbed.ts

示例2: parseHostConfig

  static parseHostConfig(host?: Map<string, string>): StringMap<string, Map<string, string>> {
    let hostListeners = MapWrapper.create();
    let hostProperties = MapWrapper.create();
    let hostAttributes = MapWrapper.create();
    let hostActions = MapWrapper.create();

    if (isPresent(host)) {
      MapWrapper.forEach(host, (value: string, key: string) => {
        var matches = RegExpWrapper.firstMatch(hostRegExp, key);
        if (isBlank(matches)) {
          MapWrapper.set(hostAttributes, key, value);
        } else if (isPresent(matches[1])) {
          MapWrapper.set(hostProperties, matches[1], value);
        } else if (isPresent(matches[2])) {
          MapWrapper.set(hostListeners, matches[2], value);
        } else if (isPresent(matches[3])) {
          MapWrapper.set(hostActions, matches[3], value);
        }
      });
    }

    return {
      hostListeners: hostListeners, hostProperties: hostProperties, hostAttributes: hostAttributes,
          hostActions: hostActions
    }
  }
开发者ID:amzinino,项目名称:angular,代码行数:26,代码来源:api.ts

示例3: constructor

 constructor(reflectionCapabilities) {
   this._typeInfo = MapWrapper.create();
   this._getters = MapWrapper.create();
   this._setters = MapWrapper.create();
   this._methods = MapWrapper.create();
   this.reflectionCapabilities = reflectionCapabilities;
 }
开发者ID:Bogatinov,项目名称:angular,代码行数:7,代码来源:reflector.ts

示例4: constructor

 constructor() {
   super();
   this._templates = MapWrapper.create();
   this._inlineTemplates = MapWrapper.create();
   this._templateCache = MapWrapper.create();
   this._directiveOverrides = MapWrapper.create();
 }
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:7,代码来源:template_resolver_mock.ts

示例5: create

  static create({id, selector, compileChildren, events, host, properties, readAttributes, type,
                 callOnDestroy, callOnChange, callOnCheck, callOnInit, callOnAllChangesDone,
                 changeDetection, exportAs}: {
    id?: string,
    selector?: string,
    compileChildren?: boolean,
    events?: List<string>,
    host?: Map<string, string>,
    properties?: List<string>,
    readAttributes?: List<string>,
    type?: number,
    callOnDestroy?: boolean,
    callOnChange?: boolean,
    callOnCheck?: boolean,
    callOnInit?: boolean,
    callOnAllChangesDone?: boolean,
    changeDetection?: string,
    exportAs?: string
  }) {
    let hostListeners = MapWrapper.create();
    let hostProperties = MapWrapper.create();
    let hostAttributes = MapWrapper.create();
    let hostActions = MapWrapper.create();

    if (isPresent(host)) {
      MapWrapper.forEach(host, (value: string, key: string) => {
        var matches = RegExpWrapper.firstMatch(hostRegExp, key);
        if (isBlank(matches)) {
          MapWrapper.set(hostAttributes, key, value);
        } else if (isPresent(matches[1])) {
          MapWrapper.set(hostProperties, matches[1], value);
        } else if (isPresent(matches[2])) {
          MapWrapper.set(hostListeners, matches[2], value);
        } else if (isPresent(matches[3])) {
          MapWrapper.set(hostActions, matches[3], value);
        }
      });
    }

    return new DirectiveMetadata({
      id: id,
      selector: selector,
      compileChildren: compileChildren,
      events: events,
      hostListeners: hostListeners,
      hostProperties: hostProperties,
      hostAttributes: hostAttributes,
      hostActions: hostActions,
      properties: properties,
      readAttributes: readAttributes,
      type: type,
      callOnDestroy: callOnDestroy,
      callOnChange: callOnChange,
      callOnCheck: callOnCheck,
      callOnInit: callOnInit,
      callOnAllChangesDone: callOnAllChangesDone,
      changeDetection: changeDetection,
      exportAs: exportAs
    });
  }
开发者ID:AsherBarak,项目名称:angular,代码行数:60,代码来源:api.ts

示例6: it

 it('should be injectable without type annotation', () => {
   var attributes = MapWrapper.create();
   MapWrapper.set(attributes, 'foo', 'bar');
   var inj = injector([NeedsAttributeNoType], null, null, null, attributes);
   var needsAttribute = inj.get(NeedsAttributeNoType);
   expect(needsAttribute.fooAttribute).toEqual('bar');
 });
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:7,代码来源:element_injector_spec.ts

示例7: process

 process(parent, current, control) {
   if (current.ignoreBindings) {
     return ;
   }
   var attrs = current.attrs();
   var newAttrs = MapWrapper.create();
   MapWrapper.forEach(attrs, (attrValue, attrName) => {
     var bindParts = RegExpWrapper.firstMatch(BIND_NAME_REGEXP, attrName);
     if (isPresent(bindParts)) {
       if (isPresent(bindParts[1])) {
         this._bindProperty(bindParts[4], attrValue, current, newAttrs);
       } else if (isPresent(bindParts[2])) {
         var identifier = bindParts[4];
         var value = attrValue == '' ? '\$implicit' : attrValue;
         this._bindVariable(identifier, value, current, newAttrs);
       } else if (isPresent(bindParts[3])) {
         this._bindEvent(bindParts[4], attrValue, current, newAttrs);
       } else if (isPresent(bindParts[5])) {
         this._bindProperty(bindParts[5], attrValue, current, newAttrs);
       } else if (isPresent(bindParts[6])) {
         this._bindEvent(bindParts[6], attrValue, current, newAttrs);
       }
     } else {
       var expr = this._parser.parseInterpolation(attrValue, current.elementDescription);
       if (isPresent(expr)) {
         this._bindPropertyAst(attrName, expr, current, newAttrs);
       }
     }
   });
   MapWrapper.forEach(newAttrs, (attrValue, attrName) => {
     MapWrapper.set(attrs, attrName, attrValue);
   });
 }
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:33,代码来源:property_binding_parser.ts

示例8: constructor

 constructor(index, element, description) {
   this.element = element;
   this.index = index;
   this.parent = null;
   this.distanceToParent = 0;
   this.directives = [];
   this.nestedProtoView = null;
   this.propertyBindings = MapWrapper.create();
   this.variableBindings = MapWrapper.create();
   this.eventBindings = MapWrapper.create();
   this.textBindings = [];
   this.textBindingIndices = [];
   this.contentTagSelector = null;
   this.propertySetters = MapWrapper.create();
   this.componentId = null;
   this.readAttributes = MapWrapper.create();
 }
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:17,代码来源:proto_view_builder.ts

示例9: dispatchEvent

 dispatchEvent(elementIndex, eventName, event) {
   if (isPresent(this._eventDispatcher)) {
     var evalLocals = MapWrapper.create();
     MapWrapper.set(evalLocals, '$event', event);
     var localValues = this.proto.elementBinders[elementIndex].eventLocals.eval(null, new Locals(null, evalLocals));
     this._eventDispatcher.dispatchEvent(elementIndex, eventName, localValues);
   }
 }
开发者ID:gdi2290,项目名称:sample-Angular2,代码行数:8,代码来源:view.ts

示例10: createCompiler

 function createCompiler(processClosure, urlData = null) {
   if (isBlank(urlData)) {
     urlData = MapWrapper.create();
   }
   var tplLoader = new FakeTemplateLoader(urlData);
   mockStepFactory = new MockStepFactory([new MockStep(processClosure)]);
   return new DomCompiler(mockStepFactory, tplLoader);
 }
开发者ID:B-Thapa,项目名称:angular,代码行数:8,代码来源:compiler_common_tests.ts


注:本文中的angular2/src/facade/collection.MapWrapper.create方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。