added caching for jobs view and history page (#1056)

This commit is contained in:
Aditya Bist
2018-04-04 21:56:04 -07:00
committed by GitHub
parent 7e49167530
commit 36045c5381
12 changed files with 164 additions and 55 deletions

View File

@@ -51,7 +51,6 @@ core-util-is@~1.0.0:
"dataprotocol-client@github:Microsoft/sqlops-dataprotocolclient#0.1.5": "dataprotocol-client@github:Microsoft/sqlops-dataprotocolclient#0.1.5":
version "0.1.5" version "0.1.5"
resolved "https://codeload.github.com/Microsoft/sqlops-dataprotocolclient/tar.gz/21b0bacfc759689a6c280408528c6029a21b1abf"
dependencies: dependencies:
vscode-languageclient "3.5.0" vscode-languageclient "3.5.0"

View File

@@ -9,10 +9,10 @@
<tab [title]="jobsComponentTitle" class="fullsize" [identifier]="jobsTabIdentifier" <tab [title]="jobsComponentTitle" class="fullsize" [identifier]="jobsTabIdentifier"
[iconClass]="jobsIconClass"> [iconClass]="jobsIconClass">
<div id="jobsDiv" class="fullsize" *ngIf="showHistory === false"> <div id="jobsDiv" class="fullsize" *ngIf="showHistory === false">
<jobsview-component ></jobsview-component> <jobsview-component></jobsview-component>
</div> </div>
<div id="historyDiv" class="fullsize" *ngIf="showHistory === true"> <div id="historyDiv" class="fullsize" *ngIf="showHistory === true">
<jobhistory-component [jobId]="jobId" [agentJobInfo]="agentJobInfo"></jobhistory-component> <jobhistory-component [jobId]="jobId" [agentJobInfo]="agentJobInfo" [agentJobHistories]="agentJobHistories"></jobhistory-component>
</div> </div>
</tab> </tab>
</panel> </panel>

View File

@@ -4,8 +4,8 @@
*--------------------------------------------------------------------------------------------*/ *--------------------------------------------------------------------------------------------*/
import 'vs/css!../common/media/jobs'; import 'vs/css!../common/media/jobs';
import * as nls from 'vs/nls';
import { OnInit, Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, OnDestroy, ViewChild, Injectable } from '@angular/core'; import { Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, ViewChild, Injectable } from '@angular/core';
import * as Utils from 'sql/parts/connection/common/utils'; import * as Utils from 'sql/parts/connection/common/utils';
import { RefreshWidgetAction, EditDashboardAction } from 'sql/parts/dashboard/common/actions'; import { RefreshWidgetAction, EditDashboardAction } from 'sql/parts/dashboard/common/actions';
import { IColorTheme } from 'vs/workbench/services/themes/common/workbenchThemeService'; import { IColorTheme } from 'vs/workbench/services/themes/common/workbenchThemeService';
@@ -14,11 +14,9 @@ import * as themeColors from 'vs/workbench/common/theme';
import { DashboardPage } from 'sql/parts/dashboard/common/dashboardPage.component'; import { DashboardPage } from 'sql/parts/dashboard/common/dashboardPage.component';
import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar'; import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';
import { IBootstrapService, BOOTSTRAP_SERVICE_ID } from 'sql/services/bootstrap/bootstrapService'; import { IBootstrapService, BOOTSTRAP_SERVICE_ID } from 'sql/services/bootstrap/bootstrapService';
import { IJobManagementService } from '../common/interfaces';
import { DashboardServiceInterface } from 'sql/parts/dashboard/services/dashboardServiceInterface.service'; import { DashboardServiceInterface } from 'sql/parts/dashboard/services/dashboardServiceInterface.service';
import { AgentJobInfo, AgentJobHistoryInfo } from 'sqlops'; import { AgentJobInfo, AgentJobHistoryInfo } from 'sqlops';
import { PanelComponent, IPanelOptions, NavigationBarLayout } from 'sql/base/browser/ui/panel/panel.component'; import { PanelComponent, IPanelOptions, NavigationBarLayout } from 'sql/base/browser/ui/panel/panel.component';
import * as nls from 'vs/nls';
export const DASHBOARD_SELECTOR: string = 'agentview-component'; export const DASHBOARD_SELECTOR: string = 'agentview-component';
@@ -40,7 +38,7 @@ export class AgentViewComponent {
private _showHistory: boolean = false; private _showHistory: boolean = false;
private _jobId: string = null; private _jobId: string = null;
private _agentJobInfo: AgentJobInfo = null; private _agentJobInfo: AgentJobInfo = null;
private _agentJobHistoryInfo: AgentJobHistoryInfo[] = null; private _agentJobHistories: AgentJobHistoryInfo[] = null;
public jobsIconClass: string = 'jobsview-icon'; public jobsIconClass: string = 'jobsview-icon';
@@ -52,8 +50,8 @@ export class AgentViewComponent {
}; };
constructor( constructor(
@Inject(forwardRef(() => ChangeDetectorRef)) private _cd: ChangeDetectorRef, @Inject(forwardRef(() => ChangeDetectorRef)) private _cd: ChangeDetectorRef){
){} }
/** /**
* Public Getters * Public Getters
@@ -70,8 +68,8 @@ export class AgentViewComponent {
return this._agentJobInfo; return this._agentJobInfo;
} }
public get agentJobHistoryInfo(): AgentJobHistoryInfo[] { public get agentJobHistories(): AgentJobHistoryInfo[] {
return this._agentJobHistoryInfo; return this._agentJobHistories;
} }
/** /**
@@ -93,8 +91,8 @@ export class AgentViewComponent {
this._cd.detectChanges(); this._cd.detectChanges();
} }
public set agentJobHistoryInfo(value: AgentJobHistoryInfo[]) { public set agentJobHistories(value: AgentJobHistoryInfo[]) {
this._agentJobHistoryInfo = value; this._agentJobHistories = value;
this._cd.detectChanges(); this._cd.detectChanges();
} }
} }

View File

@@ -0,0 +1,54 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { Injectable } from '@angular/core';
import * as sqlops from 'sqlops';
import * as vscode from 'vscode';
import { IAgentJobCacheService } from './interfaces';
@Injectable()
export class AgentJobCacheService implements IAgentJobCacheService {
_serviceBrand: any;
private _jobs: sqlops.AgentJobInfo[];
private _jobHistories: { [jobId: string]: sqlops.AgentJobHistoryInfo[]; } = {};
private _prevJobID: string;
/* Getters */
public get jobs(): sqlops.AgentJobInfo[] {
return this._jobs;
}
public get jobHistories(): { [jobId: string]: sqlops.AgentJobHistoryInfo[] } {
return this._jobHistories;
}
public get prevJobID(): string {
return this._prevJobID;
}
public getJobHistory(jobID: string): sqlops.AgentJobHistoryInfo[] {
return this._jobHistories[jobID];
}
/* Setters */
public set jobs(value: sqlops.AgentJobInfo[]) {
this._jobs = value;
}
public set jobHistories(value: { [jobId: string]: sqlops.AgentJobHistoryInfo[]; }) {
this._jobHistories = value;
}
public set prevJobID(value: string) {
this._prevJobID = value;
}
public setJobHistory(jobID:string, value: sqlops.AgentJobHistoryInfo[]) {
this._jobHistories[jobID] = value;
}
}

View File

@@ -5,12 +5,15 @@
'use strict'; 'use strict';
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
import * as sqlops from 'sqlops'; import * as sqlops from 'sqlops';
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
import { Table } from 'sql/base/browser/ui/table/table';
export const SERVICE_ID = 'jobManagementService'; export const SERVICE_ID = 'jobManagementService';
export const CACHE_ID = 'jobCacheService';
export const IJobManagementService = createDecorator<IJobManagementService>(SERVICE_ID); export const IJobManagementService = createDecorator<IJobManagementService>(SERVICE_ID);
export const IAgentJobCacheService = createDecorator<IAgentJobCacheService>(CACHE_ID);
export interface IJobManagementService { export interface IJobManagementService {
_serviceBrand: any; _serviceBrand: any;
@@ -23,3 +26,17 @@ export interface IJobManagementService {
jobAction(connectionUri: string, jobName: string, action: string): Thenable<sqlops.AgentJobActionResult>; jobAction(connectionUri: string, jobName: string, action: string): Thenable<sqlops.AgentJobActionResult>;
} }
export interface IAgentJobCacheService {
_serviceBrand: any;
jobs: sqlops.AgentJobInfo[];
jobHistories: { [jobId: string]: sqlops.AgentJobHistoryInfo[]; };
prevJobID: string;
getJobHistory(jobID: string): sqlops.AgentJobHistoryInfo[];
setJobHistory(jobID: string, value: sqlops.AgentJobHistoryInfo[]);
}

View File

@@ -132,3 +132,7 @@ jobhistory-component {
.vs-dark .jobsview-icon { .vs-dark .jobsview-icon {
content: url('./job_inverse.svg'); content: url('./job_inverse.svg');
} }
agentview-component .tabbedPanel .tabList .tab .tabLabel.icon {
padding: 20px 15px !important;
}

View File

@@ -114,7 +114,7 @@
Job ID: Job ID:
</td> </td>
<td height="30"> <td height="30">
{{agentJobHistoryInfo?.jobId}} {{agentJobHistoryInfo?.jobId || agentJobInfo?.jobId}}
</td> </td>
</tr> </tr>
<tr class="step-row"> <tr class="step-row">

View File

@@ -5,7 +5,7 @@
import 'vs/css!./jobHistory'; import 'vs/css!./jobHistory';
import { OnInit, OnChanges, Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, OnDestroy, ViewChild, Input, Injectable } from '@angular/core'; import { OnInit, OnChanges, Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, OnDestroy, ViewChild, Input, Injectable, ChangeDetectionStrategy } from '@angular/core';
import { AgentJobHistoryInfo, AgentJobInfo } from 'sqlops'; import { AgentJobHistoryInfo, AgentJobInfo } from 'sqlops';
import { IThemeService } from 'vs/platform/theme/common/themeService'; import { IThemeService } from 'vs/platform/theme/common/themeService';
import { attachListStyler } from 'vs/platform/theme/common/styler'; import { attachListStyler } from 'vs/platform/theme/common/styler';
@@ -14,7 +14,7 @@ import { IInstantiationService } from 'vs/platform/instantiation/common/instanti
import { Disposable, IDisposable } from 'vs/base/common/lifecycle'; import { Disposable, IDisposable } from 'vs/base/common/lifecycle';
import { PanelComponent } from 'sql/base/browser/ui/panel/panel.component'; import { PanelComponent } from 'sql/base/browser/ui/panel/panel.component';
import { IBootstrapService, BOOTSTRAP_SERVICE_ID } from 'sql/services/bootstrap/bootstrapService'; import { IBootstrapService, BOOTSTRAP_SERVICE_ID } from 'sql/services/bootstrap/bootstrapService';
import { IJobManagementService } from '../common/interfaces'; import { IJobManagementService, IAgentJobCacheService } from '../common/interfaces';
import { DashboardServiceInterface } from 'sql/parts/dashboard/services/dashboardServiceInterface.service'; import { DashboardServiceInterface } from 'sql/parts/dashboard/services/dashboardServiceInterface.service';
import { AgentViewComponent } from 'sql/parts/jobManagement/agent/agentView.component'; import { AgentViewComponent } from 'sql/parts/jobManagement/agent/agentView.component';
import { JobHistoryController, JobHistoryDataSource, import { JobHistoryController, JobHistoryDataSource,
@@ -29,28 +29,31 @@ export const DASHBOARD_SELECTOR: string = 'jobhistory-component';
@Component({ @Component({
selector: DASHBOARD_SELECTOR, selector: DASHBOARD_SELECTOR,
templateUrl: decodeURI(require.toUrl('./jobHistory.component.html')) templateUrl: decodeURI(require.toUrl('./jobHistory.component.html')),
changeDetection: ChangeDetectionStrategy.OnPush
}) })
export class JobHistoryComponent extends Disposable implements OnInit { export class JobHistoryComponent extends Disposable implements OnInit {
private _jobManagementService: IJobManagementService; private _jobManagementService: IJobManagementService;
private _tree: Tree; private _tree: Tree;
private _treeController = new JobHistoryController(); private _treeController: JobHistoryController;
private _treeDataSource = new JobHistoryDataSource(); private _treeDataSource: JobHistoryDataSource;
private _treeRenderer = new JobHistoryRenderer(); private _treeRenderer: JobHistoryRenderer;
private _treeFilter = new JobHistoryFilter(); private _treeFilter: JobHistoryFilter;
@ViewChild('table') private _tableContainer: ElementRef; @ViewChild('table') private _tableContainer: ElementRef;
@Input() public agentJobInfo: AgentJobInfo = undefined; @Input() public agentJobInfo: AgentJobInfo = undefined;
@Input() public jobId: string = undefined; @Input() public jobId: string = undefined;
@Input() public agentJobHistoryInfo: AgentJobHistoryInfo = undefined; @Input() public agentJobHistories: AgentJobHistoryInfo[] = undefined;
public agentJobHistoryInfo: AgentJobHistoryInfo = undefined;
private _prevJobId: string = undefined;
private _isVisible: boolean = false; private _isVisible: boolean = false;
private _stepRows: JobStepsViewRow[] = []; private _stepRows: JobStepsViewRow[] = [];
private _showSteps: boolean = false; private _showSteps: boolean = false;
private _runStatus: string = undefined; private _runStatus: string = undefined;
private _messageService: IMessageService;
private _agentJobCacheService: IAgentJobCacheService;
private _notificationService: INotificationService; private _notificationService: INotificationService;
constructor( constructor(
@@ -61,7 +64,13 @@ export class JobHistoryComponent extends Disposable implements OnInit {
@Inject(forwardRef(() => AgentViewComponent)) private _agentViewComponent: AgentViewComponent @Inject(forwardRef(() => AgentViewComponent)) private _agentViewComponent: AgentViewComponent
) { ) {
super(); super();
this._treeController = new JobHistoryController();
this._treeDataSource = new JobHistoryDataSource();
this._treeRenderer = new JobHistoryRenderer();
this._treeFilter = new JobHistoryFilter();
this._jobManagementService = bootstrapService.jobManagementService; this._jobManagementService = bootstrapService.jobManagementService;
this._messageService = bootstrapService.messageService;
this._agentJobCacheService = bootstrapService.agentJobCacheService;
this._notificationService = bootstrapService.notificationService; this._notificationService = bootstrapService.notificationService;
} }
@@ -115,10 +124,24 @@ export class JobHistoryComponent extends Disposable implements OnInit {
ngAfterContentChecked() { ngAfterContentChecked() {
if (this._isVisible === false && this._tableContainer.nativeElement.offsetParent !== null) { if (this._isVisible === false && this._tableContainer.nativeElement.offsetParent !== null) {
if (this._prevJobId !== this.jobId) { this._isVisible = true;
this.loadHistory(); if (this.agentJobHistories && this.agentJobHistories.length > 0) {
this._prevJobId = this.jobId; if (this._agentJobCacheService.prevJobID === this.jobId || this.agentJobHistories[0].jobId === this.jobId) {
this.agentJobHistoryInfo = this.agentJobHistories[0];
this.agentJobHistoryInfo.runDate = this.formatTime(this.agentJobHistories[0].runDate);
this._treeController.jobHistories = this.agentJobHistories;
this._agentJobCacheService.setJobHistory(this.jobId, this.agentJobHistories);
let jobHistoryRows = this._treeController.jobHistories.map(job => this.convertToJobHistoryRow(job));
this._treeDataSource.data = jobHistoryRows;
this._tree.setInput(new JobHistoryModel());
this._cd.detectChanges();
} }
} else {
this.loadHistory();
}
this._agentJobCacheService.prevJobID = this.jobId;
} else if (this._isVisible === true && this._tableContainer.nativeElement.offsetParent === null) {
this._isVisible = false;
} }
} }
@@ -128,6 +151,7 @@ export class JobHistoryComponent extends Disposable implements OnInit {
this._jobManagementService.getJobHistory(ownerUri, this.jobId).then((result) => { this._jobManagementService.getJobHistory(ownerUri, this.jobId).then((result) => {
if (result && result.jobs) { if (result && result.jobs) {
self._treeController.jobHistories = result.jobs; self._treeController.jobHistories = result.jobs;
self._agentJobCacheService.setJobHistory(self.jobId, result.jobs);
let jobHistoryRows = self._treeController.jobHistories.map(job => self.convertToJobHistoryRow(job)); let jobHistoryRows = self._treeController.jobHistories.map(job => self.convertToJobHistoryRow(job));
self._treeDataSource.data = jobHistoryRows; self._treeDataSource.data = jobHistoryRows;
self._tree.setInput(new JobHistoryModel()); self._tree.setInput(new JobHistoryModel());

View File

@@ -11,16 +11,15 @@ import 'vs/css!sql/parts/grid/media/slickGrid';
import 'vs/css!../common/media/jobs'; import 'vs/css!../common/media/jobs';
import 'vs/css!../common/media/detailview'; import 'vs/css!../common/media/detailview';
import { OnInit, Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, OnDestroy, ViewChild } from '@angular/core'; import { Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, ViewChild, Input } from '@angular/core';
import * as Utils from 'sql/parts/connection/common/utils'; import * as Utils from 'sql/parts/connection/common/utils';
import { RefreshWidgetAction, EditDashboardAction } from 'sql/parts/dashboard/common/actions';
import { IColorTheme } from 'vs/workbench/services/themes/common/workbenchThemeService'; import { IColorTheme } from 'vs/workbench/services/themes/common/workbenchThemeService';
import { IDisposable } from 'vs/base/common/lifecycle'; import { IDisposable } from 'vs/base/common/lifecycle';
import * as themeColors from 'vs/workbench/common/theme'; import * as themeColors from 'vs/workbench/common/theme';
import { DashboardPage } from 'sql/parts/dashboard/common/dashboardPage.component'; import { DashboardPage } from 'sql/parts/dashboard/common/dashboardPage.component';
import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar'; import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';
import { IBootstrapService, BOOTSTRAP_SERVICE_ID } from 'sql/services/bootstrap/bootstrapService'; import { IBootstrapService, BOOTSTRAP_SERVICE_ID } from 'sql/services/bootstrap/bootstrapService';
import { IJobManagementService } from '../common/interfaces'; import { IJobManagementService, IAgentJobCacheService } from '../common/interfaces';
import { DashboardServiceInterface } from 'sql/parts/dashboard/services/dashboardServiceInterface.service'; import { DashboardServiceInterface } from 'sql/parts/dashboard/services/dashboardServiceInterface.service';
import * as sqlops from 'sqlops'; import * as sqlops from 'sqlops';
import * as vscode from 'vscode'; import * as vscode from 'vscode';
@@ -32,6 +31,7 @@ import { attachTableStyler } from 'sql/common/theme/styler';
import { JobHistoryComponent } from './jobHistory.component'; import { JobHistoryComponent } from './jobHistory.component';
import { AgentViewComponent } from '../agent/agentView.component'; import { AgentViewComponent } from '../agent/agentView.component';
import { RowDetailView } from 'sql/base/browser/ui/table/plugins/rowdetailview'; import { RowDetailView } from 'sql/base/browser/ui/table/plugins/rowdetailview';
import { AgentJobCacheService } from 'sql/parts/jobManagement/common/agentJobCacheService';
export const JOBSVIEW_SELECTOR: string = 'jobsview-component'; export const JOBSVIEW_SELECTOR: string = 'jobsview-component';
@@ -39,9 +39,10 @@ export const JOBSVIEW_SELECTOR: string = 'jobsview-component';
selector: JOBSVIEW_SELECTOR, selector: JOBSVIEW_SELECTOR,
templateUrl: decodeURI(require.toUrl('./jobsView.component.html')) templateUrl: decodeURI(require.toUrl('./jobsView.component.html'))
}) })
export class JobsViewComponent implements OnInit, OnDestroy { export class JobsViewComponent {
private _jobManagementService: IJobManagementService; private _jobManagementService: IJobManagementService;
private _jobCacheService: IAgentJobCacheService;
private _disposables = new Array<vscode.Disposable>(); private _disposables = new Array<vscode.Disposable>();
@@ -64,11 +65,8 @@ export class JobsViewComponent implements OnInit, OnDestroy {
@ViewChild('jobsgrid') _gridEl: ElementRef; @ViewChild('jobsgrid') _gridEl: ElementRef;
private isVisible: boolean = false; private isVisible: boolean = false;
private isInitialized: boolean = false; private isInitialized: boolean = false;
private _table: Table<any>; private _table: Table<any>;
public jobs: sqlops.AgentJobInfo[]; public jobs: sqlops.AgentJobInfo[];
public jobHistories: { [jobId: string]: sqlops.AgentJobHistoryInfo[]; } = Object.create(null); public jobHistories: { [jobId: string]: sqlops.AgentJobHistoryInfo[]; } = Object.create(null);
constructor( constructor(
@@ -79,21 +77,28 @@ export class JobsViewComponent implements OnInit, OnDestroy {
@Inject(forwardRef(() => AgentViewComponent)) private _agentViewComponent: AgentViewComponent @Inject(forwardRef(() => AgentViewComponent)) private _agentViewComponent: AgentViewComponent
) { ) {
this._jobManagementService = bootstrapService.jobManagementService; this._jobManagementService = bootstrapService.jobManagementService;
this._jobCacheService = bootstrapService.agentJobCacheService;
} }
ngAfterContentChecked() { ngAfterContentChecked() {
if (this.isVisible === false && this._gridEl.nativeElement.offsetParent !== null) { if (this.isVisible === false && this._gridEl.nativeElement.offsetParent !== null) {
this.isVisible = true; this.isVisible = true;
if (!this.isInitialized) { if (!this.isInitialized) {
this.onFirstVisible(); if (this._jobCacheService.jobs !== undefined) {
this.jobs = this._jobCacheService.jobs;
this.onFirstVisible(true);
this.isInitialized = true; this.isInitialized = true;
} else {
this.onFirstVisible(false);
this.isInitialized = true;
}
} }
} else if (this.isVisible === true && this._gridEl.nativeElement.offsetParent === null) { } else if (this.isVisible === true && this._gridEl.nativeElement.offsetParent === null) {
this.isVisible = false; this.isVisible = false;
} }
} }
onFirstVisible() { onFirstVisible(cached?: boolean) {
let self = this; let self = this;
let columns = this.columns.map((column) => { let columns = this.columns.map((column) => {
column.rerenderOnResize = true; column.rerenderOnResize = true;
@@ -128,18 +133,27 @@ export class JobsViewComponent implements OnInit, OnDestroy {
self._agentViewComponent.jobId = job.jobId; self._agentViewComponent.jobId = job.jobId;
self._agentViewComponent.agentJobInfo = job; self._agentViewComponent.agentJobInfo = job;
self.isVisible = false; self.isVisible = false;
if (self._jobCacheService.getJobHistory(job.jobId)) {
self._agentViewComponent.agentJobHistories = self._jobCacheService.getJobHistory(job.jobId);
}
setTimeout(() => {
self._agentViewComponent.showHistory = true; self._agentViewComponent.showHistory = true;
}, 500);
}); });
this._cd.detectChanges(); this._cd.detectChanges();
if (cached) {
this.onJobsAvailable(this._jobCacheService.jobs);
} else {
let ownerUri: string = this._dashboardService.connectionManagementService.connectionInfo.ownerUri; let ownerUri: string = this._dashboardService.connectionManagementService.connectionInfo.ownerUri;
this._jobManagementService.getJobs(ownerUri).then((result) => { this._jobManagementService.getJobs(ownerUri).then((result) => {
if (result && result.jobs) { if (result && result.jobs) {
this.jobs = result.jobs; this.jobs = result.jobs;
this._jobCacheService.jobs = this.jobs;
this.onJobsAvailable(result.jobs); this.onJobsAvailable(result.jobs);
} }
}); });
} }
}
onJobsAvailable(jobs: sqlops.AgentJobInfo[]) { onJobsAvailable(jobs: sqlops.AgentJobInfo[]) {
let jobViews = jobs.map((job) => { let jobViews = jobs.map((job) => {
@@ -177,12 +191,6 @@ export class JobsViewComponent implements OnInit, OnDestroy {
this.loadJobHistories(); this.loadJobHistories();
} }
ngOnInit() {
}
ngOnDestroy() {
}
loadingTemplate() { loadingTemplate() {
return '<div class="preload">Loading...</div>'; return '<div class="preload">Loading...</div>';
} }
@@ -201,6 +209,7 @@ export class JobsViewComponent implements OnInit, OnDestroy {
this._jobManagementService.getJobHistory(ownerUri, job.jobId).then((result) => { this._jobManagementService.getJobHistory(ownerUri, job.jobId).then((result) => {
if (result.jobs) { if (result.jobs) {
this.jobHistories[job.jobId] = result.jobs; this.jobHistories[job.jobId] = result.jobs;
this._jobCacheService.setJobHistory(job.jobId, result.jobs);
} }
}); });
}); });

View File

@@ -40,7 +40,7 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { IStorageService } from 'vs/platform/storage/common/storage'; import { IStorageService } from 'vs/platform/storage/common/storage';
import { ConfigurationEditingService } from 'vs/workbench/services/configuration/node/configurationEditingService'; import { ConfigurationEditingService } from 'vs/workbench/services/configuration/node/configurationEditingService';
import { ICommandService } from 'vs/platform/commands/common/commands'; import { ICommandService } from 'vs/platform/commands/common/commands';
import { IJobManagementService } from 'sql/parts/jobManagement/common/interfaces'; import { IJobManagementService, IAgentJobCacheService } from 'sql/parts/jobManagement/common/interfaces';
import { IEnvironmentService } from 'vs/platform/environment/common/environment'; import { IEnvironmentService } from 'vs/platform/environment/common/environment';
import { INotificationService } from 'vs/platform/notification/common/notification'; import { INotificationService } from 'vs/platform/notification/common/notification';
@@ -95,6 +95,7 @@ export interface IBootstrapService {
commandService: ICommandService; commandService: ICommandService;
dashboardWebviewService: IDashboardWebviewService; dashboardWebviewService: IDashboardWebviewService;
jobManagementService: IJobManagementService; jobManagementService: IJobManagementService;
agentJobCacheService: IAgentJobCacheService;
environmentService: IEnvironmentService; environmentService: IEnvironmentService;
/* /*

View File

@@ -44,7 +44,7 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { IStorageService } from 'vs/platform/storage/common/storage'; import { IStorageService } from 'vs/platform/storage/common/storage';
import { ConfigurationEditingService } from 'vs/workbench/services/configuration/node/configurationEditingService'; import { ConfigurationEditingService } from 'vs/workbench/services/configuration/node/configurationEditingService';
import { ICommandService } from 'vs/platform/commands/common/commands'; import { ICommandService } from 'vs/platform/commands/common/commands';
import { IJobManagementService } from 'sql/parts/jobManagement/common/interfaces'; import { IJobManagementService, IAgentJobCacheService } from 'sql/parts/jobManagement/common/interfaces';
import { IEnvironmentService } from 'vs/platform/environment/common/environment'; import { IEnvironmentService } from 'vs/platform/environment/common/environment';
import { INotificationService } from 'vs/platform/notification/common/notification'; import { INotificationService } from 'vs/platform/notification/common/notification';
@@ -104,6 +104,7 @@ export class BootstrapService implements IBootstrapService {
@ICommandService public commandService: ICommandService, @ICommandService public commandService: ICommandService,
@IDashboardWebviewService public dashboardWebviewService: IDashboardWebviewService, @IDashboardWebviewService public dashboardWebviewService: IDashboardWebviewService,
@IJobManagementService public jobManagementService: IJobManagementService, @IJobManagementService public jobManagementService: IJobManagementService,
@IAgentJobCacheService public agentJobCacheService: IAgentJobCacheService
@IEnvironmentService public environmentService: IEnvironmentService @IEnvironmentService public environmentService: IEnvironmentService
) { ) {
this.configurationEditorService = this.instantiationService.createInstance(ConfigurationEditingService); this.configurationEditorService = this.instantiationService.createInstance(ConfigurationEditingService);

View File

@@ -130,8 +130,9 @@ import { IQueryManagementService, QueryManagementService } from 'sql/parts/query
import { IEditorDescriptorService, EditorDescriptorService } from 'sql/parts/query/editor/editorDescriptorService'; import { IEditorDescriptorService, EditorDescriptorService } from 'sql/parts/query/editor/editorDescriptorService';
import { IScriptingService, ScriptingService } from 'sql/services/scripting/scriptingService'; import { IScriptingService, ScriptingService } from 'sql/services/scripting/scriptingService';
import { IAdminService, AdminService } from 'sql/parts/admin/common/adminService'; import { IAdminService, AdminService } from 'sql/parts/admin/common/adminService';
import { IJobManagementService } from 'sql/parts/jobManagement/common/interfaces'; import { IJobManagementService, IAgentJobCacheService } from 'sql/parts/jobManagement/common/interfaces';
import { JobManagementService } from 'sql/parts/jobManagement/common/jobManagementService'; import { JobManagementService } from 'sql/parts/jobManagement/common/jobManagementService';
import { AgentJobCacheService } from 'sql/parts/jobManagement/common/agentJobCacheService';
import { IBackupService, IBackupUiService } from 'sql/parts/disasterRecovery/backup/common/backupService'; import { IBackupService, IBackupUiService } from 'sql/parts/disasterRecovery/backup/common/backupService';
import { BackupService, BackupUiService } from 'sql/parts/disasterRecovery/backup/common/backupServiceImp'; import { BackupService, BackupUiService } from 'sql/parts/disasterRecovery/backup/common/backupServiceImp';
import { IRestoreDialogController, IRestoreService } from 'sql/parts/disasterRecovery/restore/common/restoreService'; import { IRestoreDialogController, IRestoreService } from 'sql/parts/disasterRecovery/restore/common/restoreService';
@@ -702,6 +703,7 @@ export class Workbench implements IPartService {
serviceCollection.set(IScriptingService, this.instantiationService.createInstance(ScriptingService)); serviceCollection.set(IScriptingService, this.instantiationService.createInstance(ScriptingService));
serviceCollection.set(IAdminService, this.instantiationService.createInstance(AdminService)); serviceCollection.set(IAdminService, this.instantiationService.createInstance(AdminService));
serviceCollection.set(IJobManagementService, this.instantiationService.createInstance(JobManagementService)); serviceCollection.set(IJobManagementService, this.instantiationService.createInstance(JobManagementService));
serviceCollection.set(IAgentJobCacheService, this.instantiationService.createInstance(AgentJobCacheService));
serviceCollection.set(IBackupService, this.instantiationService.createInstance(BackupService)); serviceCollection.set(IBackupService, this.instantiationService.createInstance(BackupService));
serviceCollection.set(IBackupUiService, this.instantiationService.createInstance(BackupUiService)); serviceCollection.set(IBackupUiService, this.instantiationService.createInstance(BackupUiService));
serviceCollection.set(IRestoreService, this.instantiationService.createInstance(RestoreService)); serviceCollection.set(IRestoreService, this.instantiationService.createInstance(RestoreService));