various style fixes
This commit is contained in:
parent
92d9c2cf03
commit
592fc44025
|
@ -1,41 +1,38 @@
|
||||||
<div class="dataset-wizard">
|
<div class="dataset-wizard">
|
||||||
<h3 *ngIf="isNew">{{ 'DATASET-WIZARD.TITLE.NEW' | translate }}</h3>
|
<h3 *ngIf="isNew">{{ 'DATASET-WIZARD.TITLE.NEW' | translate }}</h3>
|
||||||
<div fxLayout="row" fxLayoutAlign="space-between center">
|
<div class="row">
|
||||||
<div>
|
<div class="col-auto">
|
||||||
<h3 *ngIf="!isNew ">{{datasetWizardModel?.label}} {{ 'GENERAL.NAMES.DATASET' | translate }}</h3>
|
<h3 *ngIf="!isNew ">{{datasetWizardModel?.label}} {{ 'GENERAL.NAMES.DATASET' | translate }}</h3>
|
||||||
<h3 *ngIf="this.formGroup && this.formGroup.dirty"> - {{ 'GENERAL.STATUSES.EDIT' | translate }}</h3>
|
<h3 *ngIf="this.formGroup && this.formGroup.dirty"> - {{ 'GENERAL.STATUSES.EDIT' | translate }}</h3>
|
||||||
<h3 *ngIf="this.formGroup && this.formGroup.get('status').value == DatasetStatus.Finalised && viewOnly"> - {{
|
<h3 *ngIf="this.formGroup && this.formGroup.get('status').value == DatasetStatus.Finalised && viewOnly"> - {{
|
||||||
'GENERAL.STATUSES.FINALISED' | translate }}</h3>
|
'GENERAL.STATUSES.FINALISED' | translate }}</h3>
|
||||||
</div>
|
</div>
|
||||||
<button *ngIf="!editMode" mat-icon-button (click)="enableForm()">
|
<div class="col"></div>
|
||||||
|
<button *ngIf="!editMode" class="col-auto" mat-icon-button (click)="enableForm()">
|
||||||
<mat-icon class="mat-24">edit</mat-icon>
|
<mat-icon class="mat-24">edit</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button *ngIf="editMode" mat-icon-button (click)="disableForm()">
|
<button *ngIf="editMode" class="col-auto" mat-icon-button (click)="disableForm()">
|
||||||
<mat-icon class="mat-24">lock</mat-icon>
|
<mat-icon class="mat-24">lock</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="this.datasetProfileDefinitionModel || this.datasetWizardModel?.datasetProfileDefinition">
|
<div *ngIf="this.datasetProfileDefinitionModel || this.datasetWizardModel?.datasetProfileDefinition">
|
||||||
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status != 1 && !viewOnly"
|
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status != 1 && !viewOnly" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;" (click)="save();" type="button">{{
|
||||||
style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;" (click)="save();" type="button">{{
|
|
||||||
'DATASET-WIZARD.ACTIONS.SAVE' | translate }}</button>
|
'DATASET-WIZARD.ACTIONS.SAVE' | translate }}</button>
|
||||||
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status != 1 && !viewOnly"
|
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status != 1 && !viewOnly" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;" (click)="saveFinalize();" type="button">{{
|
||||||
style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;" (click)="saveFinalize();" type="button">{{
|
|
||||||
'DATASET-WIZARD.ACTIONS.SAVE-AND-FINALISE' | translate }}</button>
|
'DATASET-WIZARD.ACTIONS.SAVE-AND-FINALISE' | translate }}</button>
|
||||||
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status == 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;"
|
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status == 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;" (click)="downloadPDF();" type="button">{{ 'DATASET-WIZARD.ACTIONS.DOWNLOAD-PDF' | translate }}</button>
|
||||||
(click)="downloadPDF();" type="button">{{ 'DATASET-WIZARD.ACTIONS.DOWNLOAD-PDF' | translate }}</button>
|
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status == 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;" (click)="downloadXML();" type="button">{{ 'DATASET-WIZARD.ACTIONS.DOWNLOAD-XML' | translate }}</button>
|
||||||
<button mat-raised-button color="primary" *ngIf="datasetWizardModel&&datasetWizardModel?.status == 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;"
|
|
||||||
(click)="downloadXML();" type="button">{{ 'DATASET-WIZARD.ACTIONS.DOWNLOAD-XML' | translate }}</button>
|
|
||||||
<div class="fill-space"></div>
|
<div class="fill-space"></div>
|
||||||
</div>
|
</div>
|
||||||
<mat-horizontal-stepper [linear]="isLinear" #stepper>
|
<div class="row">
|
||||||
<mat-step [stepControl]="formGroup">
|
<mat-horizontal-stepper [linear]="isLinear" class="col-12" #stepper>
|
||||||
<div *ngIf="this.isActiveStep(0)">
|
<mat-step class="step-container" [stepControl]="formGroup">
|
||||||
<form *ngIf="formGroup" [formGroup]="formGroup">
|
|
||||||
<app-single-auto-complete [required]="true" [reactiveFormControl]="formGroup.get('dmp')" placeholder="{{'DATASET-EDITOR.FIELDS.DMP' | translate}}"
|
|
||||||
[configuration]="dmpAutoCompleteConfiguration">
|
|
||||||
</app-single-auto-complete>
|
|
||||||
<ng-template matStepLabel>{{'DATASET-WIZARD.FIRST-STEP.TITLE' | translate}}</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.FIRST-STEP.TITLE' | translate}}</ng-template>
|
||||||
<mat-form-field formGroupName="profile">
|
<form *ngIf="formGroup" [formGroup]="formGroup">
|
||||||
|
<div *ngIf="this.isActiveStep(0)" class="row">
|
||||||
|
<app-single-auto-complete class="col-md-6" [required]="true" [reactiveFormControl]="formGroup.get('dmp')" placeholder="{{'DATASET-EDITOR.FIELDS.DMP' | translate}}" [configuration]="dmpAutoCompleteConfiguration">
|
||||||
|
</app-single-auto-complete>
|
||||||
|
<mat-form-field class="col-md-6" formGroupName="profile">
|
||||||
<mat-select placeholder=" {{'DATASET-WIZARD.FIRST-STEP.PROFILE'| translate}}" [required]="true" formControlName="id">
|
<mat-select placeholder=" {{'DATASET-WIZARD.FIRST-STEP.PROFILE'| translate}}" [required]="true" formControlName="id">
|
||||||
<mat-option *ngFor="let profile of availableProfiles" [value]="profile.id">
|
<mat-option *ngFor="let profile of availableProfiles" [value]="profile.id">
|
||||||
{{profile.label}}
|
{{profile.label}}
|
||||||
|
@ -43,85 +40,79 @@
|
||||||
</mat-select>
|
</mat-select>
|
||||||
<mat-error *ngIf="baseErrorModel?.status">{{baseErrorModel['Criteria.status']}}</mat-error>
|
<mat-error *ngIf="baseErrorModel?.status">{{baseErrorModel['Criteria.status']}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
<app-dataset-editor-component [formGroup]="formGroup"></app-dataset-editor-component>
|
<app-dataset-editor-component class="col-12" [formGroup]="formGroup"></app-dataset-editor-component>
|
||||||
<div class="navigation-buttons-container">
|
<div class="col-12">
|
||||||
<button matStepperNext mat-raised-button style="float:right;" color="primary">{{'DATASET-WIZARD.ACTIONS.NEXT' |
|
<div class="row">
|
||||||
translate}}
|
<div class="col"></div>
|
||||||
</button>
|
<div class="col-auto"><button matStepperNext mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.NEXT' | translate}}</button></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
|
||||||
</mat-step>
|
</mat-step>
|
||||||
<mat-step [stepControl]="formGroup">
|
<mat-step class="step-container" [stepControl]="formGroup">
|
||||||
<div *ngIf="this.isActiveStep(1)">
|
|
||||||
<form *ngIf="formGroup" [formGroup]="formGroup">
|
|
||||||
<ng-template matStepLabel>{{'DATASET-WIZARD.SECOND-STEP.TITLE' | translate}}</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.SECOND-STEP.TITLE' | translate}}</ng-template>
|
||||||
|
<form *ngIf="formGroup" [formGroup]="formGroup">
|
||||||
<mat-card>
|
<div *ngIf="this.isActiveStep(1)" class="row">
|
||||||
<mat-card-header>
|
<mat-card class="col-12 external-item-card">
|
||||||
<mat-card-title class="thick" *ngIf='!viewOnly'>
|
<div class="row">
|
||||||
{{'DATASET-EDITOR.FIELDS.DATAREPOSITORIES' | translate}}
|
<div class="col-12 row" *ngIf='!viewOnly'>
|
||||||
<button mat-raised-button color="primary" (click)="addDataRepository()">
|
<h4 class="col-auto">{{'DATASET-EDITOR.FIELDS.DATAREPOSITORIES' | translate}}</h4>
|
||||||
|
<div class="col"></div>
|
||||||
|
<div class="col-auto"><button class="col-auto" mat-raised-button color="primary" (click)="addDataRepository()">
|
||||||
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
||||||
</button>
|
</button>
|
||||||
</mat-card-title>
|
|
||||||
</mat-card-header>
|
|
||||||
<app-external-item-listing *ngIf="formGroup.get('dataRepositories') && dataRepositoriesTemplate && externalSourcesConfiguration"
|
|
||||||
[options]="externalSourcesConfiguration.dataRepositories" placeholder="{{'DATASET-EDITOR.FIELDS.DATAREPOSITORIES' | translate}}"
|
|
||||||
[parentTemplate]='dataRepositoriesTemplate' [displayFunction]='dataRepositoryDisplayFunc' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc'
|
|
||||||
[formGroup]="formGroup.get('dataRepositories')" [viewOnly]='viewOnly' [autoCompleteConfiguration]="dataRepositoriesAutoCompleteConfiguration"
|
|
||||||
(onItemChange)="dataRepositoriesOnItemChange($event)">
|
|
||||||
</app-external-item-listing>
|
|
||||||
|
|
||||||
<ng-template #dataRepositoriesTemplate let-suggestion let-i="index" let-callback="function">
|
|
||||||
<div class="col-md-2">
|
|
||||||
<p>
|
|
||||||
{{i+1}}) {{suggestion.get('label').value}}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-8">
|
</div>
|
||||||
|
</div>
|
||||||
|
<app-external-item-listing class="col-12" *ngIf="formGroup.get('dataRepositories') && dataRepositoriesTemplate && externalSourcesConfiguration" [options]="externalSourcesConfiguration.dataRepositories" placeholder="{{'DATASET-EDITOR.FIELDS.DATAREPOSITORIES' | translate}}" [parentTemplate]='dataRepositoriesTemplate' [displayFunction]='dataRepositoryDisplayFunc' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc' [formGroup]="formGroup.get('dataRepositories')" [viewOnly]='viewOnly' [autoCompleteConfiguration]="dataRepositoriesAutoCompleteConfiguration" (onItemChange)="dataRepositoriesOnItemChange($event)">
|
||||||
|
</app-external-item-listing>
|
||||||
|
<ng-template #dataRepositoriesTemplate let-suggestion let-i="index" let-callback="function">
|
||||||
|
<div class="col-12 row align-items-center">
|
||||||
|
<span class="col">
|
||||||
|
{{i+1}}) {{suggestion.get('label').value}}
|
||||||
|
</span>
|
||||||
|
<div class="col-auto">
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.DATAREPOSITORIES-INFO' | translate}}" type="text" name="info"
|
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.DATAREPOSITORIES-INFO' | translate}}" type="text" name="info" [formControl]="suggestion.get('info')">
|
||||||
[formControl]="suggestion.get('info')">
|
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2" *ngIf='!viewOnly'>
|
<div class="col-auto" *ngIf='!viewOnly'>
|
||||||
<button mat-button (click)="callback(i)">
|
<button mat-icon-button (click)="callback(i)">
|
||||||
<mat-icon>close</mat-icon>
|
<mat-icon>close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
<mat-card>
|
<mat-card class="col-12 external-item-card">
|
||||||
<mat-card-header>
|
<div class="row">
|
||||||
<mat-card-title class="thick" *ngIf='!viewOnly'>
|
<div class="col-12 row" *ngIf='!viewOnly'>
|
||||||
{{'DATASET-EDITOR.FIELDS.EXTERNAL-DATASETS' | translate}}
|
<h4 class="col-auto">{{'DATASET-EDITOR.FIELDS.EXTERNAL-DATASETS' | translate}}</h4>
|
||||||
<button mat-raised-button color="primary" (click)="addExternalDataset()">
|
<div class="col"></div>
|
||||||
|
<div class="col-auto"><button mat-raised-button color="primary" (click)="addExternalDataset()">
|
||||||
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
||||||
</button>
|
</button>
|
||||||
</mat-card-title>
|
</div>
|
||||||
</mat-card-header>
|
</div>
|
||||||
<app-external-item-listing *ngIf="formGroup.get('externalDatasets') && externalDatasetsTemplate && externalSourcesConfiguration"
|
</div>
|
||||||
[options]="externalSourcesConfiguration.externalDatasets" placeholder="{{'DATASET-EDITOR.FIELDS.EXTERNAL-DATASETS' | translate}}"
|
<app-external-item-listing class="col-12" *ngIf="formGroup.get('externalDatasets') && externalDatasetsTemplate && externalSourcesConfiguration" [options]="externalSourcesConfiguration.externalDatasets" placeholder="{{'DATASET-EDITOR.FIELDS.EXTERNAL-DATASETS' | translate}}" [parentTemplate]='externalDatasetsTemplate' [displayFunction]='externalDatasetDisplayFunc' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc' [formGroup]="formGroup.get('externalDatasets')" [viewOnly]='viewOnly' [autoCompleteConfiguration]="externalDatasetAutoCompleteConfiguration" (onItemChange)="externalDatasetsOnItemChange($event)">
|
||||||
[parentTemplate]='externalDatasetsTemplate' [displayFunction]='externalDatasetDisplayFunc' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc'
|
|
||||||
[formGroup]="formGroup.get('externalDatasets')" [viewOnly]='viewOnly' [autoCompleteConfiguration]="externalDatasetAutoCompleteConfiguration"
|
|
||||||
(onItemChange)="externalDatasetsOnItemChange($event)">
|
|
||||||
</app-external-item-listing>
|
</app-external-item-listing>
|
||||||
|
|
||||||
<ng-template #externalDatasetsTemplate let-suggestion let-i="index" let-callback="function">
|
<ng-template #externalDatasetsTemplate let-suggestion let-i="index" let-callback="function">
|
||||||
<div class="col-md-2">
|
<div class="col-12 row align-items-center">
|
||||||
|
<div class="col">
|
||||||
<p>
|
<p>
|
||||||
{{i+1}}) {{suggestion.get('label').value}}
|
{{i+1}}) {{suggestion.get('label').value}}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-auto">
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.EXTERNAL-DATASET-INFO' | translate}}" type="text" name="info"
|
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.EXTERNAL-DATASET-INFO' | translate}}" type="text" name="info" [formControl]="suggestion.get('info')">
|
||||||
[formControl]="suggestion.get('info')">
|
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-4">
|
<div class="col-auto">
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<mat-select placeholder="{{'DATASET-WIZARD.EDITOR.FIELDS.EXTERNAL-DATASET-TYPE' | translate}}" [formControl]="suggestion.get('type')">
|
<mat-select placeholder="{{'DATASET-WIZARD.EDITOR.FIELDS.EXTERNAL-DATASET-TYPE' | translate}}" [formControl]="suggestion.get('type')">
|
||||||
<mat-option [value]="0">{{'TYPES.EXTERNAL-DATASET-TYPE.SOURCE' | translate}}</mat-option>
|
<mat-option [value]="0">{{'TYPES.EXTERNAL-DATASET-TYPE.SOURCE' | translate}}</mat-option>
|
||||||
|
@ -129,130 +120,131 @@
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-auto">
|
||||||
<button mat-button (click)="callback(i)" *ngIf='!viewOnly'>
|
<button mat-icon-button (click)="callback(i)" *ngIf='!viewOnly'>
|
||||||
<mat-icon>close</mat-icon>
|
<mat-icon>close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
||||||
<mat-card>
|
<mat-card class="col-12 external-item-card">
|
||||||
<mat-card-header>
|
<div class="row">
|
||||||
<mat-card-title class="thick" *ngIf='!viewOnly'>
|
<div class="col-12 row" *ngIf='!viewOnly'>
|
||||||
{{'DATASET-EDITOR.FIELDS.REGISTRIES' | translate}}
|
<h4 class="col-auto">{{'DATASET-EDITOR.FIELDS.REGISTRIES' | translate}}</h4>
|
||||||
<button mat-raised-button color="primary" (click)="addRegistry()">
|
<div class="col"></div>
|
||||||
|
<div class="col-auto"><button mat-raised-button color="primary" (click)="addRegistry()">
|
||||||
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
||||||
</button>
|
</button>
|
||||||
</mat-card-title>
|
</div>
|
||||||
</mat-card-header>
|
</div>
|
||||||
<app-external-item-listing *ngIf="formGroup.get('registries') && registriesTemplate && externalSourcesConfiguration"
|
</div>
|
||||||
[options]="externalSourcesConfiguration.registries" placeholder="{{'DATASET-EDITOR.FIELDS.REGISTRIES' | translate}}"
|
<app-external-item-listing class="col-12" *ngIf="formGroup.get('registries') && registriesTemplate && externalSourcesConfiguration" [options]="externalSourcesConfiguration.registries" placeholder="{{'DATASET-EDITOR.FIELDS.REGISTRIES' | translate}}" [parentTemplate]='registriesTemplate' [displayFunction]='registriesDisplayFunc' [formGroup]="formGroup.get('registries')" [viewOnly]='viewOnly' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc' [autoCompleteConfiguration]="registriesAutoCompleteConfiguration" (onItemChange)="registriesOnItemChange($event)">
|
||||||
[parentTemplate]='registriesTemplate' [displayFunction]='registriesDisplayFunc' [formGroup]="formGroup.get('registries')"
|
|
||||||
[viewOnly]='viewOnly' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc' [autoCompleteConfiguration]="registriesAutoCompleteConfiguration"
|
|
||||||
(onItemChange)="registriesOnItemChange($event)">
|
|
||||||
</app-external-item-listing>
|
</app-external-item-listing>
|
||||||
|
|
||||||
<ng-template #registriesTemplate let-suggestion let-i="index" let-callback="function">
|
<ng-template #registriesTemplate let-suggestion let-i="index" let-callback="function">
|
||||||
<div class="col-md-2">
|
<div class="col-12 row align-items-center">
|
||||||
|
<div class="col">
|
||||||
<p>
|
<p>
|
||||||
{{i+1}}) {{suggestion.get('label').value}}
|
{{i+1}}) {{suggestion.get('label').value}}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-10">
|
<div class="col-auto">
|
||||||
<button mat-button (click)="callback(i)" *ngIf='!viewOnly'>
|
<button mat-icon-button (click)="callback(i)" *ngIf='!viewOnly'>
|
||||||
<mat-icon>close</mat-icon>
|
<mat-icon>close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
||||||
<mat-card>
|
<mat-card class="col-12 external-item-card">
|
||||||
<mat-card-header>
|
<div class="row">
|
||||||
<mat-card-title class="thick" *ngIf='!viewOnly'>
|
<div class="col-12 row" *ngIf='!viewOnly'>
|
||||||
{{'DATASET-EDITOR.FIELDS.SERVICES' | translate}}
|
<h4 class="col-auto">{{'DATASET-EDITOR.FIELDS.SERVICES' | translate}}</h4>
|
||||||
|
<div class="col"></div>
|
||||||
|
<div class="col-auto">
|
||||||
<button mat-raised-button color="primary" (click)="addService()">
|
<button mat-raised-button color="primary" (click)="addService()">
|
||||||
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
{{'DATASET-EDITOR.FIELDS.CREATE'|translate}}
|
||||||
</button>
|
</button>
|
||||||
</mat-card-title>
|
</div>
|
||||||
</mat-card-header>
|
</div>
|
||||||
<app-external-item-listing *ngIf="formGroup.get('services') && servicesTemplate && externalSourcesConfiguration"
|
</div>
|
||||||
[options]="externalSourcesConfiguration.services" placeholder="{{'DATASET-EDITOR.FIELDS.SERVICES' | translate}}"
|
<app-external-item-listing class="col-12" *ngIf="formGroup.get('services') && servicesTemplate && externalSourcesConfiguration" [options]="externalSourcesConfiguration.services" placeholder="{{'DATASET-EDITOR.FIELDS.SERVICES' | translate}}" [parentTemplate]='servicesTemplate' [displayFunction]='servicesDisplayFunc' [formGroup]="formGroup.get('services')" [viewOnly]='viewOnly' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc' [autoCompleteConfiguration]="servicesAutoCompleteConfiguration" (onItemChange)="servicesOnItemChange($event)">
|
||||||
[parentTemplate]='servicesTemplate' [displayFunction]='servicesDisplayFunc' [formGroup]="formGroup.get('services')"
|
|
||||||
[viewOnly]='viewOnly' [subtitleFunction]='dataRepositoryDisplaySubtitleFunc' [autoCompleteConfiguration]="servicesAutoCompleteConfiguration"
|
|
||||||
(onItemChange)="servicesOnItemChange($event)">
|
|
||||||
</app-external-item-listing>
|
</app-external-item-listing>
|
||||||
|
|
||||||
<ng-template #servicesTemplate let-suggestion let-i="index" let-callback="function">
|
<ng-template #servicesTemplate let-suggestion let-i="index" let-callback="function">
|
||||||
<div class="col-md-2">
|
<div class="col-12 row align-items-center">
|
||||||
|
<div class="col">
|
||||||
<p>
|
<p>
|
||||||
{{i+1}}) {{suggestion.get('label').value}}
|
{{i+1}}) {{suggestion.get('label').value}}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-10">
|
<div class="col-auto">
|
||||||
<button mat-button (click)="callback(i)" *ngIf='!viewOnly'>
|
<button mat-icon-button (click)="callback(i)" *ngIf='!viewOnly'>
|
||||||
<mat-icon>close</mat-icon>
|
<mat-icon>close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
||||||
<mat-card>
|
<mat-card class="col-12 external-item-card">
|
||||||
<mat-card-header>
|
<div class="row">
|
||||||
<mat-card-title class="thick">
|
<div class="col-12 row">
|
||||||
{{'DATASET-EDITOR.FIELDS.TAGS' | translate}}
|
<h4 class="col-auto">{{'DATASET-EDITOR.FIELDS.TAGS' | translate}}</h4>
|
||||||
</mat-card-title>
|
</div>
|
||||||
</mat-card-header>
|
</div>
|
||||||
<app-external-item-listing *ngIf="formGroup.get('tags') && tagsTemplate && externalSourcesConfiguration"
|
<app-external-item-listing *ngIf="formGroup.get('tags') && tagsTemplate && externalSourcesConfiguration" [options]="externalSourcesConfiguration.tags" placeholder="{{'DATASET-EDITOR.FIELDS.TAGS' | translate}}" [parentTemplate]='tagsTemplate' [displayFunction]='tagsDisplayFunc' [formGroup]="formGroup.get('tags')" [viewOnly]='viewOnly' [subtitleFunction]='tagsDisplaySubtitleFunc' [autoCompleteConfiguration]="tagsAutoCompleteConfiguration" (onItemChange)="tagsOnItemChange($event)">
|
||||||
[options]="externalSourcesConfiguration.tags" placeholder="{{'DATASET-EDITOR.FIELDS.TAGS' | translate}}"
|
|
||||||
[parentTemplate]='tagsTemplate' [displayFunction]='tagsDisplayFunc' [formGroup]="formGroup.get('tags')"
|
|
||||||
[viewOnly]='viewOnly' [subtitleFunction]='tagsDisplaySubtitleFunc' [autoCompleteConfiguration]="tagsAutoCompleteConfiguration"
|
|
||||||
(onItemChange)="tagsOnItemChange($event)">
|
|
||||||
</app-external-item-listing>
|
</app-external-item-listing>
|
||||||
|
|
||||||
<ng-template #tagsTemplate let-suggestion let-i="index" let-callback="function">
|
<ng-template #tagsTemplate let-suggestion let-i="index" let-callback="function">
|
||||||
<div class="col-md-2">
|
<div class="col-12 row align-items-center">
|
||||||
|
<div class="col">
|
||||||
<p>
|
<p>
|
||||||
{{i+1}}) {{suggestion.get('name').value}}
|
{{i+1}}) {{suggestion.get('name').value}}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-10">
|
<div class="col-auto">
|
||||||
<button mat-button (click)="callback(i)" *ngIf='!viewOnly'>
|
<button mat-icon-button (click)="callback(i)" *ngIf='!viewOnly'>
|
||||||
<mat-icon>close</mat-icon>
|
<mat-icon>close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
</div>
|
||||||
<div class="navigation-buttons-container">
|
<div class="row external-item-action-row">
|
||||||
<button matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK' | translate}}</button>
|
<button class="col-auto" matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK' | translate}}</button>
|
||||||
<button matStepperNext mat-raised-button color="primary" style="float:right;" (click)="getDefinition()">{{'DATASET-WIZARD.ACTIONS.NEXT'
|
<div class="col"></div>
|
||||||
| translate}}</button>
|
<button class="col-auto" matStepperNext mat-raised-button color="primary" (click)="getDefinition()">{{'DATASET-WIZARD.ACTIONS.NEXT' | translate}}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
|
||||||
</mat-step>
|
</mat-step>
|
||||||
<mat-step>
|
<mat-step class="step-container">
|
||||||
<div *ngIf="this.isActiveStep(2)">
|
|
||||||
<ng-template matStepLabel>{{'DATASET-WIZARD.THIRD-STEP.TITLE' | translate}}</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.THIRD-STEP.TITLE' | translate}}</ng-template>
|
||||||
<app-dynamic-form class="full-width" *ngIf="formGroup && datasetWizardModel && datasetWizardModel.datasetProfileDefinition"
|
<div *ngIf="this.isActiveStep(2)" class="row">
|
||||||
[form]="this.formGroup.get('datasetProfileDefinition')" [dataModel]="datasetWizardModel"></app-dynamic-form>
|
<app-dynamic-form class="col-12" *ngIf="formGroup && datasetWizardModel && datasetWizardModel.datasetProfileDefinition" [form]="this.formGroup.get('datasetProfileDefinition')" [dataModel]="datasetWizardModel"></app-dynamic-form>
|
||||||
<div class="navigation-buttons-container">
|
<div class="col-12 description-action-row">
|
||||||
<button style="margin-top:10px;" matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK'
|
<div class="row">
|
||||||
| translate}}</button>
|
<div class="col-auto"><button matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK' | translate}}</button></div>
|
||||||
|
<!-- <div class="col"></div>
|
||||||
|
<div class="col-auto"><button matStepperNext mat-raised-button color="primary" (click)="getDefinition()">{{'DATASET-WIZARD.ACTIONS.NEXT' | translate}}</button></div> -->
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</mat-step>
|
</mat-step>
|
||||||
<mat-step>
|
<!-- <mat-step class="step-container">
|
||||||
<div *ngIf="this.isActiveStep(3)">
|
|
||||||
<ng-template matStepLabel>{{'DATASET-WIZARD.FOURTH-STEP.TITLE' | translate}}</ng-template>
|
<ng-template matStepLabel>{{'DATASET-WIZARD.FOURTH-STEP.TITLE' | translate}}</ng-template>
|
||||||
<app-dynamic-form-pending-questions-display class="full-width" *ngIf="formGroup && datasetWizardModel && datasetWizardModel.datasetProfileDefinition"
|
<div *ngIf="this.isActiveStep(3)">
|
||||||
[form]="this.formGroup.get('datasetProfileDefinition')" [dataModel]="datasetWizardModel"></app-dynamic-form-pending-questions-display>
|
<app-dynamic-form-pending-questions-display class="full-width" *ngIf="formGroup && datasetWizardModel && datasetWizardModel.datasetProfileDefinition" [form]="this.formGroup.get('datasetProfileDefinition')" [dataModel]="datasetWizardModel"></app-dynamic-form-pending-questions-display>
|
||||||
<div class="navigation-buttons-container">
|
<div class="navigation-buttons-container">
|
||||||
<button style="margin-top:10px;" matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK'
|
<button style="margin-top:10px;" matStepperPrevious mat-raised-button color="primary">{{'DATASET-WIZARD.ACTIONS.BACK'
|
||||||
| translate}}</button>
|
| translate}}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</mat-step>
|
</mat-step> -->
|
||||||
</mat-horizontal-stepper>
|
</mat-horizontal-stepper>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,54 +1,14 @@
|
||||||
.full-width {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flex-container {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-table {
|
|
||||||
table-layout: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-card .mat-grid-tile {
|
|
||||||
background: rgba(0, 0, 0, 0.32);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataset-wizard {
|
.dataset-wizard {
|
||||||
.full-width {
|
.step-container {
|
||||||
width: 100%;
|
margin-top: 1em;
|
||||||
}
|
|
||||||
mat-form-field {
|
|
||||||
width: 100%;
|
|
||||||
padding: 3px;
|
|
||||||
}
|
|
||||||
td-chips {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
.navigation-buttons-container {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
.mat-card {
|
|
||||||
margin: 16px 0;
|
|
||||||
}
|
|
||||||
.fill-space {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 16px;
|
|
||||||
}
|
|
||||||
.left-button {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.description-area {
|
|
||||||
height: 100px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mat-card-title.thick {
|
.external-item-card {
|
||||||
font-weight: bold;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3{
|
.external-item-action-row,
|
||||||
margin-top: 0px;
|
.description-action-row {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { AfterViewInit, Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
|
import { AfterViewInit, Component, OnInit, ViewChild } from '@angular/core';
|
||||||
import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
||||||
import { MatDialog, MatSnackBar, MatStepper } from '@angular/material';
|
import { MatDialog, MatSnackBar, MatStepper } from '@angular/material';
|
||||||
import { ActivatedRoute, Params, Router } from '@angular/router';
|
import { ActivatedRoute, Params, Router } from '@angular/router';
|
||||||
|
@ -46,8 +46,7 @@ import { ServicesReferencedModelHelperComponent } from '../dataset-referenced-mo
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-dataset-wizard-component',
|
selector: 'app-dataset-wizard-component',
|
||||||
templateUrl: 'dataset-wizard.component.html',
|
templateUrl: 'dataset-wizard.component.html',
|
||||||
styleUrls: ['./dataset-wizard.component.scss'],
|
styleUrls: ['./dataset-wizard.component.scss']
|
||||||
encapsulation: ViewEncapsulation.None,
|
|
||||||
})
|
})
|
||||||
export class DatasetWizardComponent extends BaseComponent implements OnInit, AfterViewInit, IBreadCrumbComponent {
|
export class DatasetWizardComponent extends BaseComponent implements OnInit, AfterViewInit, IBreadCrumbComponent {
|
||||||
breadCrumbs: Observable<BreadcrumbItem[]>;
|
breadCrumbs: Observable<BreadcrumbItem[]>;
|
||||||
|
|
|
@ -1,28 +1,23 @@
|
||||||
<div class="project-editor">
|
|
||||||
<form *ngIf="formGroup" (ngSubmit)="formSubmit()" [formGroup]="formGroup">
|
<form *ngIf="formGroup" (ngSubmit)="formSubmit()" [formGroup]="formGroup">
|
||||||
|
<div class=" row project-editor">
|
||||||
|
|
||||||
<mat-form-field class="full-width">
|
<mat-form-field class="col-md-6">
|
||||||
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.NAME' | translate}}" type="text" name="label" formControlName="label"
|
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.NAME' | translate}}" type="text" name="label" formControlName="label" required>
|
||||||
required>
|
|
||||||
<mat-error *ngIf="formGroup.get('label').hasError('backendError')">{{baseErrorModel.label}}</mat-error>
|
<mat-error *ngIf="formGroup.get('label').hasError('backendError')">{{baseErrorModel.label}}</mat-error>
|
||||||
<mat-error *ngIf="formGroup.get('label').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="formGroup.get('label').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field class="full-width">
|
<mat-form-field class="col-md-6">
|
||||||
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.URI' | translate}}" type="text" name="uri" formControlName="uri">
|
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.URI' | translate}}" type="text" name="uri" formControlName="uri">
|
||||||
<mat-error *ngIf="formGroup.get('uri').hasError('backendError')">{{baseErrorModel.uri}}</mat-error>
|
<mat-error *ngIf="formGroup.get('uri').hasError('backendError')">{{baseErrorModel.uri}}</mat-error>
|
||||||
<mat-error *ngIf="formGroup.get('uri').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="formGroup.get('uri').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
|
|
||||||
<mat-form-field class="full-width">
|
<mat-form-field class="col-12">
|
||||||
<textarea matInput class="description-area" placeholder="{{'DATASET-EDITOR.FIELDS.DESCRIPTION' | translate}}"
|
<textarea matInput class="description-area" placeholder="{{'DATASET-EDITOR.FIELDS.DESCRIPTION' | translate}}" formControlName="description"></textarea>
|
||||||
formControlName="description"></textarea>
|
|
||||||
<mat-error *ngIf="formGroup.get('description').hasError('backendError')">{{errorModel.description}}</mat-error>
|
<mat-error *ngIf="formGroup.get('description').hasError('backendError')">{{errorModel.description}}</mat-error>
|
||||||
<mat-error *ngIf="formGroup.get('description').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="formGroup.get('description').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
|
|
||||||
</form>
|
|
||||||
<!-- <div *ngIf="formGroup"> {{ formGroup.value | json }}</div> -->
|
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
|
|
|
@ -1,24 +1,31 @@
|
||||||
<div class="data-management-plan-editor">
|
<div class="dmp-editor">
|
||||||
<div fxLayout="row" fxLayoutAlign="space-between center">
|
<div fxLayout="row" fxLayoutAlign="space-between center">
|
||||||
<mat-card-title *ngIf="isNew">{{'DMP-EDITOR.TITLE.NEW' | translate}}</mat-card-title>
|
<mat-card-title *ngIf="isNew">{{'DMP-EDITOR.TITLE.NEW' | translate}}</mat-card-title>
|
||||||
<mat-card-title *ngIf="!isNew">
|
<mat-card-title *ngIf="!isNew">
|
||||||
<h3>{{formGroup?.get('label')?.value}} </h3>
|
<h3>{{formGroup?.get('label')?.value}} </h3>
|
||||||
</mat-card-title>
|
</mat-card-title>
|
||||||
<button *ngIf="!editMode" mat-icon-button (click)="enableForm()">
|
|
||||||
<mat-icon class="mat-24">edit</mat-icon>
|
|
||||||
</button>
|
|
||||||
<button *ngIf="editMode" mat-icon-button (click)="disableForm()">
|
|
||||||
<mat-icon class="mat-24">lock</mat-icon>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<form *ngIf="formGroup" (ngSubmit)="formSubmit()" [formGroup]="formGroup">
|
<form *ngIf="formGroup" (ngSubmit)="formSubmit()" [formGroup]="formGroup">
|
||||||
<mat-card>
|
<mat-card>
|
||||||
<mat-card-header>
|
<mat-card-header>
|
||||||
<div class="fill-space"></div>
|
<div class="col-12 row">
|
||||||
<div *ngIf="!isNew">
|
<div class="col"></div>
|
||||||
<div>
|
<div *ngIf="!isNew" class="col-auto">
|
||||||
|
<div class="row actions-row">
|
||||||
|
<div class="col-auto" *ngIf="!editMode">
|
||||||
|
<button mat-icon-button (click)="enableForm()">
|
||||||
|
<mat-icon class="mat-24">edit</mat-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="col-auto" *ngIf="editMode">
|
||||||
|
<button mat-icon-button (click)="disableForm()">
|
||||||
|
<mat-icon class="mat-24">lock</mat-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="col-auto">
|
||||||
<button mat-button type="button" (click)="redirectToDatasets()">
|
<button mat-button type="button" (click)="redirectToDatasets()">
|
||||||
<mat-icon>arrow_right_alt</mat-icon>{{'DMP-EDITOR.ACTIONS.GO-TO-DATASETS' | translate}}
|
<mat-icon>arrow_right_alt</mat-icon>
|
||||||
|
<span>{{'DMP-EDITOR.ACTIONS.GO-TO-DATASETS' | translate}}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<mat-menu #actionsMenu="matMenu">
|
<mat-menu #actionsMenu="matMenu">
|
||||||
|
@ -41,42 +48,38 @@
|
||||||
<mat-icon>save_alt</mat-icon>{{'DMP-LISTING.ACTIONS.DOWNLOAD-PDF' | translate}}
|
<mat-icon>save_alt</mat-icon>{{'DMP-LISTING.ACTIONS.DOWNLOAD-PDF' | translate}}
|
||||||
</button>
|
</button>
|
||||||
</mat-menu>
|
</mat-menu>
|
||||||
<div>
|
<button mat-icon-button class="col-auto" type="button" [matMenuTriggerFor]="actionsMenu">
|
||||||
<button mat-icon-button type="button" [matMenuTriggerFor]="actionsMenu">
|
|
||||||
<mat-icon>more_vert</mat-icon>
|
<mat-icon>more_vert</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</mat-card-header>
|
</mat-card-header>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<mat-form-field class="col-md-12">
|
<mat-form-field class="col-md-12">
|
||||||
<input matInput placeholder="{{'DMP-EDITOR.FIELDS.NAME' | translate}}" type="text" name="label" formControlName="label"
|
<input matInput placeholder="{{'DMP-EDITOR.FIELDS.NAME' | translate}}" type="text" name="label" formControlName="label" required>
|
||||||
required>
|
|
||||||
<mat-error *ngIf="formGroup.get('label').hasError('backendError')">{{baseErrorModel.label}}</mat-error>
|
<mat-error *ngIf="formGroup.get('label').hasError('backendError')">{{baseErrorModel.label}}</mat-error>
|
||||||
<mat-error *ngIf="formGroup.get('label').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="formGroup.get('label').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field class="col-md-12">
|
<mat-form-field class="col-md-12">
|
||||||
<textarea matInput class="description-area" placeholder="{{'DMP-EDITOR.FIELDS.DESCRIPTION' | translate}}"
|
<textarea matInput class="description-area" placeholder="{{'DMP-EDITOR.FIELDS.DESCRIPTION' | translate}}" formControlName="description" required></textarea>
|
||||||
formControlName="description" required></textarea>
|
|
||||||
<mat-error *ngIf="formGroup.get('description').hasError('backendError')">{{errorModel.description}}</mat-error>
|
<mat-error *ngIf="formGroup.get('description').hasError('backendError')">{{errorModel.description}}</mat-error>
|
||||||
<mat-error *ngIf="formGroup.get('description').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="formGroup.get('description').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<app-single-auto-complete required='true' [reactiveFormControl]="formGroup.get('project')" placeholder="{{this.languageResolverService.getBy('dmpEditor') | translate}}"
|
<app-single-auto-complete required='true' [reactiveFormControl]="formGroup.get('project')" placeholder="{{this.languageResolverService.getBy('dmpEditor') | translate}}" [configuration]="projectAutoCompleteConfiguration">
|
||||||
[configuration]="projectAutoCompleteConfiguration">
|
|
||||||
</app-single-auto-complete>
|
</app-single-auto-complete>
|
||||||
</div>
|
</div>
|
||||||
<!-- <app-dynamic-fields-project [formGroup]="formGroup"></app-dynamic-fields-project> -->
|
<!-- <app-dynamic-fields-project [formGroup]="formGroup"></app-dynamic-fields-project> -->
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<app-multiple-auto-complete required='true' class="col-md-10" [reactiveFormControl]="formGroup.get('profiles')"
|
<app-multiple-auto-complete required='true' class="col-md-10" [reactiveFormControl]="formGroup.get('profiles')" placeholder="{{'DMP-EDITOR.FIELDS.PROFILES' | translate}}" [configuration]="profilesAutoCompleteConfiguration">
|
||||||
placeholder="{{'DMP-EDITOR.FIELDS.PROFILES' | translate}}" [configuration]="profilesAutoCompleteConfiguration">
|
|
||||||
</app-multiple-auto-complete>
|
</app-multiple-auto-complete>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<button mat-icon-button type="button" (click)="availableProfiles()">
|
<button mat-icon-button type="button" [disabled]="formGroup.get('profiles').disabled" (click)="availableProfiles()">
|
||||||
<mat-icon>view_list</mat-icon>
|
<mat-icon>view_list</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -86,38 +89,34 @@
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<app-multiple-auto-complete [reactiveFormControl]="formGroup.get('organisations')" placeholder="{{'DMP-EDITOR.FIELDS.ORGANISATIONS' | translate}}"
|
<app-multiple-auto-complete [reactiveFormControl]="formGroup.get('organisations')" placeholder="{{'DMP-EDITOR.FIELDS.ORGANISATIONS' | translate}}" [configuration]="organisationsAutoCompleteConfiguration">
|
||||||
[configuration]="organisationsAutoCompleteConfiguration">
|
|
||||||
</app-multiple-auto-complete>
|
</app-multiple-auto-complete>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-10">
|
<div class="col-md-10">
|
||||||
<app-multiple-auto-complete [reactiveFormControl]="formGroup.get('researchers')" placeholder="{{'DMP-EDITOR.FIELDS.RESEARCHERS' | translate}}"
|
<app-multiple-auto-complete [reactiveFormControl]="formGroup.get('researchers')" placeholder="{{'DMP-EDITOR.FIELDS.RESEARCHERS' | translate}}" [configuration]="researchersAutoCompleteConfiguration">
|
||||||
[configuration]="researchersAutoCompleteConfiguration">
|
|
||||||
</app-multiple-auto-complete>
|
</app-multiple-auto-complete>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<button mat-icon-button type="button" (click)="addResearcher()">
|
<button mat-icon-button [disabled]="formGroup.get('researchers').disabled" type="button" (click)="addResearcher()">
|
||||||
<mat-icon>add_circle</mat-icon>
|
<mat-icon>add_circle</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3 mat-subheader class="col-md-12">{{'DMP-EDITOR.FIELDS.PROFILE' | translate}}</h3>
|
<!-- <h3 mat-subheader class="col-md-12">{{'DMP-EDITOR.FIELDS.PROFILE' | translate}}</h3>
|
||||||
|
|
||||||
<mat-form-field class="col-md-6">
|
<mat-form-field class="col-md-6">
|
||||||
<input type="text" placeholder="{{'DMP-EDITOR.FIELDS.PROFILE' | translate}}" [formControl]="textCtrl" matInput
|
<input type="text" placeholder="{{'DMP-EDITOR.FIELDS.PROFILE' | translate}}" [formControl]="textCtrl" matInput [matAutocomplete]="auto">
|
||||||
[matAutocomplete]="auto">
|
|
||||||
<mat-autocomplete #auto="matAutocomplete" [displayWith]="displayWith">
|
<mat-autocomplete #auto="matAutocomplete" [displayWith]="displayWith">
|
||||||
<mat-option *ngFor="let option of filteredOptions | async" [value]="option" (click)="selectOption(option)">
|
<mat-option *ngFor="let option of filteredOptions | async" [value]="option" (click)="selectOption(option)">
|
||||||
{{ option.label }}
|
{{ option.label }}
|
||||||
</mat-option>
|
</mat-option>
|
||||||
</mat-autocomplete>
|
</mat-autocomplete>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
<app-dynamic-dmp-field-resolver class="col-md-12" *ngIf="dataManagementPlan.definition" [formGroup]="formGroup"
|
<app-dynamic-dmp-field-resolver class="col-md-12" *ngIf="dataManagementPlan.definition" [formGroup]="formGroup" [dataManagementPlanProfile]="dataManagementPlan.definition"></app-dynamic-dmp-field-resolver> -->
|
||||||
[dataManagementPlanProfile]="dataManagementPlan.definition"></app-dynamic-dmp-field-resolver>
|
|
||||||
|
|
||||||
<mat-form-field class="col-md-6">
|
<mat-form-field class="col-md-6">
|
||||||
<input matInput placeholder="Version" disabled [value]="formGroup.get('version').value== undefined ?0 :formGroup.get('version').value">
|
<input matInput placeholder="Version" disabled [value]="formGroup.get('version').value== undefined ?0 :formGroup.get('version').value">
|
||||||
|
@ -134,16 +133,12 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="right-button">
|
<div class="row">
|
||||||
<button mat-raised-button color="primary" (click)="cancel()" type="button">{{'DMP-EDITOR.ACTIONS.CANCEL' |
|
<div class="col-auto"><button mat-raised-button color="primary" (click)="cancel()" type="button">{{'DMP-EDITOR.ACTIONS.CANCEL' | translate}}</button></div>
|
||||||
translate}}</button>
|
<div class="col"></div>
|
||||||
<button *ngIf="this.formGroup.enabled" mat-raised-button color="primary" type="submit">{{'DMP-EDITOR.ACTIONS.SAVE'
|
<div class="col-auto" *ngIf="!isNew && this.formGroup.enabled"><button mat-raised-button color="primary" type="button" (click)="openConfirm(formGroup.get('label').value, formGroup.get('id').value)">{{'DMP-EDITOR.ACTIONS.DELETE' | translate}}</button></div>
|
||||||
| translate}}</button>
|
<div class="col-auto" *ngIf="this.formGroup.enabled"><button mat-raised-button color="primary" type="submit">{{'DMP-EDITOR.ACTIONS.SAVE' | translate}}</button></div>
|
||||||
<button *ngIf="dataManagementPlan.lockable && this.formGroup.enabled" type="button" mat-raised-button color="primary"
|
<div class="col-auto" *ngIf="dataManagementPlan.lockable && this.formGroup.enabled"><button type="button" mat-raised-button color="primary" (click)="saveAndFinalize()">{{'DMP-EDITOR.ACTIONS.FINALISE' | translate}}</button></div>
|
||||||
(click)="saveAndFinalize()">{{'DMP-EDITOR.ACTIONS.FINALISE'
|
|
||||||
| translate}}</button>
|
|
||||||
<button *ngIf="!isNew && this.formGroup.enabled" mat-raised-button color="primary" type="button" (click)="openConfirm(formGroup.get('label').value, formGroup.get('id').value)">{{'DMP-EDITOR.ACTIONS.DELETE'
|
|
||||||
| translate}}</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,32 +1,3 @@
|
||||||
.input-table {
|
.dmp-editor {
|
||||||
table-layout: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-card .mat-grid-tile {
|
|
||||||
background: rgba(0, 0, 0, 0.32);
|
|
||||||
}
|
|
||||||
|
|
||||||
.data-management-plan-editor {
|
|
||||||
.fill-space {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.mat-card {
|
|
||||||
margin: 16px 0;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 16px;
|
|
||||||
}
|
|
||||||
.left-button {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.right-button {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
.description-area {
|
|
||||||
height: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h3{
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,7 @@ import { IBreadCrumbComponent } from '../../shared/components/breadcrumb/definit
|
||||||
import { SnackBarNotificationComponent } from '../../shared/components/notificaiton/snack-bar-notification.component';
|
import { SnackBarNotificationComponent } from '../../shared/components/notificaiton/snack-bar-notification.component';
|
||||||
import { JsonSerializer } from '../../utilities/JsonSerializer';
|
import { JsonSerializer } from '../../utilities/JsonSerializer';
|
||||||
import { DMPFinaliseDialogComponent } from './dmp-finalise-dialog/dmp-finalise-dialog.component';
|
import { DMPFinaliseDialogComponent } from './dmp-finalise-dialog/dmp-finalise-dialog.component';
|
||||||
|
import { Status } from '../../models/Status';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-dmp-editor-component',
|
selector: 'app-dmp-editor-component',
|
||||||
|
@ -43,7 +44,7 @@ import { DMPFinaliseDialogComponent } from './dmp-finalise-dialog/dmp-finalise-d
|
||||||
})
|
})
|
||||||
export class DataManagementPlanEditorComponent extends BaseComponent implements AfterViewInit, IBreadCrumbComponent {
|
export class DataManagementPlanEditorComponent extends BaseComponent implements AfterViewInit, IBreadCrumbComponent {
|
||||||
|
|
||||||
editMode = true;
|
editMode = false;
|
||||||
|
|
||||||
breadCrumbs: Observable<BreadcrumbItem[]>;
|
breadCrumbs: Observable<BreadcrumbItem[]>;
|
||||||
isNew = true;
|
isNew = true;
|
||||||
|
@ -140,8 +141,7 @@ export class DataManagementPlanEditorComponent extends BaseComponent implements
|
||||||
.subscribe(async data => {
|
.subscribe(async data => {
|
||||||
this.dataManagementPlan = JsonSerializer.fromJSONObject(data, DataManagementPlanModel);
|
this.dataManagementPlan = JsonSerializer.fromJSONObject(data, DataManagementPlanModel);
|
||||||
this.formGroup = this.dataManagementPlan.buildForm();
|
this.formGroup = this.dataManagementPlan.buildForm();
|
||||||
this.editMode = this.dataManagementPlan.status !== 1;
|
if (!this.editMode || this.dataManagementPlan.status === Status.Inactive) { this.formGroup.disable(); }
|
||||||
if (!this.editMode) { this.formGroup.disable(); }
|
|
||||||
if (this.formGroup.get('profile') && this.formGroup.get('profile').value) {
|
if (this.formGroup.get('profile') && this.formGroup.get('profile').value) {
|
||||||
this.textCtrl.patchValue(this.formGroup.get('profile').value);
|
this.textCtrl.patchValue(this.formGroup.get('profile').value);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
.full-width {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-table {
|
|
||||||
table-layout: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-card .mat-grid-tile {
|
|
||||||
background: rgba(0, 0, 0, 0.32);
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<app-auto-complete class="mat-form-field-full-width" placeholder="{{ form.get('data').value.label | translate }}" [inputData]="autoCompleteConfiguration"
|
<app-auto-complete placeholder="{{ form.get('data').value.label | translate }}" [inputData]="autoCompleteConfiguration"
|
||||||
titleKey="label" [formCtrl]="form.get('value')" [displayFunction]="displayWith.bind(this)" [assignValueFunction]="assign.bind(this)">
|
titleKey="label" [formCtrl]="form.get('value')" [displayFunction]="displayWith.bind(this)" [assignValueFunction]="assign.bind(this)">
|
||||||
</app-auto-complete>
|
</app-auto-complete>
|
|
@ -1,11 +1,10 @@
|
||||||
import { Field } from '../../../models/Field';
|
import { Component, Input, OnInit } from '@angular/core';
|
||||||
import { Component, OnInit, Input, Output, EventEmitter, forwardRef, ViewEncapsulation } from '@angular/core';
|
import { FormGroup } from '@angular/forms';
|
||||||
import { ControlValueAccessor, FormControl, FormGroup, NG_VALUE_ACCESSOR, Validators } from '@angular/forms';
|
|
||||||
import { DatasetProfileService } from '../../../services/dataset-profile.service';
|
|
||||||
import { ActivatedRoute } from '@angular/router';
|
import { ActivatedRoute } from '@angular/router';
|
||||||
import { RequestItem } from '../../../models/criteria/RequestItem';
|
|
||||||
import { BaseCriteria } from '../../../models/criteria/BaseCriteria';
|
|
||||||
import { AutocompleteLookupItem } from '../../../models/auto-complete/AutocompleteLookupItem';
|
import { AutocompleteLookupItem } from '../../../models/auto-complete/AutocompleteLookupItem';
|
||||||
|
import { RequestItem } from '../../../models/criteria/RequestItem';
|
||||||
|
import { Field } from '../../../models/Field';
|
||||||
|
import { DatasetProfileService } from '../../../services/dataset-profile.service';
|
||||||
import { AutoCompleteConfiguration } from '../../../shared/components/auto-complete/AutoCompleteConfiguration';
|
import { AutoCompleteConfiguration } from '../../../shared/components/auto-complete/AutoCompleteConfiguration';
|
||||||
declare var $: any;
|
declare var $: any;
|
||||||
|
|
||||||
|
@ -13,8 +12,7 @@ declare var $: any;
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-df-autocomplete',
|
selector: 'app-df-autocomplete',
|
||||||
templateUrl: './autocomplete-remote.component.html',
|
templateUrl: './autocomplete-remote.component.html',
|
||||||
styleUrls: ['./autocomplete-remote.component.css'],
|
styleUrls: ['./autocomplete-remote.component.css']
|
||||||
encapsulation: ViewEncapsulation.None,
|
|
||||||
})
|
})
|
||||||
export class AutocompleteRemoteComponent implements OnInit/* , ControlValueAccessor */ {
|
export class AutocompleteRemoteComponent implements OnInit/* , ControlValueAccessor */ {
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
.radio-label {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
|
@ -1,7 +1,5 @@
|
||||||
<div [formGroup]="form">
|
<mat-radio-group [formControl]="form.get('value')" [required]="field.validationRequired" style="display:inline-flex">
|
||||||
<mat-radio-group formControlName="value" [required]="field.validationRequired" style="display:inline-flex">
|
|
||||||
<mat-radio-button style="margin-right:15px;" name="{{field.id}}" value="true">Yes</mat-radio-button>
|
<mat-radio-button style="margin-right:15px;" name="{{field.id}}" value="true">Yes</mat-radio-button>
|
||||||
<br>
|
<br>
|
||||||
<mat-radio-button name="{{field.id}}" value="false">No</mat-radio-button>
|
<mat-radio-button name="{{field.id}}" value="false">No</mat-radio-button>
|
||||||
</mat-radio-group>
|
</mat-radio-group>
|
||||||
</div>
|
|
|
@ -1,7 +0,0 @@
|
||||||
.checkbox-label {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.checkbox-icon {
|
|
||||||
margin-left: 0px;
|
|
||||||
}
|
|
|
@ -1,6 +1 @@
|
||||||
<div [formGroup]="form" class="form-group">
|
<mat-checkbox [formControl]="form.get('value')" [required]="field.validationRequired">{{field.data.label}}</mat-checkbox>
|
||||||
<mat-checkbox formControlName="value" [required]="field.validationRequired">{{field.data.label}}</mat-checkbox>
|
|
||||||
<!-- <input type="checkbox" formControlName="value"> -->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- label="{{field.data.label}}" formControlName="form.get('value').value"-->
|
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
import { Field } from '../../../models/Field';
|
import { Component, Input, OnInit } from '@angular/core';
|
||||||
import { FormGroup } from '@angular/forms';
|
import { FormGroup } from '@angular/forms';
|
||||||
import { Component, Input, ViewEncapsulation, OnInit } from '@angular/core';
|
import { Field } from '../../../models/Field';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-df-checkbox',
|
selector: 'app-df-checkbox',
|
||||||
templateUrl: './dynamic-field-checkbox.html',
|
templateUrl: './dynamic-field-checkbox.html',
|
||||||
styleUrls: [
|
styleUrls: [
|
||||||
'./dynamic-field-checkbox.css'
|
'./dynamic-field-checkbox.css'
|
||||||
],
|
]
|
||||||
encapsulation: ViewEncapsulation.None
|
|
||||||
})
|
})
|
||||||
export class DynamicFieldCheckBoxComponent implements OnInit {
|
export class DynamicFieldCheckBoxComponent implements OnInit {
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
.dynamic-field-dropdown {
|
||||||
|
width: 100%;
|
||||||
|
}
|
|
@ -1,9 +1,6 @@
|
||||||
<div [formGroup]="form">
|
<mat-form-field class="dynamic-field-dropdown">
|
||||||
<mat-form-field>
|
<mat-select [formControl]="form.get('value')" [required]="field.validationRequired">
|
||||||
<mat-select formControlName="value" [required]="field.validationRequired">
|
|
||||||
<mat-option *ngFor="let opt of field.data.options" [value]="assign(opt)">{{opt.label}}</mat-option>
|
<mat-option *ngFor="let opt of field.data.options" [value]="assign(opt)">{{opt.label}}</mat-option>
|
||||||
</mat-select>
|
</mat-select>
|
||||||
<mat-error *ngIf="form.get('value').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="form.get('value').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -7,8 +7,7 @@ import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';
|
||||||
templateUrl: './dynamic-field-dropdown.html',
|
templateUrl: './dynamic-field-dropdown.html',
|
||||||
styleUrls: [
|
styleUrls: [
|
||||||
'./dynamic-field-dropdown.css'
|
'./dynamic-field-dropdown.css'
|
||||||
],
|
]
|
||||||
encapsulation: ViewEncapsulation.None
|
|
||||||
})
|
})
|
||||||
export class DynamicFieldDropdownComponent implements OnInit {
|
export class DynamicFieldDropdownComponent implements OnInit {
|
||||||
@Input() field: Field;
|
@Input() field: Field;
|
||||||
|
|
|
@ -1,18 +1,2 @@
|
||||||
.full-width {
|
.dynamic-form-field {
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.field-component {
|
|
||||||
/* border:1px solid grey;
|
|
||||||
border-radius: 2px;
|
|
||||||
padding: 10px;
|
|
||||||
margin-bottom: 10px; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.field-extended-desc {
|
|
||||||
color: lightslategray;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-left-margin {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
}
|
|
@ -1,23 +1,20 @@
|
||||||
<div *ngIf="form && field" [id]="field.id" [formGroup]="form" [ngSwitch]="field.viewStyle.renderStyle">
|
<div *ngIf="form && field" [id]="field.id" [formGroup]="form" [ngSwitch]="field.viewStyle.renderStyle" class="dynamic-form-field row">
|
||||||
|
|
||||||
<!-- <h5 *ngIf="field.title">{{field.title}}</h5> -->
|
<!-- <h5 *ngIf="field.title">{{field.title}}</h5> -->
|
||||||
|
|
||||||
|
|
||||||
<div [class.content-left-margin]="field.title">
|
<h5 *ngIf="field.description" class="col-12">{{field.description}}</h5>
|
||||||
<h5 *ngIf="field.description">{{field.description}}</h5>
|
<h5 *ngIf="field.extendedDescription" class="col-12">
|
||||||
<h5 *ngIf="field.extendedDescription" class="field-extended-desc">
|
|
||||||
<i>{{field.extendedDescription}}</i>
|
<i>{{field.extendedDescription}}</i>
|
||||||
</h5>
|
</h5>
|
||||||
|
|
||||||
<div *ngSwitchCase="'freetext'">
|
<mat-form-field *ngSwitchCase="'freetext'" class="col-12">
|
||||||
<mat-form-field>
|
|
||||||
<input matInput formControlName="value" placeholder="{{field.data.label}}" [required]="field.validationRequired">
|
<input matInput formControlName="value" placeholder="{{field.data.label}}" [required]="field.validationRequired">
|
||||||
<mat-error *ngIf="form.get('value')['errors'] && form.get('value')['errors']['required']">{{'GENERAL.VALIDATION.REQUIRED'
|
<mat-error *ngIf="form.get('value')['errors'] && form.get('value')['errors']['required']">{{'GENERAL.VALIDATION.REQUIRED'
|
||||||
| translate}}</mat-error>
|
| translate}}</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngSwitchCase="'combobox'">
|
<div *ngSwitchCase="'combobox'" class="col-12">
|
||||||
<!--TODO-->
|
<!--TODO-->
|
||||||
<div *ngIf="this.field.data.type === 'autocomplete'">
|
<div *ngIf="this.field.data.type === 'autocomplete'">
|
||||||
<app-df-autocomplete [form]="form" [field]="field"></app-df-autocomplete>
|
<app-df-autocomplete [form]="form" [field]="field"></app-df-autocomplete>
|
||||||
|
@ -27,37 +24,22 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div *ngSwitchCase="'checkBox'" class="checkbox">
|
<app-df-checkbox *ngSwitchCase="'checkBox'" class="checkbox" class="col-12" [form]="form" [field]="field"></app-df-checkbox>
|
||||||
<app-df-checkbox [form]="form" [field]="field"></app-df-checkbox>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngSwitchCase="'textarea'">
|
|
||||||
<mat-form-field>
|
|
||||||
<textarea matInput formControlName="value" matTextareaAutosize matAutosizeMinRows="2" matAutosizeMaxRows="10"
|
|
||||||
[required]="field.validationRequired">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<mat-form-field *ngSwitchCase="'textarea'" class="col-12">
|
||||||
|
<textarea matInput formControlName="value" matTextareaAutosize matAutosizeMinRows="2" matAutosizeMaxRows="10" [required]="field.validationRequired">
|
||||||
</textarea>
|
</textarea>
|
||||||
<button mat-button *ngIf="!form.get('value').disabled && form.get('value').value" matSuffix mat-icon-button
|
<button mat-button *ngIf="!form.get('value').disabled && form.get('value').value" matSuffix mat-icon-button aria-label="Clear" (click)="this.form.patchValue({'value': ''})">
|
||||||
aria-label="Clear" (click)="this.form.patchValue({'value': ''})">
|
|
||||||
<mat-icon>close</mat-icon>
|
<mat-icon>close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<mat-error *ngIf="form.get('value')['errors'] && form.get('value')['errors']['required']">{{'GENERAL.VALIDATION.REQUIRED'
|
<mat-error *ngIf="form.get('value')['errors'] && form.get('value')['errors']['required']">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
| translate}}</mat-error>
|
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
</div>
|
<app-df-boolean-decision *ngSwitchCase="'booleanDecision'" class="col-12" [form]="form" [field]="field"></app-df-boolean-decision>
|
||||||
|
|
||||||
<div *ngSwitchCase="'booleanDecision'">
|
<app-df-radiobox *ngSwitchCase="'radiobox'" class="col-12" [form]="form" [field]="field"></app-df-radiobox>
|
||||||
<app-df-boolean-decision [form]="form" [field]="field"></app-df-boolean-decision>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngSwitchCase="'radiobox'">
|
<div *ngSwitchCase="'label'" class="col-12"> </div>
|
||||||
<app-df-radiobox [form]="form" [field]="field"></app-df-radiobox>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngSwitchCase="'label'"> </div>
|
|
||||||
|
|
||||||
|
|
||||||
<!--<div [hidden]="isValid">
|
<!--<div [hidden]="isValid">
|
||||||
|
@ -68,7 +50,6 @@
|
||||||
</div>-->
|
</div>-->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- <div [formGroup]="form" class="form-group">
|
<!-- <div [formGroup]="form" class="form-group">
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,7 @@ import { VisibilityRulesService } from '../../utilities/visibility-rules/visibil
|
||||||
// styles: ['.checkBoxLabelCustom {font-weight: 700;}']
|
// styles: ['.checkBoxLabelCustom {font-weight: 700;}']
|
||||||
styleUrls: [
|
styleUrls: [
|
||||||
'./dynamic-form-field.component.css'
|
'./dynamic-form-field.component.css'
|
||||||
],
|
]
|
||||||
encapsulation: ViewEncapsulation.None
|
|
||||||
})
|
})
|
||||||
export class DynamicFormFieldComponent extends BaseComponent implements OnInit, OnChanges, OnDestroy {
|
export class DynamicFormFieldComponent extends BaseComponent implements OnInit, OnChanges, OnDestroy {
|
||||||
@Input() field: Field;
|
@Input() field: Field;
|
||||||
|
|
|
@ -1,18 +1,3 @@
|
||||||
.full-width {
|
.dynamic-form-composite-field {
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fieldset-component {
|
|
||||||
/* border:1px solid grey;
|
|
||||||
border-radius: 2px;
|
|
||||||
padding: 10px;
|
|
||||||
margin-bottom: 10px; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.fieldset-extended-desc {
|
|
||||||
color: lightslategray;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-left-margin {
|
|
||||||
/* margin-left: 10px; */
|
|
||||||
}
|
}
|
|
@ -1,47 +1,47 @@
|
||||||
<div *ngIf="form" [id]="compositeField.id" [formGroup]="form">
|
<div *ngIf="form" [id]="compositeField.id" [formGroup]="form" class="dynamic-form-composite-field row">
|
||||||
|
|
||||||
<div *ngIf="compositeField.fields.length == 1" class="fieldset-component">
|
<div *ngIf="compositeField.fields.length == 1" class="col-12">
|
||||||
<h5 *ngIf="compositeField.title" style="font-weight:bold; color: #3a3737;">{{compositeField.numbering}}
|
<div class="row">
|
||||||
|
<h5 *ngIf="compositeField.title" style="font-weight:bold; color: #3a3737;" class="col-12">{{compositeField.numbering}}
|
||||||
{{compositeField.title}}
|
{{compositeField.title}}
|
||||||
<a *ngIf="this.markForConsiderationService.exists(compositeField)" (click)="markForConsideration()" style="cursor: pointer">
|
<!-- <a *ngIf="this.markForConsiderationService.exists(compositeField)" (click)="markForConsideration()" style="cursor: pointer">
|
||||||
Mark For Consideration
|
Mark For Consideration
|
||||||
</a>
|
</a> -->
|
||||||
</h5>
|
</h5>
|
||||||
<div class="content-left-margin">
|
<h6 *ngIf="compositeField.description">{{compositeField.description}}</h6>
|
||||||
<h5 *ngIf="compositeField.description">{{compositeField.description}}</h5>
|
<h6 *ngIf="compositeField.extendedDescription" class="col-12">
|
||||||
<h5 *ngIf="compositeField.extendedDescription" class="fieldset-extended-desc">
|
<i>{{compositeField.extendedDescription}}</i>
|
||||||
|
</h6>
|
||||||
|
<app-df-field class="col-12" [field]="compositeField.fields[0]"></app-df-field>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="compositeField.fields.length > 1" class="col-12">
|
||||||
|
<div class="row">
|
||||||
|
<h5 *ngIf="compositeField.title" style="font-weight:bold; color: #3a3737;" class="col-12">{{compositeField.numbering}}{{compositeField.title}}</h5>
|
||||||
|
<div class="col-12">
|
||||||
|
<h5 *ngIf="compositeField.description" class="col-12">{{compositeField.description}}</h5>
|
||||||
|
<h5 *ngIf="compositeField.extendedDescription" class="col-12">
|
||||||
<i>{{compositeField.extendedDescription}}</i>
|
<i>{{compositeField.extendedDescription}}</i>
|
||||||
</h5>
|
</h5>
|
||||||
<app-df-field *ngIf="compositeField.fields.length == 1" [field]="compositeField.fields[0]"></app-df-field>
|
<div *ngFor="let field of compositeField.fields; let i = index; trackBy: trackByFn " class="col-12">
|
||||||
</div>
|
<div class="row">
|
||||||
|
<div class="col-12" *ngIf="(field?.multiplicity?.max - 1) > (field?.multiplicityItems?.length)">
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div *ngIf="compositeField.fields.length > 1" class="fieldset-component">
|
|
||||||
<h5 *ngIf="compositeField.title" style="font-weight:bold; color: #3a3737;">{{compositeField.numbering}}{{compositeField.title}}</h5>
|
|
||||||
<div class="content-left-margin">
|
|
||||||
<h5 *ngIf="compositeField.description">{{compositeField.description}}</h5>
|
|
||||||
<h5 *ngIf="compositeField.extendedDescription" class="fieldset-extended-desc">
|
|
||||||
<i>{{compositeField.extendedDescription}}</i>
|
|
||||||
</h5>
|
|
||||||
<div *ngFor="let field of compositeField.fields; let i = index; trackBy: trackByFn ">
|
|
||||||
<div>
|
|
||||||
<div *ngIf="(field?.multiplicity?.max - 1) > (field?.multiplicityItems?.length)">
|
|
||||||
<a (click)="addMultipleField(i)" style="cursor: pointer">
|
<a (click)="addMultipleField(i)" style="cursor: pointer">
|
||||||
Add one more field +
|
Add one more field +
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<app-df-field #{{}} [field]="field"></app-df-field>
|
<div class="row">
|
||||||
<div *ngIf="field">
|
<app-df-field #{{}} [field]="field" class="col-12"></app-df-field>
|
||||||
<div *ngFor="let multipleField of field.multiplicityItems; let j = index; trackBy: trackByFn">
|
<div *ngIf="field" class="col-12">
|
||||||
<app-df-field [field]="multipleField"></app-df-field>
|
<div *ngFor="let multipleField of field.multiplicityItems; let j = index; trackBy: trackByFn" class="row">
|
||||||
|
<app-df-field class="col-12" [field]="multipleField"></app-df-field>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,8 +10,7 @@ import { FormFocusService } from '../../utilities/form-focus-service/form-focus.
|
||||||
templateUrl: './dynamic-form-composite-field.html',
|
templateUrl: './dynamic-form-composite-field.html',
|
||||||
styleUrls: [
|
styleUrls: [
|
||||||
'./dynamic-form-composite-field.css'
|
'./dynamic-form-composite-field.css'
|
||||||
],
|
]
|
||||||
encapsulation: ViewEncapsulation.None,
|
|
||||||
})
|
})
|
||||||
export class DynamicFormCompositeFieldComponent implements OnInit {
|
export class DynamicFormCompositeFieldComponent implements OnInit {
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
import { VisibilityRulesService } from '../../utilities/visibility-rules/visibility-rules.service';
|
import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';
|
||||||
import { FieldGroup } from '../../models/FieldGroup';
|
import { FormArray, FormGroup } from '@angular/forms';
|
||||||
import { Component, Input, OnInit, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';
|
|
||||||
import { FormGroup, Validators, FormControl, FormArray } from '@angular/forms';
|
|
||||||
import { NgForm } from '@angular/forms';
|
|
||||||
import { CompositeField } from '../../models/CompositeField';
|
import { CompositeField } from '../../models/CompositeField';
|
||||||
|
import { FieldGroup } from '../../models/FieldGroup';
|
||||||
|
import { VisibilityRulesService } from '../../utilities/visibility-rules/visibility-rules.service';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
.section-component {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
|
@ -1,9 +1,9 @@
|
||||||
<div class="panel-group" style="margin-top:10px;">
|
<div class="dynamic-form-section row">
|
||||||
<mat-accordion>
|
<mat-accordion class="col-12">
|
||||||
<mat-expansion-panel expanded=true>
|
<mat-expansion-panel class="row expansion-panel" expanded=true>
|
||||||
<mat-expansion-panel-header>
|
<mat-expansion-panel-header>
|
||||||
<mat-panel-title>
|
<mat-panel-title>
|
||||||
{{section.numbering}} {{section.title}}
|
<h6>{{section.numbering}} {{section.title}}</h6>
|
||||||
</mat-panel-title>
|
</mat-panel-title>
|
||||||
<mat-panel-description>
|
<mat-panel-description>
|
||||||
<h3 *ngIf="section.description">{{section.description}}</h3>
|
<h3 *ngIf="section.description">{{section.description}}</h3>
|
||||||
|
@ -11,34 +11,31 @@
|
||||||
</mat-panel-description>
|
</mat-panel-description>
|
||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
|
|
||||||
<div *ngFor="let compositeField of section.compositeFields; let i = index; trackBy: trackByFn">
|
<div *ngFor="let compositeField of section.compositeFields; let i = index; trackBy: trackByFn" class="col-12">
|
||||||
<div *ngIf="isElementVisible(compositeField)">
|
<div *ngIf="isElementVisible(compositeField)" class="row">
|
||||||
<div *ngIf="(compositeField?.multiplicity?.max - 1) > (compositeField?.multiplicityItems?.length)">
|
<div *ngIf="(compositeField?.multiplicity?.max - 1) > (compositeField?.multiplicityItems?.length)" class="col-12">
|
||||||
<a (click)="addMultipleField(i)" style="cursor: pointer">
|
<button mat-button color="primary" (click)="addMultipleField(i)">
|
||||||
Add one more fieldset +
|
Add one more fieldset +
|
||||||
</a>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<app-df-composite-field [compositeField]="compositeField"></app-df-composite-field>
|
<app-df-composite-field class="col-12" [compositeField]="compositeField"></app-df-composite-field>
|
||||||
<div *ngIf="compositeField">
|
<div *ngIf="compositeField" class="col-12">
|
||||||
<div *ngFor="let multipleCompositeField of compositeField.multiplicityItems; let j = index; trackBy: trackByFn">
|
<div class="row">
|
||||||
<app-df-composite-field [compositeField]="multipleCompositeField"></app-df-composite-field>
|
<app-df-composite-field class="col-12" *ngFor="let multipleCompositeField of compositeField.multiplicityItems; let j = index; trackBy: trackByFn" [compositeField]="multipleCompositeField"></app-df-composite-field>
|
||||||
</div>
|
<mat-form-field *ngIf="compositeField.hasCommentField" class="col-12" [formGroup]="form.get('compositeFields').get(''+i)">
|
||||||
<div *ngIf="compositeField.hasCommentField" [formGroup]="form.get('compositeFields').get(''+i)">
|
|
||||||
<mat-form-field>
|
|
||||||
<input matInput formControlName="commentFieldValue" placeholder="comment">
|
<input matInput formControlName="commentFieldValue" placeholder="comment">
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
<div class="col"></div>
|
||||||
<button mat-icon-button type="button" (click)="next(compositeField)">
|
<button class="col-auto" mat-icon-button type="button" (click)="next(compositeField)">
|
||||||
<mat-icon>expand_more</mat-icon>
|
<mat-icon>expand_more</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div *ngIf="section?.sections">
|
<div *ngIf="section?.sections" class="col-12">
|
||||||
<div *ngFor="let itemsection of section.sections; let j = index;">
|
<div *ngFor="let itemsection of section.sections; let j = index;" class="row">
|
||||||
<app-df-section [section]="itemsection" [path]="path+'.'+(j+1)" [pathName]="pathName+'.sections.'+j"></app-df-section>
|
<app-df-section class="col-12" [section]="itemsection" [path]="path+'.'+(j+1)" [pathName]="pathName+'.sections.'+j"></app-df-section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</mat-expansion-panel>
|
</mat-expansion-panel>
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
.dynamic-form-section {
|
||||||
|
.expansion-panel {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,9 +10,8 @@ import { FormFocusService } from '../../utilities/form-focus-service/form-focus.
|
||||||
selector: 'app-df-section',
|
selector: 'app-df-section',
|
||||||
templateUrl: './dynamic-form-section.html',
|
templateUrl: './dynamic-form-section.html',
|
||||||
styleUrls: [
|
styleUrls: [
|
||||||
'./dynamic-form-section.css'
|
'./dynamic-form-section.scss'
|
||||||
],
|
]
|
||||||
encapsulation: ViewEncapsulation.None,
|
|
||||||
})
|
})
|
||||||
export class DynamicFormSectionComponent implements OnInit, AfterViewInit {
|
export class DynamicFormSectionComponent implements OnInit, AfterViewInit {
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<div class="dynamic-form-editor">
|
<form *ngIf="form" novalidate [formGroup]="form">
|
||||||
|
<div class="dynamic-form-editor row">
|
||||||
<!-- <mat-sidenav-container class="ng-sidebar-container"> -->
|
<!-- <mat-sidenav-container class="ng-sidebar-container"> -->
|
||||||
<!-- <mat-sidenav mode="push" position="right" [(opened)]="visibleSidebar">
|
<!-- <mat-sidenav mode="push" position="right" [(opened)]="visibleSidebar">
|
||||||
<table-of-content class="toc-container full-height" [model]="datasetProfileDefinitionModel"></table-of-content>
|
<table-of-content class="toc-container full-height" [model]="datasetProfileDefinitionModel"></table-of-content>
|
||||||
|
@ -6,27 +7,22 @@
|
||||||
|
|
||||||
<!-- <mat-sidenav-content> -->
|
<!-- <mat-sidenav-content> -->
|
||||||
<!-- <button mat-raised-button color="primary" style="margin: 15px;" (click)="toggleSidebar()" icon="fa-arrow-left">Table Of Contents</button> -->
|
<!-- <button mat-raised-button color="primary" style="margin: 15px;" (click)="toggleSidebar()" icon="fa-arrow-left">Table Of Contents</button> -->
|
||||||
<form *ngIf="form" novalidate [formGroup]="form">
|
|
||||||
<!-- <button mat-raised-button color="primary" *ngIf="dataModel&&dataModel.status.toString() != 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;"
|
<!-- <button mat-raised-button color="primary" *ngIf="dataModel&&dataModel.status.toString() != 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;"
|
||||||
(click)="save();" type="button">Save</button>
|
(click)="save();" type="button">Save</button>
|
||||||
<button mat-raised-button color="primary" *ngIf="dataModel&&dataModel?.status != 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;"
|
<button mat-raised-button color="primary" *ngIf="dataModel&&dataModel?.status != 1" style="margin-top: 15px;margin-bottom: 15px;margin-right: 15px;"
|
||||||
(click)="saveFinalize();" type="button">Save and Finalize</button> -->
|
(click)="saveFinalize();" type="button">Save and Finalize</button> -->
|
||||||
<div>
|
|
||||||
<div class="alignment-center">
|
|
||||||
<!-- <ngb-pagination *ngIf="pages" [collectionSize]="pages.length*10" [page]="currentPageIndex" (pageChange)="changePageIndex($event)" aria-label="Default pagination"></ngb-pagination> -->
|
<!-- <ngb-pagination *ngIf="pages" [collectionSize]="pages.length*10" [page]="currentPageIndex" (pageChange)="changePageIndex($event)" aria-label="Default pagination"></ngb-pagination> -->
|
||||||
<app-progress-bar *ngIf="form" [formGroup]="form"></app-progress-bar>
|
<app-progress-bar class="col-12" *ngIf="form" [formGroup]="form"></app-progress-bar>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngIf='datasetProfileDefinitionModel' class="col-md-12" id="form-container">
|
<div *ngIf='datasetProfileDefinitionModel' class="col-12" id="form-container">
|
||||||
<!-- <form *ngIf="form" novalidate [formGroup]="form" (ngSubmit)="onSubmit()"> -->
|
<!-- <form *ngIf="form" novalidate [formGroup]="form" (ngSubmit)="onSubmit()"> -->
|
||||||
<mat-vertical-stepper #stepper [linear]="false">
|
<mat-vertical-stepper #stepper [linear]="false">
|
||||||
<div *ngFor="let page of datasetProfileDefinitionModel.pages; let z=index; trackBy: pageTrackByFn">
|
<div *ngFor="let page of datasetProfileDefinitionModel.pages; let z=index; trackBy: pageTrackByFn">
|
||||||
<div *ngFor="let section of page.sections; let i = index; trackBy: trackByFn">
|
<div *ngFor="let section of page.sections; let i = index; trackBy: trackByFn">
|
||||||
<mat-step [stepControl]="section">
|
<mat-step [stepControl]="section">
|
||||||
<ng-template matStepLabel>{{page.title}}</ng-template>
|
<ng-template matStepLabel>{{page.title}}</ng-template>
|
||||||
<div *ngIf="stepper.selectedIndex == z">
|
<div *ngIf="stepper.selectedIndex == z" class="row">
|
||||||
<app-df-section [section]="section" [path]="z+1" [pathName]="'pages.'+z+'.sections.'+i"></app-df-section>
|
<app-df-section class="col-12" [section]="section" [path]="z+1" [pathName]="'pages.'+z+'.sections.'+i"></app-df-section>
|
||||||
</div>
|
</div>
|
||||||
</mat-step>
|
</mat-step>
|
||||||
</div>
|
</div>
|
||||||
|
@ -37,8 +33,7 @@
|
||||||
[pathName]="'sections.'+i"></df-section>
|
[pathName]="'sections.'+i"></df-section>
|
||||||
</div> -->
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
</form>
|
|
||||||
<!-- </mat-sidenav-content>
|
<!-- </mat-sidenav-content>
|
||||||
</mat-sidenav-container> -->
|
</mat-sidenav-container> -->
|
||||||
</div>
|
</div>
|
||||||
<!-- <p>Form value: {{ form.value | json }}</p> -->
|
</form>
|
||||||
|
|
|
@ -1,63 +1,66 @@
|
||||||
|
|
||||||
|
|
||||||
.ng-sidebar {
|
|
||||||
width: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* .toc-container {
|
|
||||||
background: #f9f9f9 none repeat scroll 0 0;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
display: table;
|
|
||||||
font-size: 95%;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
padding: 20px;
|
|
||||||
width: 100%;
|
|
||||||
} */
|
|
||||||
|
|
||||||
.ui-steps .ui-steps-item {
|
|
||||||
min-width: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dynamic-form-editor {
|
.dynamic-form-editor {
|
||||||
// background-color: #e0e0e0;
|
|
||||||
// min-height: 80vh;
|
|
||||||
mat-vertical-stepper {
|
mat-vertical-stepper {
|
||||||
background-color: #e0e0e0;
|
background-color: #e0e0e0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ng-sidebar-container {
|
// .ng-sidebar {
|
||||||
overflow: inherit !important;
|
// width: 40%;
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
// /* .toc-container {
|
||||||
|
// background: #f9f9f9 none repeat scroll 0 0;
|
||||||
|
// border: 1px solid #aaa;
|
||||||
|
// display: table;
|
||||||
|
// font-size: 95%;
|
||||||
|
// margin-bottom: 1em;
|
||||||
|
// padding: 20px;
|
||||||
|
// width: 100%;
|
||||||
|
// } */
|
||||||
|
|
||||||
/* .ng-sidebar__content {
|
// .ui-steps .ui-steps-item {
|
||||||
overflow: inherit !important;
|
// min-width: 10%;
|
||||||
} */
|
// }
|
||||||
|
|
||||||
.alignment-center{
|
// .dynamic-form-editor {
|
||||||
text-align: center;
|
// // background-color: #e0e0e0;
|
||||||
}
|
// // min-height: 80vh;
|
||||||
|
// mat-vertical-stepper {
|
||||||
|
// background-color: #e0e0e0;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// .ng-sidebar-container {
|
||||||
|
// overflow: inherit !important;
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
// /* .ng-sidebar__content {
|
||||||
|
// overflow: inherit !important;
|
||||||
|
// } */
|
||||||
|
|
||||||
|
// .alignment-center{
|
||||||
|
// text-align: center;
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
.demo-progress-bar-container {
|
// .demo-progress-bar-container {
|
||||||
|
|
||||||
width: 100%;
|
// width: 100%;
|
||||||
|
|
||||||
|
|
||||||
}
|
// }
|
||||||
|
|
||||||
.form-progress-bar {
|
// .form-progress-bar {
|
||||||
|
|
||||||
margin: 20px 0;
|
// margin: 20px 0;
|
||||||
|
|
||||||
}
|
// }
|
||||||
|
|
||||||
.full-width{
|
// .full-width{
|
||||||
width:100%;
|
// width:100%;
|
||||||
}
|
// }
|
||||||
|
|
||||||
.full-height{
|
|
||||||
height:100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// .full-height{
|
||||||
|
// height:100%;
|
||||||
|
// }
|
||||||
|
|
|
@ -24,8 +24,7 @@ import { VisibilityRulesService } from '../../utilities/visibility-rules/visibil
|
||||||
],
|
],
|
||||||
providers: [
|
providers: [
|
||||||
FormFocusService
|
FormFocusService
|
||||||
],
|
]
|
||||||
encapsulation: ViewEncapsulation.None,
|
|
||||||
})
|
})
|
||||||
export class DynamicFormComponent extends BaseComponent implements OnInit, AfterViewInit {
|
export class DynamicFormComponent extends BaseComponent implements OnInit, AfterViewInit {
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<button mat-button (click)="goToProjectDmps()">
|
<button mat-button (click)="goToProjectDmps()">
|
||||||
<mat-icon class="mat-24">arrow_forward</mat-icon>
|
<mat-icon class="mat-24">arrow_right_alt</mat-icon>
|
||||||
<span>{{'PROJECT-EDITOR.ACTIONS.GO-TO-DMPS' | translate}}</span>
|
<span>{{'PROJECT-EDITOR.ACTIONS.GO-TO-DMPS' | translate}}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -15,41 +15,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// .table-card .mat-grid-tile {
|
|
||||||
// background: rgba(0, 0, 0, 0.32);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .project-editor {
|
|
||||||
// .fill-space {
|
|
||||||
// flex: 1 1 auto;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .mat-card {
|
|
||||||
// margin: 16px 0;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// p {
|
|
||||||
// margin: 16px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .left-button {
|
|
||||||
// float: left;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .right-button {
|
|
||||||
// float: right;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .description-area {
|
|
||||||
// height: 100px;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// h3 {
|
|
||||||
// margin-top: 0px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
<div class="auto-complete">
|
<mat-form-field class="auto-complete">
|
||||||
<mat-form-field>
|
<input matInput type="text" [placeholder]="placeholder" [formControl]="textFormCtrl" [matAutocomplete]="auto" [required]="required" [errorStateMatcher]="this">
|
||||||
<input matInput type="text" [placeholder]="placeholder" [formControl]="textFormCtrl" [matAutocomplete]="auto" [required]="required"
|
|
||||||
[errorStateMatcher]="this">
|
|
||||||
<mat-error *ngIf="validationErrorString">{{validationErrorString}}</mat-error>
|
<mat-error *ngIf="validationErrorString">{{validationErrorString}}</mat-error>
|
||||||
<mat-error *ngIf="formCtrl && formCtrl.hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
<mat-error *ngIf="formCtrl && formCtrl.hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
|
||||||
<mat-progress-spinner matSuffix mode="indeterminate" *ngIf="loading" [diameter]="22"></mat-progress-spinner>
|
<mat-progress-spinner matSuffix mode="indeterminate" *ngIf="loading" [diameter]="22"></mat-progress-spinner>
|
||||||
|
@ -12,4 +10,3 @@
|
||||||
</mat-option>
|
</mat-option>
|
||||||
</mat-autocomplete>
|
</mat-autocomplete>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,6 +1,16 @@
|
||||||
.auto-complete {
|
.auto-complete {
|
||||||
.mat-form-field {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 3px;
|
|
||||||
|
.mat-form-field {
|
||||||
|
padding: 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.not-loading {
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.two-line-mat-option {
|
||||||
|
height: 3.5em;
|
||||||
|
line-height: 1.2em;
|
||||||
|
}
|
||||||
|
|
|
@ -1,25 +1,15 @@
|
||||||
<div>
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<mat-form-field class="col-md-6">
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="Sources" [(ngModel)]="choice" (selectionChange)="selectionChange($event)" [disabled]="viewOnly">
|
<mat-select placeholder="Sources" [(ngModel)]="choice" (selectionChange)="selectionChange($event)" [disabled]="viewOnly">
|
||||||
<mat-option *ngFor="let option of options" [value]="option.key">
|
<mat-option *ngFor="let option of options" [value]="option.key">
|
||||||
{{ option.label }}
|
{{ option.label }}
|
||||||
</mat-option>
|
</mat-option>
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
<app-external-item class="col-md-6" [autoCompleteConfiguration]="autoCompleteConfiguration" [formGroup]="formGroup" [displayFunction]="displayFunction" [placeholder]="placeholder" [subtitleFunction]="subtitleFunction" (onItemChange)="this.onItemChangeFunc($event)" [formCtrl]="formControl" [disabled]="disabled">
|
||||||
<div>
|
|
||||||
<app-external-item class="col-md-9" [autoCompleteConfiguration]="autoCompleteConfiguration"
|
|
||||||
[formGroup]="formGroup" [displayFunction]="displayFunction" [placeholder]="placeholder" [subtitleFunction]="subtitleFunction"
|
|
||||||
(onItemChange)="this.onItemChangeFunc($event)" [formCtrl]="formControl" [disabled]="disabled">
|
|
||||||
</app-external-item>
|
</app-external-item>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="row" *ngFor="let suggestion of formGroup['controls']; let i = index">
|
<div class="row" *ngFor="let suggestion of formGroup['controls']; let i = index">
|
||||||
<ng-container *ngTemplateOutlet="parentTemplate; context: { $implicit: suggestion, index: i,function: this.deleteItem.bind(this) }">
|
<ng-container *ngTemplateOutlet="parentTemplate; context: { $implicit: suggestion, index: i,function: this.deleteItem.bind(this) }">
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
.fxItems {
|
|
||||||
flex: 1 1 0
|
|
||||||
}
|
|
|
@ -16,7 +16,7 @@ export class FigurecardComponent implements OnInit {
|
||||||
@Input() linearColor: string;
|
@Input() linearColor: string;
|
||||||
@Input() boxShadow: string;
|
@Input() boxShadow: string;
|
||||||
@Input() routelLink: string;
|
@Input() routelLink: string;
|
||||||
@Input() hasFootContent = true;
|
@Input() hasFootContent = false;
|
||||||
@Input() buttonTitle: string;
|
@Input() buttonTitle: string;
|
||||||
@Input() buttonRedirectLink: string;
|
@Input() buttonRedirectLink: string;
|
||||||
|
|
||||||
|
|
|
@ -217,8 +217,8 @@
|
||||||
"GO-TO-DATASETS": "Go To Datasets",
|
"GO-TO-DATASETS": "Go To Datasets",
|
||||||
"SAVE": "Save",
|
"SAVE": "Save",
|
||||||
"CANCEL": "Cancel",
|
"CANCEL": "Cancel",
|
||||||
"DELETE": "Remove",
|
"DELETE": "Delete",
|
||||||
"FINALISE": "Finalise"
|
"FINALISE": "Finalize"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DMP-PROFILE-LISTING": {
|
"DMP-PROFILE-LISTING": {
|
||||||
|
|
Loading…
Reference in New Issue