summaryrefslogtreecommitdiffstats
path: root/dcaedftool/src/app/df-schema.component.html
blob: 2a90e9764673f761751fb8e371554b2b0a5fae9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!--
 org.onap.dcae
 ============LICENSE_START====================================================
 Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
 =============================================================================
 Licensed 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.
 ============LICENSE_END======================================================

 ECOMP is a trademark and service mark of AT&T Intellectual Property.
-->
<md-toolbar class="scenario-toolbar">
  <div fxLayout="row" fxFill>
    <div fxLayout="row" fxFlex fxFill >
      <div class="one" fxFlex="15"   fxHide="true" fxLayoutAlign="center center">
        <md-select class="schema-version" placeholder="MetaSchema Version"  >
          <md-option class="schema-version" >
            1.0.0
          </md-option>
          <br>
        </md-select>
      </div>
      <div  fxFlex="15" fxLayoutAlign="center center">
        <button md-raised-button class="meta-display-button" (click)=toggleMetaSchema()  >
          {{metaButton}}
        </button>
      </div>
      <div  fxFlex="75"    fxLayoutAlign="center center">
         <h1 class="scenario-title" text-align:center >Data Format Schema Verification</h1>
      </div>
    </div>
  </div>
</md-toolbar>

<div fxLayout="row" fxFill flexLayoutGap=10px>
  <div fxLayout="row" fxFlex fxFill  flexLayoutGap=10px>
    <div class="metaschema" fxFlex="100" fxFill  fxShow={{metaDisplay}} flex="grow" fxLayoutAlign="center center">
      <md-card class="metaschema-card">
        <md-card-title class="metaschema-title">
          Data Format MetaSchema
        </md-card-title>
        <md-card-content class="metaschema-text">
          {{dfmetaschema}}
        </md-card-content>
      </md-card>
    </div>
    <div class="schema-container" fxLayout="column" fxFlex="100" fxFill flex="grow"  fxLayoutAlign="center center">
        <md-card class="schema-input-title" fxFlex="100" fxFill flex="grow"  fxLayoutAlign="center center">
          <md-card-title class="schemainput-title"  fxFlex="100" fxFill flex="grow"   fxLayoutAlign="left left">
            Application Schema
          </md-card-title>
        </md-card>
        <textarea mdInput class="schema-input-textarea" placeholder="Enter your Application Schema Definition Here" [ngModel]="dfschema" (keyup)="doDFSchemaChange($event)"  flex="grow" fxLayoutAlign="center center" autofocus="">
        </textarea>
        <md-card class="schema-msgs" fxLayout="column"  fxFlex="100" fxFill flex="grow"  fxLayoutAlign="left left">
          <h4>Schema Verification Messages</h4>
          <span style="color:black">{{schemaMsg}}</span>
          <ul class="schema-error"  *ngFor="let msg of schemaErrMsgs">
            <li class="schema-error" >
              {{msg}}
            </li>
          </ul>
        </md-card>
    </div>
  </div>
</div>