5be2a14570ef1e91bf9266271413bbd2489a4148
[ccsdk/cds.git] /
1 <!--/*
2 * ============LICENSE_START=======================================================
3 * ONAP : CDS
4 * ================================================================================
5 * Copyright (C) 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
24 <button disabled style="opacity: 0.5;" (click) ="changeView()" class="toggle-view-btn">{{viewText}}</button>
25 <br><br>
26 <div *ngIf="designerMode">
27    <mat-card class="metadata-card">
28         <mat-card-header>
29             <mat-card-title>Resource Metadata</mat-card-title>
30         </mat-card-header>
31         <mat-card-content>
32             <app-resource-metadata (resourcesData)="metaDataDetail($event)"></app-resource-metadata>
33         </mat-card-content>
34     </mat-card>
35
36         <mat-card class="sources-card">
37         <mat-card-header>
38           <mat-card-title>
39                 Sources
40           </mat-card-title>
41         </mat-card-header>
42         <mat-card-content>
43                 <app-sources-template (resourcesData)="sourcesDetails($event)"></app-sources-template>
44         </mat-card-content>
45     </mat-card>
46 </div>
47
48 <div *ngIf="editorMode">
49         <json-editor  class="jsoneditor" *ngIf="editorMode" [options]="options" [data]="resources" on-change="onChange($event)"></json-editor>
50 </div>
51  
52 <div class="btn"> 
53         <button mat-button matStepperPrevious>Back</button></div>
54 <div class="btn">
55         <button mat-button matStepperNext type="submit" (click)="saveToBackend()">Save</button>
56 </div>