Rework development page: Pre-build, Build, Populate.
[src/xds/xds-server.git] / webapp / src / app / build / build.component.ts
diff --git a/webapp/src/app/build/build.component.ts b/webapp/src/app/build/build.component.ts
deleted file mode 100644 (file)
index 17e545f..0000000
+++ /dev/null
@@ -1,139 +0,0 @@
-import { Component, AfterViewChecked, ElementRef, ViewChild, OnInit } from '@angular/core';
-import { Observable } from 'rxjs';
-import { FormControl, FormGroup, Validators, FormBuilder } from '@angular/forms';
-
-import 'rxjs/add/operator/scan';
-import 'rxjs/add/operator/startWith';
-
-import { XDSServerService, ICmdOutput } from "../common/xdsserver.service";
-import { ConfigService, IConfig, IProject } from "../common/config.service";
-import { AlertService, IAlert } from "../common/alert.service";
-import { SdkService } from "../common/sdk.service";
-
-@Component({
-    selector: 'build',
-    moduleId: module.id,
-    templateUrl: './build.component.html',
-    styleUrls: ['./build.component.css']
-})
-
-export class BuildComponent implements OnInit, AfterViewChecked {
-    @ViewChild('scrollOutput') private scrollContainer: ElementRef;
-
-    config$: Observable<IConfig>;
-
-    buildForm: FormGroup;
-    subpathCtrl = new FormControl("", Validators.required);
-
-    public cmdOutput: string;
-    public confValid: boolean;
-    public curProject: IProject;
-    public cmdInfo: string;
-
-    private startTime: Map<string, number> = new Map<string, number>();
-
-    // I initialize the app component.
-    constructor(private configSvr: ConfigService,
-        private xdsSvr: XDSServerService,
-        private fb: FormBuilder,
-        private alertSvr: AlertService,
-        private sdkSvr: SdkService
-    ) {
-        this.cmdOutput = "";
-        this.confValid = false;
-        this.cmdInfo = "";      // TODO: to be remove (only for debug)
-        this.buildForm = fb.group({
-            subpath: this.subpathCtrl,
-            makeArgs: ["", Validators.nullValidator],
-        });
-    }
-
-    ngOnInit() {
-        this.config$ = this.configSvr.conf;
-        this.config$.subscribe((cfg) => {
-            if ("projects" in cfg) {
-                this.curProject = cfg.projects[0];
-                this.confValid = (cfg.projects.length && this.curProject.id != null);
-            } else {
-                this.curProject = null;
-                this.confValid = false;
-            }
-        });
-
-        // Command output data tunneling
-        this.xdsSvr.CmdOutput$.subscribe(data => {
-            this.cmdOutput += data.stdout + "\n";
-        });
-
-        // Command exit
-        this.xdsSvr.CmdExit$.subscribe(exit => {
-            if (this.startTime.has(exit.cmdID)) {
-                this.cmdInfo = 'Last command duration: ' + this._computeTime(this.startTime.get(exit.cmdID));
-                this.startTime.delete(exit.cmdID);
-            }
-
-            if (exit && exit.code !== 0) {
-                this.cmdOutput += "--- Command exited with code " + exit.code + " ---\n\n";
-            }
-        });
-
-        this._scrollToBottom();
-    }
-
-    ngAfterViewChecked() {
-        this._scrollToBottom();
-    }
-
-    reset() {
-        this.cmdOutput = '';
-    }
-
-    make(args: string) {
-        if (!this.curProject) {
-            this.alertSvr.warning('No active project', true);
-        }
-
-        let prjID = this.curProject.id;
-
-        this.cmdOutput += this._outputHeader();
-
-        let sdkid = this.sdkSvr.getCurrentId();
-
-        let cmdArgs = args ? args : this.buildForm.value.makeArgs;
-
-        let t0 = performance.now();
-        this.cmdInfo = 'Start build of ' + prjID + ' at ' + t0;
-
-        this.xdsSvr.make(prjID, this.buildForm.value.subpath, cmdArgs, sdkid)
-            .subscribe(res => {
-                this.startTime.set(String(res.cmdID), t0);
-            },
-            err => {
-                this.cmdInfo = 'Last command duration: ' + this._computeTime(t0);
-                this.alertSvr.error('ERROR: ' + err);
-            });
-    }
-
-    private _scrollToBottom(): void {
-        try {
-            this.scrollContainer.nativeElement.scrollTop = this.scrollContainer.nativeElement.scrollHeight;
-        } catch (err) { }
-    }
-
-    private _computeTime(t0: number, t1?: number): string {
-        let enlap = Math.round((t1 || performance.now()) - t0);
-        if (enlap < 1000.0) {
-            return enlap.toFixed(2) + ' ms';
-        } else {
-            return (enlap / 1000.0).toFixed(3) + ' seconds';
-        }
-    }
-
-    private _outputHeader(): string {
-        return "--- " + new Date().toString() + " ---\n";
-    }
-
-    private _outputFooter(): string {
-        return "\n";
-    }
-}
\ No newline at end of file