Skip to content

Commit 7a8513b

Browse files
Mihail GoloborodovMihail Goloborodov
Mihail Goloborodov
authored and
Mihail Goloborodov
committed
fix: uiView component injector
1 parent 34c0efc commit 7a8513b

File tree

2 files changed

+3
-44
lines changed

2 files changed

+3
-44
lines changed

src/directives/uiView.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ import {
3333
ViewContext,
3434
} from '@uirouter/core';
3535
import { Ng2ViewConfig } from '../statebuilders/views';
36-
import { MergeInjector } from '../mergeInjector';
3736

3837
/** @hidden */
3938
let id = 0;
@@ -291,7 +290,8 @@ export class UIView implements OnInit, OnDestroy {
291290
const componentClass = config.viewDecl.component;
292291

293292
// Create the component
294-
const compFactoryResolver = componentInjector.get(ComponentFactoryResolver);
293+
const moduleInjector = context.getResolvable(NATIVE_INJECTOR_TOKEN).data;
294+
const compFactoryResolver = moduleInjector.get(ComponentFactoryResolver);
295295
const compFactory = compFactoryResolver.resolveComponentFactory(componentClass);
296296
this._componentRef = this._componentTarget.createComponent(compFactory, undefined, componentInjector);
297297

@@ -322,10 +322,8 @@ export class UIView implements OnInit, OnDestroy {
322322
newProviders.push({ provide: UIView.PARENT_INJECT, useValue: parentInject });
323323

324324
const parentComponentInjector = this.viewContainerRef.injector;
325-
const moduleInjector = context.getResolvable(NATIVE_INJECTOR_TOKEN).data;
326-
const mergedParentInjector = new MergeInjector(moduleInjector, parentComponentInjector);
327325

328-
return ReflectiveInjector.resolveAndCreate(newProviders, mergedParentInjector);
326+
return Injector.create({ providers: newProviders, parent: parentComponentInjector });
329327
}
330328

331329
/**

src/mergeInjector.ts

-39
This file was deleted.

0 commit comments

Comments
 (0)