blob: 9151d2f6459b4ef26158e9bae4fca8d6918609e5 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<td-steps mode="'vertical'">
<td-step #detailsStep label="{{'Create custom fields' | translate}}" [state]="form.valid ? 'complete' : form.pristine ? 'none' : 'required'">
<form [formGroup]="form">
<fims-text-input [form]="form" controlName="name" placeholder="{{'Name' | translate}}"></fims-text-input>
<div layout="row">
<mat-form-field layout-margin flex>
<textarea matInput placeholder="{{'Description(Optional)' | translate}}" formControlName="description"></textarea>
</mat-form-field>
</div>
<div layout-gt-xs="column" layout-margin formArrayName="fields">
<h4 translate>Fields</h4>
<mat-card *ngFor="let field of fields; let i=index" [formGroupName]="i">
<mat-card-content>
<fims-custom-field-form
[form]="field"
(onAddOption)="addOption(field)"
(onRemoveOption)="removeOption(field, $event)">
</fims-custom-field-form>
</mat-card-content>
<mat-card-actions>
<button mat-button (click)="removeField(i)">{{'Remove field' | translate}}</button>
</mat-card-actions>
</mat-card>
<div layout="row">
<button mat-button (click)="addField()">{{'Add field' | translate}}</button>
</div>
</div>
</form>
<ng-template td-step-actions>
<fims-form-final-action
[resourceName]="'CUSTOM FIELDS'"
[editMode]="false"
[disabled]="!form.valid"
(onCancel)="cancel()"
(onSave)="save()">
</fims-form-final-action>
</ng-template>
</td-step>
</td-steps>