當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript kernel.IServiceLocator類代碼示例

本文整理匯總了TypeScript中@aurelia/kernel.IServiceLocator的典型用法代碼示例。如果您正苦於以下問題:TypeScript IServiceLocator類的具體用法?TypeScript IServiceLocator怎麽用?TypeScript IServiceLocator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了IServiceLocator類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

  constructor(
    sourceExpression: IsBindingBehavior | IForOfStatement,
    target: Element,
    // some attributes may have inner structure
    // such as class -> collection of class names
    // such as style -> collection of style rules
    //
    // for normal attributes, targetAttribute and targetProperty are the same and can be ignore
    targetAttribute: string,
    targetKey: string,
    mode: BindingMode,
    observerLocator: IObserverLocator,
    locator: IServiceLocator
  ) {
    connectable.assignIdTo(this);
    this.$nextBinding = null;
    this.$prevBinding = null;
    this.$state = State.none;
    this.$lifecycle = locator.get(ILifecycle);
    this.$nextConnect = null;
    this.$nextPatch = null;
    this.$scope = null;

    this.locator = locator;
    this.mode = mode;
    this.observerLocator = observerLocator;
    this.sourceExpression = sourceExpression;
    this.target = target;
    this.targetAttribute = targetAttribute;
    this.targetProperty = targetKey;
    this.persistentFlags = LifecycleFlags.none;
  }
開發者ID:aurelia,項目名稱:aurelia,代碼行數:32,代碼來源:attribute.ts

示例2:

export function $hydrateElement(this: Writable<ICustomElement>, flags: LifecycleFlags, parentContext: IServiceLocator, host: INode, options: IElementHydrationOptions = PLATFORM.emptyObject): void {
  if (Profiler.enabled) { enter(); }
  const Type = this.constructor as ICustomElementType;
  if (Tracer.enabled) { Tracer.enter(Type.description.name, '$hydrate', slice.call(arguments)); }
  const description = Type.description;

  flags |= description.strategy;
  const projectorLocator = parentContext.get(IProjectorLocator);
  const renderingEngine = parentContext.get(IRenderingEngine);
  const dom = parentContext.get(IDOM);

  let bindingContext: typeof this;
  if (flags & LifecycleFlags.proxyStrategy) {
    bindingContext = ProxyObserver.getOrCreate(this).proxy;
  } else {
    bindingContext = this;
  }

  this.$scope = Scope.create(flags, bindingContext, null);
  this.$host = host;
  this.$projector = projectorLocator.getElementProjector(dom, this, host, description);

  renderingEngine.applyRuntimeBehavior(flags, Type, this);

  if (this.$hooks & Hooks.hasRender) {
    const result = this.render(flags, host, options.parts, parentContext);

    if (result && 'getElementTemplate' in result) {
      const template = result.getElementTemplate(renderingEngine, Type, parentContext);
      template.render(this, host, options.parts);
    }
  } else {
    const template = renderingEngine.getElementTemplate(dom, description, parentContext, Type);
    template.render(this, host, options.parts);
  }

  if (this.$hooks & Hooks.hasCreated) {
    bindingContext.created(flags);
  }
  if (Profiler.enabled) { leave(); }
  if (Tracer.enabled) { Tracer.leave(); }
}
開發者ID:aurelia,項目名稱:aurelia,代碼行數:42,代碼來源:lifecycle-render.ts

示例3: constructor

  constructor(sourceExpression: IExpression, targetProperty: string, observerLocator: IObserverLocator, locator: IServiceLocator, toViewModel: boolean = false) {
    connectable.assignIdTo(this);
    this.$nextBinding = null;
    this.$prevBinding = null;
    this.$state = State.none;
    this.$lifecycle = locator.get(ILifecycle);
    this.$scope = null;

    this.locator = locator;
    this.observerLocator = observerLocator;
    this.sourceExpression = sourceExpression;
    this.target = null;
    this.targetProperty = targetProperty;

    this.toViewModel = toViewModel;
  }
開發者ID:aurelia,項目名稱:aurelia,代碼行數:16,代碼來源:let-binding.ts

示例4: constructor

  constructor(sourceExpression: IsBindingBehavior | IForOfStatement, target: IObservable, targetProperty: string, mode: BindingMode, observerLocator: IObserverLocator, locator: IServiceLocator) {
    connectable.assignIdTo(this);
    this.$nextBinding = null;
    this.$prevBinding = null;
    this.$state = State.none;
    this.$lifecycle = locator.get(ILifecycle);
    this.$nextConnect = null;
    this.$scope = null;

    this.locator = locator;
    this.mode = mode;
    this.observerLocator = observerLocator;
    this.sourceExpression = sourceExpression;
    this.target = target;
    this.targetProperty = targetProperty;
    this.persistentFlags = LifecycleFlags.none;
  }
開發者ID:aurelia,項目名稱:aurelia,代碼行數:17,代碼來源:binding.ts


注:本文中的@aurelia/kernel.IServiceLocator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。