2017-11-09 15:18:02 +01:00
|
|
|
<div class="parent-div">
|
2017-11-10 14:57:08 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
<div class=" child-div-left" [ngClass]="{true:'col-md-8 col-sm-9', false:'col-md-12 col-sm-12'}[expandedToc]">
|
2017-11-10 16:54:07 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
<div class="col-md-12 form-body-container" id="form-container">
|
|
|
|
|
|
|
|
<form novalidate [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
|
|
|
|
|
|
<div *ngFor = "let section of dataModel.sections; let i = index;">
|
|
|
|
<div *ngIf="section.groupFields.length>0 else sectionHeader">
|
|
|
|
<div *ngIf="shouldIShow(section);"><h3>{{section.title}}</h3></div>
|
|
|
|
<div *ngFor="let group of section.groupFields">
|
|
|
|
<div *ngIf="shouldIShow(group);" >
|
|
|
|
<df-group [group]="group" [dataModel]="dataModel" [form]="getSubForm(group.key)"></df-group>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-10 14:57:08 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
</div>
|
|
|
|
<ng-template *ngIf="shouldIShow(section);" #sectionHeader>
|
|
|
|
<h2>{{section.title}}</h2>
|
|
|
|
</ng-template>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div *ngFor="let field of dataModel.fields">
|
|
|
|
<div [formGroup]="form" class="form-group">
|
|
|
|
<df-field [field]="field" [form]="form" [dataModel]="dataModel" ></df-field>
|
|
|
|
</div>
|
2017-11-10 16:54:07 +01:00
|
|
|
</div>
|
2017-11-15 11:59:08 +01:00
|
|
|
|
|
|
|
<!-- <div *ngFor="let group of dataModel.groups">
|
|
|
|
<df-group [group]="group" [dataModel]="dataModel" [form]="getSubForm(group.key)"></df-group>
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
2017-11-13 17:19:43 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
<div class="col-md-12 form-footer-seperator" >
|
|
|
|
</div>
|
2017-11-13 17:19:43 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
|
|
|
|
<div class="col-md-12 form-footer-container" >
|
2017-11-13 17:19:43 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
<div >
|
|
|
|
<div class="progress">
|
2017-11-16 15:16:09 +01:00
|
|
|
<div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar" aria-valuenow= "" aria-valuemin="0" aria-valuemax="100" [ngStyle]="{'width': dirtyValues + '%'}">
|
2017-11-15 11:59:08 +01:00
|
|
|
<!-- {{dirtyValues}}% -->
|
2017-11-13 17:19:43 +01:00
|
|
|
</div>
|
2017-11-10 16:54:07 +01:00
|
|
|
</div>
|
2017-11-09 11:46:48 +01:00
|
|
|
</div>
|
2017-11-13 17:19:43 +01:00
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
<div>
|
2017-11-15 18:32:34 +01:00
|
|
|
<button type="button" class="btn btn-default btncustom" [disabled]="!form.valid || finalizeStatus" (click)="SaveForm();">Save</button>
|
2017-11-15 11:59:08 +01:00
|
|
|
<button type="button" class="btn btn-default btncustom" [disabled]="!form.valid || finalizeStatus" data-toggle="modal" data-target="#confirmModal">Finalize</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div *ngIf="payLoad" class="form-row">
|
|
|
|
<strong>Saved the following values</strong><br>{{payLoad}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
<p>Form value: {{ form.value | json }}</p>
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<!-- pagination -->
|
|
|
|
<ul *ngIf="pagination.pages && pagination.pages.length" class="pagination">
|
|
|
|
<li [ngClass]="{disabled:pagination.currentPage === 1}">
|
|
|
|
<a (click)="setPage(1)" class="cursor-link" >First</a>
|
|
|
|
</li>
|
|
|
|
<li [ngClass]="{disabled:pagination.currentPage === 1}">
|
|
|
|
<a (click)="setPage(pagination.currentPage - 1)" class="cursor-link">Previous</a>
|
|
|
|
</li>
|
|
|
|
<li *ngFor="let page of pagination.pages" [ngClass]="{active:pagination.currentPage === page}">
|
|
|
|
<a (click)="setPage(page)" class="cursor-link">{{page}}</a>
|
|
|
|
</li>
|
|
|
|
<li [ngClass]="{disabled:pagination.currentPage === pagination.totalPages}">
|
|
|
|
<a (click)="setPage(pagination.currentPage + 1)" class="cursor-link">Next</a>
|
|
|
|
</li>
|
|
|
|
<li [ngClass]="{disabled:pagination.currentPage === pagination.totalPages}">
|
|
|
|
<a (click)="setPage(pagination.totalPages)" class="cursor-link">Last</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2017-11-13 17:19:43 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="child-div-caret" (click)="toggleTOC()">
|
|
|
|
<i class="fa toc-toggler" [ngClass]="{true:'fa-arrow-right', false:'fa-arrow-left'}[expandedToc]" aria-hidden="true" ></i>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="child-div-right" [ngClass]="{true:'col-md-4 col-sm-3', false:'shrink-width' }[expandedToc]" id="toc-container">
|
|
|
|
<toc [dataModel]="dataModel" (setPage)="setPage($event)"></toc>
|
|
|
|
</div>
|
2017-11-13 17:19:43 +01:00
|
|
|
|
2017-11-10 16:54:07 +01:00
|
|
|
|
|
|
|
|
2017-11-15 11:59:08 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!--Modal for Confirmation -->
|
|
|
|
<div class="modal fade" id="confirmModal" tabindex="-1" role="dialog" aria-labelledby="newVersionDmpModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h5 class="modal-title" id="exampleModalLabel">Confirmation Message</h5>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<p>Are you sure you want to save and finalize?</p>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
2017-11-15 18:32:34 +01:00
|
|
|
<button type="button" class="btn btn-primary" (click)="SaveFinalizeForm();">Save and Finalize</button>
|
2017-11-07 15:40:32 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-15 11:59:08 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-10 16:54:07 +01:00
|
|
|
|