From 92d09083277f70e96bd1968aced49e093158524c Mon Sep 17 00:00:00 2001 From: Piotr Pekala Date: Fri, 6 Sep 2019 05:05:57 -0700 Subject: [PATCH] Servers summary added --- src/app/app.module.ts | 4 +- .../project-map/project-map.component.html | 2 +- .../topology-summary.component.html | 87 +++++++++++-------- .../topology-summary.component.scss | 34 +++++--- .../topology-summary.component.spec.ts | 11 ++- .../topology-summary.component.ts | 15 +++- src/app/material.imports.ts | 6 +- src/app/models/compute.ts | 19 ++++ src/app/services/compute.service.ts | 14 +++ 9 files changed, 142 insertions(+), 50 deletions(-) create mode 100644 src/app/models/compute.ts create mode 100644 src/app/services/compute.service.ts diff --git a/src/app/app.module.ts b/src/app/app.module.ts index a977dbb4..3914b17b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -208,6 +208,7 @@ import { ChangeSymbolDialogComponent } from './components/project-map/change-sym import { ChangeSymbolActionComponent } from './components/project-map/context-menu/actions/change-symbol/change-symbol-action.component'; import { EditProjectDialogComponent } from './components/projects/edit-project-dialog/edit-project-dialog.component'; import { ProjectsFilter } from './filters/projectsFilter.pipe'; +import { ComputeService } from './services/compute.service'; if (environment.production) { Raven.config('https://b2b1cfd9b043491eb6b566fd8acee358@sentry.io/842726', { @@ -422,7 +423,8 @@ if (environment.production) { NonNegativeValidator, RotationValidator, MapSettingsService, - InfoService + InfoService, + ComputeService ], entryComponents: [ AddServerDialogComponent, diff --git a/src/app/components/project-map/project-map.component.html b/src/app/components/project-map/project-map.component.html index b30b556c..7c5f8cef 100644 --- a/src/app/components/project-map/project-map.component.html +++ b/src/app/components/project-map/project-map.component.html @@ -85,7 +85,7 @@ Show console - Show topology summary + Show topology/servers summary diff --git a/src/app/components/topology-summary/topology-summary.component.html b/src/app/components/topology-summary/topology-summary.component.html index 3ca33e54..4200feb9 100644 --- a/src/app/components/topology-summary/topology-summary.component.html +++ b/src/app/components/topology-summary/topology-summary.component.html @@ -1,43 +1,62 @@
- Topology summary ({{projectsStatistics.snapshots}} snapshots) + + close
- -
- Filter by status
-
- Started - Suspended - Stopped +
+ +
+ Filter by status
+
+ Started + Suspended + Stopped +
+
+
+ Sorting
+
+ + By name ascending + By name descending + +
+
+ +
+
+
+ + + + + + + {{node.name}} +
+
+ {{node.console_type}} {{node.console_host}}:{{node.console}} +
+
+ none +
+
-
- Sorting
-
- - By name ascending - By name descending - -
-
- -
-
-
- - - - - - - {{node.name}} -
-
- {{node.console_type}} {{node.console_host}}:{{node.console}} -
-
- none +
+ +
+
+
+ {{compute.name}} +
+
+ {{compute.host}} +
+
+ {{server.location}} +
diff --git a/src/app/components/topology-summary/topology-summary.component.scss b/src/app/components/topology-summary/topology-summary.component.scss index a9629c20..a61e2504 100644 --- a/src/app/components/topology-summary/topology-summary.component.scss +++ b/src/app/components/topology-summary/topology-summary.component.scss @@ -17,7 +17,7 @@ .summaryHeader { width: 100%; - height: 24px; + height: 34px; display: flex; justify-content: space-between; margin-right: 5px; @@ -36,15 +36,29 @@ .summaryContent { margin-left: 5px; margin-right: 5px; - max-height: 240px; + max-height: 230px; overflow: auto; scrollbar-color: darkgrey #263238; scrollbar-width: thin; } -.title { +.summaryContentServers { + margin-left: 5px; + margin-right: 5px; + max-height: 350px; + overflow: auto; + scrollbar-color: darkgrey #263238; + scrollbar-width: thin; +} + +.titleButton { margin-left: 5px; margin-top: 4px; + outline: none; +} + +.marked { + color: #0097a7; } .divider { @@ -60,13 +74,6 @@ padding-right: 5px; } -mat-icon { - font-size: 18px; - width: 20px; - height: 20px; - margin-top: 4px; -} - ::-webkit-scrollbar { width: 0.5em; } @@ -91,9 +98,16 @@ mat-icon { .closeButton { cursor: pointer; + font-size: 24px; + margin-top: 8px; + margin-right: 5px; } .filterBox { display: flex; justify-content: space-between; } + +.notvisible { + display: none; +} diff --git a/src/app/components/topology-summary/topology-summary.component.spec.ts b/src/app/components/topology-summary/topology-summary.component.spec.ts index 3cbffe52..d697e371 100644 --- a/src/app/components/topology-summary/topology-summary.component.spec.ts +++ b/src/app/components/topology-summary/topology-summary.component.spec.ts @@ -11,13 +11,21 @@ import { NodesDataSource } from '../../cartography/datasources/nodes-datasource' import { NO_ERRORS_SCHEMA } from '@angular/core'; import { Project } from '../../models/project'; import { Node } from '../../cartography/models/node'; +import { Server } from '../../models/server'; +import { ComputeService } from '../../services/compute.service'; +export class MockedComputeService { + getComputes(server: Server) { + return of([]); + } +} describe('TopologySummaryComponent', () => { let component: TopologySummaryComponent; let fixture: ComponentFixture; let mockedProjectService: MockedProjectService = new MockedProjectService(); let mockedNodesDataSource: MockedNodesDataSource = new MockedNodesDataSource(); + let mockedComputeService: MockedComputeService = new MockedComputeService(); beforeEach(async(() => { TestBed.configureTestingModule({ @@ -32,7 +40,8 @@ describe('TopologySummaryComponent', () => { ], providers: [ { provide: ProjectService, useValue: mockedProjectService }, - { provide: NodesDataSource, useValue: mockedNodesDataSource } + { provide: NodesDataSource, useValue: mockedNodesDataSource }, + { provide: ComputeService, useValue: mockedComputeService} ], declarations: [TopologySummaryComponent], schemas: [NO_ERRORS_SCHEMA] diff --git a/src/app/components/topology-summary/topology-summary.component.ts b/src/app/components/topology-summary/topology-summary.component.ts index a53402e1..cb7ba9e8 100644 --- a/src/app/components/topology-summary/topology-summary.component.ts +++ b/src/app/components/topology-summary/topology-summary.component.ts @@ -6,6 +6,8 @@ import { Node } from '../../cartography/models/node'; import { Subscription } from 'rxjs'; import { ProjectService } from '../../services/project.service'; import { ProjectStatistics } from '../../models/project-statistics'; +import { Compute } from '../../models/compute'; +import { ComputeService } from '../../services/compute.service'; @Component({ @@ -27,10 +29,13 @@ export class TopologySummaryComponent implements OnInit, OnDestroy { startedStatusFilterEnabled: boolean = false; suspendedStatusFilterEnabled: boolean = false; stoppedStatusFilterEnabled: boolean = false; + computes: Compute[] = []; + isTopologyVisible: boolean = true; constructor( private nodesDataSource: NodesDataSource, - private projectService: ProjectService + private projectService: ProjectService, + private computeService: ComputeService ) {} ngOnInit() { @@ -48,6 +53,14 @@ export class TopologySummaryComponent implements OnInit, OnDestroy { this.projectService.getStatistics(this.server, this.project.project_id).subscribe((stats) => { this.projectsStatistics = stats; }); + + this.computeService.getComputes(this.server).subscribe((computes) => { + this.computes = computes; + }); + } + + toogleTopologyVisibility(value: boolean) { + this.isTopologyVisible = value; } compareAsc(first: Node, second: Node) { diff --git a/src/app/material.imports.ts b/src/app/material.imports.ts index fdc33412..ac93b2a2 100644 --- a/src/app/material.imports.ts +++ b/src/app/material.imports.ts @@ -20,7 +20,8 @@ import { MatStepperModule, MatRadioModule, MatGridListModule, - MatTabsModule + MatTabsModule, + MatTreeModule } from '@angular/material'; export const MATERIAL_IMPORTS = [ @@ -45,5 +46,6 @@ export const MATERIAL_IMPORTS = [ MatStepperModule, MatRadioModule, MatGridListModule, - MatTabsModule + MatTabsModule, + MatTreeModule ]; diff --git a/src/app/models/compute.ts b/src/app/models/compute.ts new file mode 100644 index 00000000..83c16bf2 --- /dev/null +++ b/src/app/models/compute.ts @@ -0,0 +1,19 @@ +export interface Capabilities { + node_types: string[]; + platform: string; + version: string; +} + +export interface Compute { + capabilities: Capabilities; + compute_id: string; + connected: boolean; + cpu_usage_percent: number; + host: string; + last_error?: any; + memory_usage_percent: number; + name: string; + port: number; + protocol: string; + user: string; +} diff --git a/src/app/services/compute.service.ts b/src/app/services/compute.service.ts new file mode 100644 index 00000000..6cc49de7 --- /dev/null +++ b/src/app/services/compute.service.ts @@ -0,0 +1,14 @@ +import { Injectable } from '@angular/core'; +import { HttpServer } from './http-server.service'; +import { Server } from '../models/server'; +import { Compute } from '../models/compute'; +import { Observable } from 'rxjs'; + +@Injectable() +export class ComputeService { + constructor(private httpServer: HttpServer) {} + + getComputes(server: Server): Observable { + return this.httpServer.get(server, '/computes') as Observable; + } +}