diff options
Diffstat (limited to 'cds-ui/client/src/app')
4 files changed, 39 insertions, 22 deletions
diff --git a/cds-ui/client/src/app/common/modules/README.md b/cds-ui/client/src/app/common/modules/README.md new file mode 100644 index 000000000..196842e93 --- /dev/null +++ b/cds-ui/client/src/app/common/modules/README.md @@ -0,0 +1,22 @@ +/* +============LICENSE_START========================================== +=================================================================== +Copyright (C) 2018-19 IBM Intellectual Property. All rights reserved. +=================================================================== + +Unless otherwise specified, all software contained herein is licensed +under the Apache License, Version 2.0 (the License); +you may not use this software 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. +============LICENSE_END============================================ +*/ + +This folder contains common module. All the third party imports/libraries, that could be used at many components, should be imported here into a single module and that module can be used across.
\ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts index 9073d10cf..46dca73dd 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.component.ts @@ -31,6 +31,7 @@ import { IAppState } from '../../../../common/core/store/state/app.state'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import { IBlueprintState } from 'src/app/common/core/store/models/blueprintState.model'; +import { LoadBlueprintSuccess } from '../../../../common/core/store/actions/blueprint.action'; interface FoodNode { diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.html index 2ee660fbd..3ad578d36 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.html +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.html @@ -25,15 +25,21 @@ <input matInput placeholder="Tags" formControlName="_tags"> </mat-form-field> <mat-form-field class="form-field"> - <input matInput placeholder="Data Type" formControlName="_type"> + <mat-select matInput placeholder="Data Type" formControlName="_type"> + <mat-option value="string">string</mat-option> + <mat-option value="string">list</mat-option> + </mat-select> </mat-form-field> - <mat-form-field class="form-field" > - <textarea matInput placeholder="Description" formControlName="_description"></textarea> + <mat-form-field class="form-field" > + <input matInput placeholder="entry_schema" formControlName="entry_schema"> </mat-form-field> <mat-form-field class="form-field" > - <input matInput placeholder="required" formControlName="_required"> + <mat-select placeholder="required" formControlName="_required"> + <mat-option value="true">true</mat-option> + <mat-option value="false">false</mat-option> + </mat-select> </mat-form-field> <mat-form-field class="form-field" > - <input matInput placeholder="entry_schema" formControlName="entry_schema"> + <textarea matInput placeholder="Description" formControlName="_description"></textarea> </mat-form-field> </form>
\ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.ts index bc309f4f8..f44c9b0d1 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-metadata/resource-metadata.component.ts @@ -20,7 +20,6 @@ import { Component, OnInit } from '@angular/core'; import {FormBuilder, FormGroup, Validators} from '@angular/forms'; -import sample_licenses from '../../../../../assets/sample-licenses.json'; @Component({ selector: 'app-resource-metadata', @@ -30,28 +29,17 @@ import sample_licenses from '../../../../../assets/sample-licenses.json'; export class ResourceMetadataComponent implements OnInit { ResourceMetadata: FormGroup; - data=sample_licenses; constructor(private _formBuilder: FormBuilder) { this.ResourceMetadata = this._formBuilder.group({ Resource_Name: ['', Validators.required], _tags: ['', Validators.required], _description : ['', Validators.required], - _type: ['', Validators.required], - _required: ['', Validators.required], - entry_schema: ['', Validators.required] - }); + _type: ['string', Validators.required], + _required: ['false', Validators.required], + entry_schema: [''] + }); } - ngOnInit() { - this.ResourceMetadata = this._formBuilder.group({ - Resource_Name: [this.data["name"], Validators.required], - _tags: [this.data["tags"], Validators.required], - _required : [this.data["property"]["required"], Validators.required], - _description : [this.data["property"]["description"], Validators.required], - _type: [this.data["property"]["type"], Validators.required], - entry_schema: [this.data["property"]["entry_schema"]["type"], Validators.required] - }); - - } + ngOnInit() {} } |