summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/action/action.component.html
blob: 250af34e2118a51a0615cb607e4ef36e0a1feda0 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<form #actionFrm="ngForm" class="conatiner" id="{{action.id}}" (mouseover)="changeStyle($event)" (mouseout)="changeStyle($event)">
  <div>

    <div class="center-content">
      <!-- type info -->
      <div class="action-info" [ngClass]="highlight">
        {{action.actionType | uppercase}}
      </div>

      <!-- from component -->
      <app-from [hidden]="action.actionType === 'log event' || action.actionType === 'log text'" class="center-content-item" #from
        [actionType]="action.actionType" (onFromChange)="updateFrom($event)"></app-from>

      <!-- target component -->
      <app-target [hidden]="action.actionType === 'clear' || action.actionType === 'replace text' || action.actionType === 'log text' || action.actionType === 'log event'"
        #target style="width: 100%" (onTargetChange)="updateTarget($event)" [nodes]="action.nodes">
      </app-target>

      <!-- log Event -->
      <div *ngIf="action.actionType === 'log event'" class="center-content-item">
        <div class="from">
          <div class="from-container">
            <div style="display: flex; align-items: center; width: 100%;" class="label">
              <span class="label" style="padding: 0 5px; width: 100px;">Title</span>
              <input required class="input-text" data-tests-id="InputLogTitle" ngModel name="title" [(ngModel)]="action.logEvent.title"
                type="text" placeholder="The title for the log entry">
            </div>
          </div>
        </div>
      </div>

      <!-- log Text -->
      <div *ngIf="action.actionType === 'log text'" class="center-content-item">
        <div class="from">
          <div class="from-container">
            <div style="display: flex; align-items: center; width: 100%;" class="label">
              <span class="label" style="padding: 0 5px; width: 100px;">Log Text</span>
              <input required class="input-text" data-tests-id="InputLogText" ngModel name="logText" [(ngModel)]="action.logText.text"
                type="text" placeholder="The title for the log entry">
            </div>
          </div>
        </div>
      </div>

    </div>

      <!-- dateFormatter -->
      <div *ngIf="action.actionType === 'date formatter'" style="flex-direction: column; margin-left: 156px; align-items: flex-end;">
          <div style="display: flex; margin: 0.5em 0; padding-left: 6px;">
            <div class="from" style="width:50%;">
              <div class="from-container">
                <div style="display: flex; align-items: center; width: 100%;" class="label">
                  <span class="label" style="padding: 0 5px; width: 100px;">From Format</span>
                  <input data-tests-id="InputFromFormat" class="input-text" ngModel required name="fromFormat" [(ngModel)]="action.dateFormatter.fromFormat" type="text">
                </div>
              </div>
            </div>
            <div class="from"  style="width:50%; padding: 0;">
              <div class="from-container">
                <div style="display: flex; align-items: center; width: 100%;" class="label">
                  <span class="label" style="padding: 0 5px; width: 100px;">To Format</span>
                  <input data-tests-id="InputToFormat" class="input-text" ngModel required name="toFormat" [(ngModel)]="action.dateFormatter.toFormat" type="text">
                </div>
              </div>
            </div>
          </div>
    
          <div style="display: flex; margin: 0.5em 0; padding-left: 6px;">
            <div class="from" style="width:50%;">
              <div class="from-container">
                <div style="display: flex; align-items: center; width: 100%;" class="label">
                  <span class="label" style="padding: 0 5px; width: 132px;">From Time-zone</span>
                  <input class="input-text" data-tests-id="InputFromTimezone" ngModel required name="fromTimezone" [(ngModel)]="action.dateFormatter.fromTimezone" type="text">
                </div>
              </div>
            </div>
            <div class="from" style="width:50%; padding: 0;">
              <div class="from-container">
                <div style="display: flex; align-items: center; width: 100%;" class="label">
                  <span class="label" style="padding: 0 5px; width: 100px;">To Time-zone</span>
                  <input class="input-text" data-tests-id="InputToTimezone" ngModel required name="toTimezone" [(ngModel)]="action.dateFormatter.toTimezone" type="text">
                </div>
              </div>
            </div>
          </div>
        </div>

    <!-- replace text -->
    <div *ngIf="action.actionType === 'replace text'" class="action-container" style="flex-direction: row; margin-left: 152px; padding: 0 0.8em;">

      <div class="action-item">
        <div class="from" style="width:100%;">
          <div class="from-container" display="padding:0;">

            <div class="label" style="width: 100%;">
              <span class="label" style="padding: 0 5px; width: 100px;">Find what</span>
              <input data-tests-id="InputFindWhat" class="input-text" ngModel required name="findWhat" [(ngModel)]="action.replaceText.find"
                type="text" placeholder="Find text">
            </div>

          </div>
        </div>

      </div>

      <div class="action-item">
        <div class="from" style="width: 100%; padding: 0;">
          <div class="from-container">

            <div class="label" style="width: 100%;">
              <span class="label" style="padding: 0 5px; width: 100px;">Replace with</span>
              <input data-tests-id="InputReplaceWith" class="input-text" ngModel required name="replaceWith" [(ngModel)]="action.replaceText.replace"
                type="text" placeholder="Replace with text">
            </div>

          </div>
        </div>

      </div>
    </div>

    <!-- log text -->
    <div *ngIf="action.actionType === 'log text'" class="action-container" style="flex-direction: row; margin-left: 152px; padding: 0 0.8em;">

      <div class="action-item">
        <div class="from" style="width: 100%;">
          <div class="from-container" display="padding:0;">
            <div class="label" style="width: 100%;">
              <span class="label" style="padding: 0 5px; width: 100px;">Log Name</span>
              <input class="input-text" data-tests-id="InputLogName" ngModel name="logName" [(ngModel)]="action.logText.name"
                type="text" placeholder="Enter log name">
            </div>
          </div>
        </div>
      </div>

      <div class="action-item">
        <div class="from" style="width: 100%; padding: 0;">
          <div class="from-container">
            <div class="label" style="width: 100%;">
              <span class="label" style="padding: 0 5px; width: 100px;">Log Level</span>
              <input class="input-text" data-tests-id="InputLogLevel" ngModel required name="logLevel" [(ngModel)]="action.logText.level"
                type="text" placeholder="Text to log">
            </div>
          </div>
        </div>
      </div>

    </div>

    <!-- Map -->
    <div *ngIf="action.actionType === 'map'" class="map-container">
      <!-- Default checkbox and input -->
      <div class="default" style="display: flex; align-items: center">
        <div class="pretty p-svg">
          <input type="checkbox" name="defaultCheckbox" data-tests-id="defaultCheckbox" [checked]="action.map.haveDefault" (change)="changeCheckbox()"
          />
          <div class="state">
            <!-- svg path -->
            <svg class="svg svg-icon" viewBox="0 0 20 20">
              <path d="M7.629,14.566c0.125,0.125,0.291,0.188,0.456,0.188c0.164,0,0.329-0.062,0.456-0.188l8.219-8.221c0.252-0.252,0.252-0.659,0-0.911c-0.252-0.252-0.659-0.252-0.911,0l-7.764,7.763L4.152,9.267c-0.252-0.251-0.66-0.251-0.911,0c-0.252,0.252-0.252,0.66,0,0.911L7.629,14.566z"
                style="stroke: #009fdb; fill:#009fdb;"></path>
            </svg>
            <label>Default</label>
          </div>
        </div>
        <div *ngIf="action.map.haveDefault" class="input-wrapper">
          <input type="text" ngModel required name="defaultInput" data-tests-id="defaultInput" [(ngModel)]="action.map.default" class="input">
        </div>
      </div>

      <table style="width: 100%; margin-bottom: 1rem;">
        <thead style="background: #D2D2D2;">
          <tr style="height: 30px;">
            <th style="padding-left: 10px;">Key</th>
            <th style="padding-left: 10px;">value</th>
          </tr>
        </thead>
        <tbody ngModelGroup="mapKeyValue" #mapKeyValue="ngModelGroup">
          <tr *ngFor="let item of action.map.values; let index = index;" (mouseleave)="hoveredIndex=-1" (mouseover)="hoveredIndex=index">
            <th style="height: 30px; border: 1px solid #F3F3F3;">
              <input [(ngModel)]="item.key" ngModel required name="mapValue[{{index}}]" data-tests-id="key" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;">
            </th>
            <th style="height: 30px; border: 1px solid #F3F3F3;">
              <input [(ngModel)]="item.value" ngModel required name="mapValue[{{index}}]" data-tests-id="value" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;">
            </th>
            <th style="height: 30px; display: flex; align-items: baseline;">
              <button mat-icon-button data-tests-id="btn-remove-row" [ngStyle]="hoveredIndex === index ? {'opacity':'1'} : {'opacity':'0'}"
                class="button-remove" (click)="removeMapRow(index)" *ngIf="action.map.values.length > 1" style="height: 24px; width: 24px; display:flex; box-shadow: none;">
                <mat-icon class="md-24">delete</mat-icon>
              </button>
            </th>
          </tr>
        </tbody>
      </table>


      <div style="display:flex; justify-content: space-between;">
        <div style="display: flex; align-items: center;">
          <button mat-mini-fab color="primary" (click)="addMapRow()" data-tests-id="btn-add-row" style="height: 16px; width: 16px; display:flex; box-shadow: none;">
            <span style="padding-left: 2px; display: flex; justify-content: center; align-items: center" [innerHTML]="'plus' | feather:12"></span>
            <!-- <mat-icon>add</mat-icon> -->
          </button>
          <span style="color: #009FDB; display: flex; justify-content: center; padding-left: 6px">Add Row</span>
        </div>
      </div>
    </div>

  </div>
</form>