2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 TechMahindra
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
24 <button disabled style="opacity: 0.5;" (click) ="changeView()" class="toggle-view-btn">{{viewText}}</button>
26 <div *ngIf="designerMode">
27 <mat-card class="metadata-card">
29 <mat-card-title>Resource Metadata</mat-card-title>
32 <app-resource-metadata (resourcesData)="metaDataDetail($event)"></app-resource-metadata>
36 <mat-card class="sources-card">
43 <app-sources-template (resourcesData)="sourcesDetails($event)"></app-sources-template>
48 <div *ngIf="editorMode">
49 <json-editor class="jsoneditor" *ngIf="editorMode" [options]="options" [data]="resources" on-change="onChange($event)"></json-editor>
53 <button mat-button matStepperPrevious>Back</button></div>
55 <button mat-button matStepperNext type="submit" (click)="saveToBackend()">Save</button>