blob: cc690d9a64d4d6eefb4cf08c55da45765939cb13 [file] [log] [blame]
<h1 mat-dialog-title>Add Structure to {{data.name}}</h1>
<mat-horizontal-stepper #stepper class ="new-submessage-stepper">
<mat-step label="Select Structure options" #step1>
<div style="display:flex; flex-direction:row; justify-content: space-evenly; align-items: baseline;">
<button mat-raised-button color="primary" style="width:100%;" matStepperNext (click)="createNew()">Create new Structure</button>
<p style="width:100%; text-align:center;">or</p>
<mat-form-field style="width:100%;">
<mat-label>Select a Structure to Add to Sub Message</mat-label>
<mat-select [(ngModel)]="data.structure" (selectionChange)="storeId($event.value)">
<mat-option *ngFor="let option of (availableStructures|async)" [value]="option" [id]="option!==undefined && option.id !==undefined ? option.id :''" >
{{option.name}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<button mat-raised-button color="primary" *ngIf="data.structure?.id && data.structure?.id!=='-1'" (click)="moveToReview(stepper)">Proceed to Review</button>
</mat-step>
<mat-step label="Define Structure" #step2>
<div style="display:flex; flex-direction:column">
<mat-form-field>
<mat-label>Name</mat-label>
<input matInput [(ngModel)]="data.structure.name" required>
</mat-form-field>
<mat-form-field>
<mat-label>Description</mat-label>
<input matInput [(ngModel)]="data.structure.description" required>
</mat-form-field>
<mat-form-field>
<mat-label>Max Simultaneity</mat-label>
<input matInput type="number" [(ngModel)]="data.structure.interfaceMaxSimultaneity" required>
</mat-form-field>
<mat-form-field>
<mat-label>Min Simultaneity</mat-label>
<input matInput type="number" [(ngModel)]="data.structure.interfaceMinSimultaneity" required>
</mat-form-field>
<mat-form-field>
<mat-label>Task File Type</mat-label>
<input type="number" matInput [(ngModel)]="data.structure.interfaceTaskFileType" required>
</mat-form-field>
<mat-form-field>
<mat-label>Category</mat-label>
<!-- <input matInput [(ngModel)]="data.structure.interfaceStructureCategory" required> -->
<mat-select [(ngModel)]="data.structure.interfaceStructureCategory" required>
<mat-option *ngFor="let option of (categories|async)" [value]="option" >
{{option}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<button mat-raised-button matStepperPrevious>Back</button>
<ng-container *ngIf="data.structure.name!=='' && data.structure.description!=='' && data.structure.interfaceMaxSimultaneity !=='' && data.structure.interfaceMinSimultaneity !=='' && data.structure.interfaceTaskFileType!==undefined && data.structure.interfaceStructureCategory!==''">
<button mat-raised-button color="primary" matStepperNext>Next</button>
</ng-container>
</mat-step>
<mat-step label="Review" #step3>
<div style="display:flex;flex-direction:column">
A structure will be related to:
<mat-label>{{data.name}}</mat-label> with the following properties:
<mat-label>Structure Name: {{data.structure.name}}</mat-label>
<mat-label>Structure Description: {{data.structure.description}}</mat-label>
<mat-label>Structure Max Simultaneity: {{data.structure.interfaceMaxSimultaneity}}</mat-label>
<mat-label>Structure Min Simultaneity: {{data.structure.interfaceMinSimultaneity}}</mat-label>
<mat-label>Structure Task File Type: {{data.structure.interfaceTaskFileType}}</mat-label>
<mat-label>Structure Category: {{data.structure.interfaceStructureCategory}}</mat-label>
</div>
<mat-dialog-actions align="end">
<button mat-button matStepperPrevious>Back</button>
<button mat-raised-button color="primary" [mat-dialog-close]="data">
Ok
</button>
</mat-dialog-actions>
</mat-step>
</mat-horizontal-stepper>