blob: 6c8df72be85068f2075e1bef72a9a740b16b4427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<div class="row">
<div class="col-12">
<nb-card-body>
<nb-actions size="medium">
<nb-action>
<xds-project-select-dropdown></xds-project-select-dropdown>
</nb-action>
<nb-action>
<xds-sdk-select-dropdown></xds-sdk-select-dropdown>
</nb-action>
</nb-actions>
</nb-card-body>
</div>
<div class="col-md-12 col-lg-12">
<nb-card size="xlarge">
<nb-tabset fullWidth>
<nb-tab tabTitle="Build" style="overflow: hidden;">
<div class="offset-md-10 col-md-2 right">
<i class="control-icon fa fa-eraser" (click)="resetOutput()">
</i>
</div>
<div class="col-md-12 text-center ">
<textarea rows="20" class="textarea-scroll" #scrollOutput>{{ cmdOutput }}</textarea>
</div>
<nb-card-body>
<nb-actions size="medium" fullWidth>
<nb-action (click)="settingsShow()" [disabled]="!isSetupValid()">
<i class="fa fa-cog"></i>
<span>Settings</span>
</nb-action>
<nb-action>
</nb-action>
<nb-action (click)="clean()" [disabled]="!isSetupValid()">
<i class="fa fa-eraser"></i>
<span>Clean</span>
</nb-action>
<nb-action (click)="preBuild()" [disabled]="!isSetupValid()">
<i class="nb-list"></i>
<span>Pre-Build</span>
</nb-action>
<nb-action (click)="build()" [disabled]="!isSetupValid()">
<i class="fa fa-wrench"></i>
<span>Build</span>
</nb-action>
<nb-action (click)="populate()" [disabled]="!isSetupValid()">
<i class="fa fa-send"></i>
<span>Populate</span>
</nb-action>
</nb-actions>
</nb-card-body>
</nb-tab>
<nb-tab tabTitle="Deploy">
<br><span> Under construction...</span>
</nb-tab>
<nb-tab tabTitle="Debug">
<br><span> Under construction...</span>
</nb-tab>
</nb-tabset>
</nb-card>
</div>
</div>
|