New dashboard look & feel
[src/xds/xds-agent.git] / webapp / src / app / pages / build / build.component.html
1 <div class="row">
2   <div class="col-12">
3     <nb-card-body>
4       <nb-actions size="medium">
5         <nb-action>
6           <xds-project-select-dropdown></xds-project-select-dropdown>
7         </nb-action>
8         <nb-action>
9           <xds-sdk-select-dropdown></xds-sdk-select-dropdown>
10         </nb-action>
11       </nb-actions>
12     </nb-card-body>
13   </div>
14   <div class="col-md-12 col-lg-12 col-xxxl-6">
15     <nb-card size="xlarge">
16       <nb-tabset fullWidth>
17
18         <nb-tab tabTitle="Build">
19
20           <div class="row" style="margin-top:1em;">
21             <!-- FIXME SEB
22             <button class="btn pull-right " (click)="reset() ">
23               <span class="fa fa-eraser fa-size-x2"></span>
24             </button>
25           -->
26             <div class="col-md-12 text-center ">
27               <textarea rows="20" class="textarea-scroll" #scrollOutput>{{ cmdOutput }}</textarea>
28             </div>
29           </div>
30
31           <nb-card-body>
32               <nb-actions size="medium" fullWidth>
33                 <nb-action (click)="clean()">
34                   <i class="fa fa-eraser"></i>
35                   <span>Clean</span>
36                 </nb-action>
37                 <nb-action (click)="preBuild()">
38                   <i class="nb-list"></i>
39                   <span>Pre-Build</span>
40                 </nb-action>
41                 <nb-action (click)="build()">
42                   <i class="fa fa-wrench"></i>
43                   <span>Build</span>
44                 </nb-action>
45                 <nb-action (click)="populate()">
46                   <i class="fa fa-send"></i>
47                   <span>Populate</span>
48                 </nb-action>
49               </nb-actions>
50             </nb-card-body>
51
52         </nb-tab>
53
54         <nb-tab tabTitle="Deploy">
55           <span> Content deploy...</span>
56         </nb-tab>
57         <nb-tab tabTitle="Debug">
58           <span> Content debug...</span>
59         </nb-tab>
60       </nb-tabset>
61     </nb-card>
62   </div>
63 </div>