no message
This commit is contained in:
parent
cfd2188a47
commit
5e4a31748e
|
@ -2,43 +2,36 @@
|
||||||
<mat-horizontal-stepper [linear]="isLinear">
|
<mat-horizontal-stepper [linear]="isLinear">
|
||||||
<mat-step [stepControl]="formGroup">
|
<mat-step [stepControl]="formGroup">
|
||||||
<form *ngIf="formGroup" [formGroup]="formGroup">
|
<form *ngIf="formGroup" [formGroup]="formGroup">
|
||||||
<ng-template matStepLabel>Dataset Profile Associations</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.FIRST-STEP.TITLE' | translate}}</ng-template>
|
||||||
<auto-complete class="full-width" placeholder="{{'FORM-PAYMENT-ORDER.EDITOR.FIELDS.PROJECT' | translate}}"
|
<auto-complete class="full-width" placeholder="{{'DATASET-WIZARD.FIRST-STEP.DMP' | translate}}" [configuration]="dmpAutoCompleteConfiguration"
|
||||||
[configuration]="dmpAutoCompleteConfiguration"
|
titleKey="label" [control]="formGroup.get('dmp')" [required]="true">
|
||||||
titleKey="label"
|
|
||||||
[control]="formGroup.get('dmp')"
|
|
||||||
[required]="true">
|
|
||||||
</auto-complete>
|
</auto-complete>
|
||||||
<auto-complete class="full-width" placeholder="{{'FORM-PAYMENT-ORDER.EDITOR.FIELDS.PROJECT' | translate}}"
|
<auto-complete class="full-width" placeholder="{{'DATASET-WIZARD.FIRST-STEP.PROFILE' | translate}}" [configuration]="datasetProfileAutoCompleteConfiguration"
|
||||||
[configuration]="datasetProfileAutoCompleteConfiguration"
|
titleKey="label" [control]="formGroup.get('profile')" [required]="true" [disabled]="!formGroup.get('dmp').value">
|
||||||
titleKey="label"
|
|
||||||
[control]="formGroup.get('profile')"
|
|
||||||
[required]="true"
|
|
||||||
[disabled]="!formGroup.get('dmp').value">
|
|
||||||
</auto-complete>
|
</auto-complete>
|
||||||
<div>
|
<div>
|
||||||
<button mat-button matStepperNext>Next</button>
|
<button matStepperNext mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.NEXT' | translate}}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</mat-step>
|
</mat-step>
|
||||||
<mat-step [stepControl]="formGroup">
|
<mat-step [stepControl]="formGroup">
|
||||||
<form *ngIf="formGroup" [formGroup]="formGroup">
|
<form *ngIf="formGroup" [formGroup]="formGroup">
|
||||||
<ng-template matStepLabel>Dataset Profile Basic Info</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.SECOND-STEP.TITLE' | translate}}</ng-template>
|
||||||
<app-dataset-editor-component [formGroup]="formGroup"></app-dataset-editor-component>
|
<app-dataset-editor-component [formGroup]="formGroup"></app-dataset-editor-component>
|
||||||
<div>
|
<div>
|
||||||
<button mat-button matStepperPrevious>Back</button>
|
<button matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK' | translate}}</button>
|
||||||
<button mat-button matStepperNext>Next</button>
|
<button matStepperNext mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.NEXT' | translate}}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</mat-step>
|
</mat-step>
|
||||||
<mat-step>
|
<mat-step>
|
||||||
<ng-template matStepLabel>Dataset Profile Form</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.THIRD-STEP.TITLE' | translate}}</ng-template>
|
||||||
You are now done.
|
|
||||||
<div>
|
<div>
|
||||||
<button mat-button matStepperPrevious>Back</button>
|
<button matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK' | translate}}</button>
|
||||||
</div>
|
</div>
|
||||||
</mat-step>
|
</mat-step>
|
||||||
</mat-horizontal-stepper>
|
</mat-horizontal-stepper>
|
||||||
<!-- <div *ngIf="formGroup"> {{ formGroup.value | json }}</div> -->
|
<!-- <div *ngIf="formGroup"> {{ formGroup.value | json }}</div> -->
|
||||||
|
|
||||||
</div>
|
</div>
|
|
@ -44,6 +44,23 @@
|
||||||
"VERSION": "Version"
|
"VERSION": "Version"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"DATASET-WIZARD": {
|
||||||
|
"FIRST-STEP": {
|
||||||
|
"TITLE": "Plan Information",
|
||||||
|
"DMP": "Data Management Plan",
|
||||||
|
"PROFILE": "Profile"
|
||||||
|
},
|
||||||
|
"SECOND-STEP": {
|
||||||
|
"TITLE": "Dataset Information"
|
||||||
|
},
|
||||||
|
"THIRD-STEP": {
|
||||||
|
"TITLE": "Definition"
|
||||||
|
},
|
||||||
|
"ACTIONS": {
|
||||||
|
"NEXT": "Next",
|
||||||
|
"BACK": "Back"
|
||||||
|
}
|
||||||
|
},
|
||||||
"DATASET-LISTING": {
|
"DATASET-LISTING": {
|
||||||
"TITLE": "Datasets",
|
"TITLE": "Datasets",
|
||||||
"COLUMNS": {
|
"COLUMNS": {
|
||||||
|
|
Loading…
Reference in New Issue