Resource Dictionary: fecthing data-type list
[ccsdk/cds.git] / cds-ui / client / src / app / feature-modules / resource-definition / resource-edit / resource-metadata / resource-metadata.component.html
1 <!--/*
2 * ============LICENSE_START=======================================================
3 * ONAP : CDS
4 * ================================================================================
5 * Copyright 2019 TechMahindra
6 *
7 * Modifications Copyright (C) 2019 IBM
8 *=================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *     http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 */-->
22
23 <form [formGroup]="ResourceMetadata" (ngSubmit)="UploadMetadata()">
24         <mat-form-field class="form-field">
25       <input matInput placeholder="Name" formControlName="Resource_Name">
26     </mat-form-field><mat-form-field class="form-field">
27       <input matInput placeholder="Tags" formControlName="_tags">
28     </mat-form-field>
29     <mat-form-field class="form-field">
30       <mat-select matInput placeholder="Data Type" formControlName="_type">
31         <!-- <mat-option value="string">string</mat-option> -->
32         <!-- <mat-option value="list">list</mat-option> -->
33         <mat-option value="string" *ngFor="let item of dataTypeList">{{item.modelName}}</mat-option>
34       </mat-select>
35     </mat-form-field>
36     <mat-form-field class="form-field" >
37       <input matInput placeholder="entry_schema" formControlName="entry_schema">
38     </mat-form-field>
39     <mat-form-field class="form-field" >
40       <mat-select matInput placeholder="required" formControlName="required">
41         <mat-option value="true">true</mat-option>
42         <mat-option value="false">false</mat-option>
43       </mat-select>
44     </mat-form-field>
45     <mat-form-field class="form-field" >
46       <textarea matInput placeholder="Description" formControlName="_description"></textarea>
47     </mat-form-field>
48     <br>
49     <div>
50         <button mat-button class="matStepNextBtn" type="submit">Save Metadata</button>
51     </div>  
52 </form>