Use createInstance on service hungry objects

This commit is contained in:
Daniel Imms
2019-07-13 22:56:54 -07:00
parent 88c88f1141
commit 9315b50897
4 changed files with 13 additions and 16 deletions
+3 -6
View File
@@ -612,13 +612,10 @@ export class Terminal extends Disposable implements ITerminal, IDisposable, IInp
this._mouseService = this._instantiationService.createInstance(MouseService);
this._instantiationService.setService(IMouseService, this._mouseService);
this.viewport = new Viewport(
this.viewport = this._instantiationService.createInstance(Viewport,
(amount: number, suppressEvent: boolean) => this.scrollLines(amount, suppressEvent),
this._viewportElement,
this._viewportScrollArea,
this._bufferService,
this._charSizeService,
this._renderService
this._viewportScrollArea
);
this.viewport.onThemeChange(this._colorManager.colors);
this.register(this.viewport);
@@ -651,7 +648,7 @@ export class Terminal extends Disposable implements ITerminal, IDisposable, IInp
}));
this.register(addDisposableDomListener(this._viewportElement, 'scroll', () => this._selectionService.refresh()));
this._mouseZoneManager = new MouseZoneManager(this.element, this.screenElement, this._bufferService, this._mouseService, this._selectionService);
this._mouseZoneManager = this._instantiationService.createInstance(MouseZoneManager, this.element, this.screenElement);
this.register(this._mouseZoneManager);
this.register(this.onScroll(() => this._mouseZoneManager.clearAll()));
this.linkifier.attachToDom(this.element, this._mouseZoneManager);
+3 -3
View File
@@ -35,9 +35,9 @@ export class MouseZoneManager extends Disposable implements IMouseZoneManager {
constructor(
private readonly _element: HTMLElement,
private readonly _screenElement: HTMLElement,
private readonly _bufferService: IBufferService,
private readonly _mouseService: IMouseService,
private readonly _selectionService: ISelectionService
@IBufferService private readonly _bufferService: IBufferService,
@IMouseService private readonly _mouseService: IMouseService,
@ISelectionService private readonly _selectionService: ISelectionService
) {
super();
+3 -3
View File
@@ -36,9 +36,9 @@ export class Viewport extends Disposable implements IViewport {
private readonly _scrollLines: (amount: number, suppressEvent: boolean) => void,
private readonly _viewportElement: HTMLElement,
private readonly _scrollArea: HTMLElement,
private readonly _bufferService: IBufferService,
private readonly _charSizeService: ICharSizeService,
private readonly _renderService: IRenderService
@IBufferService private readonly _bufferService: IBufferService,
@ICharSizeService private readonly _charSizeService: ICharSizeService,
@IRenderService private readonly _renderService: IRenderService
) {
super();
+4 -4
View File
@@ -37,10 +37,10 @@ export class CompositionHelper {
constructor(
private readonly _textarea: HTMLTextAreaElement,
private readonly _compositionView: HTMLElement,
private readonly _bufferService: IBufferService,
private readonly _optionsService: IOptionsService,
private readonly _charSizeService: ICharSizeService,
private readonly _coreService: ICoreService
@IBufferService private readonly _bufferService: IBufferService,
@IOptionsService private readonly _optionsService: IOptionsService,
@ICharSizeService private readonly _charSizeService: ICharSizeService,
@ICoreService private readonly _coreService: ICoreService
) {
this._isComposing = false;
this._isSendingComposition = false;