diff options
author | 2018-10-21 11:00:42 +0300 | |
---|---|---|
committer | 2018-10-21 11:00:42 +0300 | |
commit | a0c5a22d123f1bdaa8ec7bfbf75f76cbe2ace29a (patch) | |
tree | 456198ada103cd23bd57f40b6475fb3c9a86fef5 /public/src/app/rule-engine | |
parent | 29ffa5ef26f82002bf894b9288e9a369a144388d (diff) |
Update code to latest
Change-Id: I76b37c2d6d333204899c9bc87f310e5b607a5e73
Issue-ID: DCAEGEN2-836
Signed-off-by: Manor, Yanir (ym903w) <ym903w@intl.att.com>
Diffstat (limited to 'public/src/app/rule-engine')
16 files changed, 317 insertions, 254 deletions
diff --git a/public/src/app/rule-engine/action-list/action-list.component.html b/public/src/app/rule-engine/action-list/action-list.component.html index 2a35c35..c7eac9f 100644 --- a/public/src/app/rule-engine/action-list/action-list.component.html +++ b/public/src/app/rule-engine/action-list/action-list.component.html @@ -2,14 +2,16 @@ <div class="header"> <div style="display: flex; justify-content: flex-end; align-items: center; margin-left: 20px;"> <a (click)="closeDialog()" data-tests-id="btnBackRule" style="cursor: pointer;text-decoration: none; color: #009fdb;"> - <mat-icon fontSet="fontawesome" fontIcon="fa-angle-left" style="height: 22px; width: 22px; font-size: 22px; padding-right: 20px;"></mat-icon> + <mat-icon fontSet="fontawesome" fontIcon="fa-angle-left" style="height: 22px; width: 22px; font-size: 22px;"></mat-icon> </a> - <span style="font-size: 18px;">{{title}}</span> + <span style="color: #009fdb; font-size: 14px;">Back to Rule Engine</span> </div> + <span style="font-size: 18px;">{{title}}</span> + <div style="display: flex; justify-content: flex-end; align-items: center; padding: 10px;"> - <button mat-icon-button [disabled]="actions.length === 0" (click)="saveRole()" data-tests-id="btnSave"> + <button mat-icon-button [disabled]="actions.length === 0 || store.viewOnly" (click)="saveRole()" data-tests-id="btnSave"> <span style="width: 100%; height: 100%; display: flex; @@ -17,7 +19,7 @@ align-items: center;" [innerHTML]="'save' | feather:22"></span> </button> - <button mat-raised-button [disabled]="actions.length === 0" style="height: 35px; margin-left: 10px;" color="primary" + <button mat-raised-button [disabled]="actions.length === 0 || store.viewOnly" style="height: 35px; margin-left: 10px;" color="primary" data-tests-id="btnDone" (click)="saveAndDone()"> Done </button> @@ -33,12 +35,12 @@ <div class="main-content"> <div> <div class="required" style="padding-right: 1rem; width: 100%; padding-bottom: 0.5rem;">Description</div> - <input type="text" [(ngModel)]="description" ngModel required name="descInput" style="padding: 5px; width: 100%;" data-tests-id="inputDescription"> + <input type="text" [(ngModel)]="description" ngModel required name="descInput" style="padding: 5px; width: 100%;" [readonly]="store.viewOnly" data-tests-id="inputDescription"> </div> <div style="margin: 1.5rem 0;"> <div class="pretty p-svg" style="margin: 1rem 0rem;"> - <input type="checkbox" name="isCondition" data-tests-id="isCondition" [checked]="ifStatement" (change)="ifStatement = !ifStatement" + <input type="checkbox" name="isCondition" data-tests-id="isCondition" [checked]="ifStatement" (change)="ifStatement = !ifStatement" [disabled]="store.viewOnly" /> <div class="state"> <!-- svg path --> @@ -79,7 +81,7 @@ </select> <div style="display: flex; align-items: center;"> - <button mat-mini-fab color="primary" style="height: 16px; width: 16px; display:flex; justify-content: center;" (click)="addAction2list(selectedAction)" + <button mat-mini-fab color="primary" style="height: 16px; width: 16px; display:flex; justify-content: center;" (click)="addAction2list(selectedAction)" [disabled]="store.viewOnly" data-tests-id="btnAddAction"> <span style="display: flex; justify-content: center; align-items: center" [innerHTML]="'plus' | feather:12"></span> </button> @@ -96,7 +98,7 @@ <app-action #actions style="width: 100%;" [action]="action"></app-action> <div class="btn-wrapper" [ngStyle]="hoveredIndex === index ? {opacity:'1'} : {opacity:'0'}"> - <button mat-icon-button class='button-remove' (click)="copyAction(action, index)" data-tests-id="makeCopyOfAction" *ngIf="!(action.actionType === 'map' || action.actionType === 'clear' || action.actionType === 'log text')"> + <button mat-icon-button class='button-remove' [disabled]="store.viewOnly" (click)="copyAction(action, index)" data-tests-id="makeCopyOfAction" *ngIf="!(action.actionType === 'map' || action.actionType === 'clear' || action.actionType === 'log text')"> <span style="width: 100%; height: 100%; display: flex; @@ -104,7 +106,7 @@ align-items: center;" [innerHTML]="'copy' | feather:20"></span> </button> - <button mat-icon-button class='button-remove' (click)="removeAction(action)" data-tests-id="deleteAction"> + <button mat-icon-button class='button-remove' [disabled]="store.viewOnly" (click)="removeAction(action)" data-tests-id="deleteAction"> <mat-icon>delete</mat-icon> </button> </div> diff --git a/public/src/app/rule-engine/action/action.component.html b/public/src/app/rule-engine/action/action.component.html index 38a9aa0..f439c5c 100644 --- a/public/src/app/rule-engine/action/action.component.html +++ b/public/src/app/rule-engine/action/action.component.html @@ -7,6 +7,52 @@ {{action.actionType | uppercase}} </div> + <!-- string transform --> + <div *ngIf="action.actionType === 'string transform'" class="center-content-item"> + + <div style="display:flex; margin-bottom:10px;"> + <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;"> + Start Value + </span> + <input required class="input-text" [readonly]="store.viewOnly" data-tests-id="startValue" name="title" + [(ngModel)]="action.stringTransform.startValue" type="text" placeholder="Select start value"> + </div> + </div> + </div> + + <app-target [hidden]="!(action.actionType === 'string transform')" #target style="width: 100%" (onTargetChange)="updateTarget($event)" + [nodes]="action.nodes"> + </app-target> + </div> + + <div class="from" style="padding-right: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;"> + Target case + </span> + <input required class="input-text" [readonly]="store.viewOnly" data-tests-id="targetCase" name="title" + [(ngModel)]="action.stringTransform.targetCase" type="text" placeholder="Select target case"> + </div> + </div> + </div> + + <div class="pretty p-svg" style="margin: 1rem 0rem;"> + <input type="checkbox" name="isTrimString" data-tests-id="isTrimString" [checked]="action.stringTransform.isTrimString" + (change)="action.stringTransform.isTrimString = !action.stringTransform.isTrimString" /> + <div class="state"> + <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>Trim String</label> + </div> + </div> + </div> + <!-- from component --> <app-from [hidden]="action.actionType === 'log event' || action.actionType === 'log text' || action.actionType === 'hp metric' || action.actionType === 'Topology Search' || action.actionType === 'string transform'" class="center-content-item" #from [actionType]="action.actionType" (onFromChange)="updateFrom($event)"></app-from> @@ -25,7 +71,7 @@ <span class="label" style="padding: 0 5px; "> Field </span> - <input required name="searchField" class="input-text" data-tests-id="searchField" [(ngModel)]="action.search.searchField" + <input required name="searchField" class="input-text" [readonly]="store.viewOnly" data-tests-id="searchField" [(ngModel)]="action.search.searchField" type="text" placeholder="Search Field"> </div> </div> @@ -36,8 +82,8 @@ <span class="label" style="padding: 0 5px;"> Value </span> - <input required class="input-text" data-tests-id="searchValue" [(ngModel)]="action.search.searchValue" type="text" name="searchValue" - placeholder="Search Value"> + <input required class="input-text" data-tests-id="searchValue" [(ngModel)]="action.search.searchValue" [readonly]="store.viewOnly" + type="text" name="searchValue" placeholder="Search Value"> </div> </div> </div> @@ -59,18 +105,22 @@ <span class="label" style="padding: 0 10px; border-left: none;"> Input </span> - <input class="input-text" name="searchLeft" data-tests-id="searchLeft" [(ngModel)]="action.search.searchFilter.left" type="text"> + <input class="input-text" name="searchLeft" data-tests-id="searchLeft" [(ngModel)]="action.search.searchFilter.left" [readonly]="store.viewOnly" + type="text"> </div> <div style="margin: 0 1rem;"> <select style="height: 30px; padding: 0 10px; - border-color: #e0e0e0;" name="searchOperator" data-tests-id="searchOperator" [(ngModel)]="action.search.searchFilter.operator"> + border-color: #e0e0e0;" name="searchOperator" + data-tests-id="searchOperator" [(ngModel)]="action.search.searchFilter.operator"> <option [ngValue]="null" disabled>Select operator</option> <option value="contains">Contains</option> <option value="endsWith">Ends with</option> <option value="startsWith">Starts with</option> <option value="equals">Equals</option> <option value="notEqual">Not equal</option> + <option value="assigned">Assigned</option> + <option value="unassigned">Unassigned</option> <option value="oneOf">One of</option> <option value="NotOneOf">Not one of</option> </select> @@ -80,18 +130,19 @@ <span class="label" style="padding: 0 10px; border-left: none;"> Value </span> - <input class="input-text" name="searchRight" data-tests-id="searchRight" [(ngModel)]="action.search.searchFilter.right" type="text"> + <input class="input-text" name="searchRight" data-tests-id="searchRight" [(ngModel)]="action.search.searchFilter.right" [readonly]="store.viewOnly" + type="text"> </div> </div> </div> </div> <div style="margin: 15px 0;"> - <p-radioButton name="searchRadio" label="Updates" value="updates" [ngModel]="action.search.radio" data-tests-id="radioUpdates" - (ngModelChange)="searchRadioChange($event)"></p-radioButton> + <p-radioButton name="searchRadio" label="Updates" value="updates" [ngModel]="action.search.radio" + data-tests-id="radioUpdates" (ngModelChange)="searchRadioChange($event)"></p-radioButton> <span style="padding-left:15px;"> - <p-radioButton name="searchRadio" label="Enrich" value="enrich" [ngModel]="action.search.radio" data-tests-id="radioEnrich" - (ngModelChange)="searchRadioChange($event)"></p-radioButton> + <p-radioButton name="searchRadio" label="Enrich" value="enrich" [ngModel]="action.search.radio" + data-tests-id="radioEnrich" (ngModelChange)="searchRadioChange($event)"></p-radioButton> </span> </div> @@ -99,17 +150,18 @@ <div> <div> <div style="display: flex; flex-direction: column; align-items: flex-start; width: 100%;"> - <div *ngFor="let input of action.search.enrich.fields; let index = index;" data-tests-id="searchFields" (mouseleave)="hoveredIndex=-1" - (mouseover)="hoveredIndex=index" class="from" style="margin-bottom:1rem; display: flex; flex-direction: row; align-items: flex-start;"> + <div *ngFor="let input of action.search.enrich.fields; let index = index;" data-tests-id="searchFields" + (mouseleave)="hoveredIndex=-1" (mouseover)="hoveredIndex=index" class="from" style="margin-bottom:1rem; display: flex; flex-direction: row; align-items: flex-start;"> <div class="from-container" style="display: flex; flex-direction: row;"> <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">Fields</span> - <input class="input-text" [(ngModel)]="input.value" type="text" data-tests-id="searchFieldValue" required name="searchFeild[{{index}}]"> + <input class="input-text" [readonly]="store.viewOnly" [(ngModel)]="input.value" type="text" data-tests-id="searchFieldValue" + required name="searchFeild[{{index}}]"> </div> - <button mat-icon-button class="button-remove" [ngStyle]="hoveredIndex === index ? {'opacity':'1'} : {'opacity':'0'}" (click)="removeSearchField(index)" - *ngIf="action.search.enrich.fields.length > 1" style="box-shadow: none; height: 24px; width: 24px; display:flex" - data-tests-id="btnDelete"> + <button mat-icon-button class="button-remove" [ngStyle]="hoveredIndex === index ? {'opacity':'1'} : {'opacity':'0'}" + (click)="removeSearchField(index)" *ngIf="action.search.enrich.fields.length > 1" style="box-shadow: none; height: 24px; width: 24px; display:flex" + data-tests-id="btnDelete" [disabled]="store.viewOnly"> <mat-icon class="md-24">delete</mat-icon> </button> </div> @@ -118,8 +170,9 @@ <div style="display:flex; justify-content: space-between;"> <div style="display: flex; align-items: center;"> <button mat-mini-fab color="primary" (click)="addSearchFeild()" style="box-shadow: none; height: 16px; width: 16px; display:flex" - data-tests-id="btnAddSearchFeild"> - <span style="padding-left: 2px; display: flex; justify-content: center; align-items: center" [innerHTML]="'plus' | feather:12"></span> + data-tests-id="btnAddSearchFeild" [disabled]="store.viewOnly"> + <span style="padding-left: 2px; display: flex; justify-content: center; align-items: center" + [innerHTML]="'plus' | feather:12"></span> </button> <span style="color: #009FDB; display: flex; justify-content: center; padding-left: 6px">Add Fields</span> </div> @@ -134,7 +187,7 @@ <span class="label" style="padding: 0 5px;"> Prefix </span> - <input required class="input-text" name="searchPrefix" data-tests-id="searchPrefix" [(ngModel)]="action.search.enrich.prefix" + <input required class="input-text" [readonly]="store.viewOnly" name="searchPrefix" data-tests-id="searchPrefix" [(ngModel)]="action.search.enrich.prefix" type="text" placeholder="Search prefix"> </div> </div> @@ -150,16 +203,19 @@ </tr> </thead> <tbody ngModelGroup="searchUpdateKeyValue" #searchUpdateKeyValue="ngModelGroup"> - <tr *ngFor="let item of action.search.updates; let index = index;" (mouseleave)="hoveredIndex=-1" (mouseover)="hoveredIndex=index"> + <tr *ngFor="let item of action.search.updates; let index = index;" (mouseleave)="hoveredIndex=-1" + (mouseover)="hoveredIndex=index"> <th style="height: 30px; border: 1px solid #F3F3F3;"> - <input [(ngModel)]="item.key" required name="searchKey[{{index}}]" data-tests-id="updatesKey" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;"> + <input [(ngModel)]="item.key" [readonly]="store.viewOnly" required name="searchKey[{{index}}]" data-tests-id="updatesKey" 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" required name="searchValue[{{index}}]" data-tests-id="updatesValue" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;"> + <input [(ngModel)]="item.value" [readonly]="store.viewOnly" required name="searchValue[{{index}}]" data-tests-id="updatesValue" + 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)="removeSearchUpdatesRow(index)" *ngIf="action.search.updates.length > 1" + class="button-remove" (click)="removeSearchUpdatesRow(index)" *ngIf="action.search.updates.length > 1" [disabled]="store.viewOnly" style="height: 24px; width: 24px; display:flex; box-shadow: none;"> <mat-icon class="md-24">delete</mat-icon> </button> @@ -170,7 +226,8 @@ <div style="display:flex; justify-content: flex-start;"> <div style="display: flex; align-items: center;"> <button mat-mini-fab color="primary" (click)="addSearchUpdateRow()" 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> + <span style="padding-left: 2px; display: flex; justify-content: center; align-items: center" + [innerHTML]="'plus' | feather:12"></span> </button> <span style="color: #009FDB; display: flex; justify-content: center; padding-left: 6px">Add Row</span> </div> @@ -181,56 +238,11 @@ <!-- Hp Metric --> <div *ngIf="action.actionType === 'hp metric'" class="center-content-item"> - <ng-select name="hp-metric" [items]="metrics" required [virtualScroll]="true" placeholder="Select Parser Type" [(ngModel)]="action.selectedHpMetric" - (change)="metricChange($event)" data-tests-id="hp metric"> + <ng-select name="hp-metric" [items]="metrics" required [virtualScroll]="true" placeholder="Select Parser Type" + [(ngModel)]="action.selectedHpMetric" (change)="metricChange($event)" data-tests-id="hp metric"> </ng-select> </div> - <!-- string transform --> - <div *ngIf="action.actionType === 'string transform'" class="center-content-item"> - - <div style="display:flex; margin-bottom:10px;"> - <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;"> - Start Value - </span> - <input required class="input-text" data-tests-id="startValue" name="title" [(ngModel)]="action.stringTransform.startValue" - type="text" placeholder="Select start value"> - </div> - </div> - </div> - - <app-target [hidden]="! (action.actionType === 'string transform')" #target style="width: 100%" (onTargetChange)="updateTarget($event)" - [nodes]="action.nodes"> - </app-target> - </div> - - <div class="from" style="padding-right: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;"> - Target case - </span> - <input required class="input-text" data-tests-id="targetCase" name="title" [(ngModel)]="action.stringTransform.targetCase" - type="text" placeholder="Select target case"> - </div> - </div> - </div> - - <div class="pretty p-svg" style="margin: 1rem 0rem;"> - <input type="checkbox" name="isTrimString" data-tests-id="isTrimString" [checked]="action.stringTransform.isTrimString" (change)="action.stringTransform.isTrimString = !action.stringTransform.isTrimString" - /> - <div class="state"> - <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>Trim String</label> - </div> - </div> - </div> <!-- log Event --> <div *ngIf="action.actionType === 'log event'" class="center-content-item"> @@ -238,8 +250,8 @@ <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" name="title" [(ngModel)]="action.logEvent.title" type="text" - placeholder="The title for the log entry"> + <input required class="input-text" [readonly]="store.viewOnly" data-tests-id="InputLogTitle" name="title" [(ngModel)]="action.logEvent.title" + type="text" placeholder="The title for the log entry"> </div> </div> </div> @@ -251,8 +263,8 @@ <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" name="logText" [(ngModel)]="action.logText.text" type="text" - placeholder="Text to log"> + <input required class="input-text" [readonly]="store.viewOnly" data-tests-id="InputLogText" name="logText" [(ngModel)]="action.logText.text" + type="text" placeholder="Text to log"> </div> </div> </div> @@ -267,7 +279,7 @@ <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" required name="fromFormat" [(ngModel)]="action.dateFormatter.fromFormat" + <input data-tests-id="InputFromFormat" [readonly]="store.viewOnly" class="input-text" required name="fromFormat" [(ngModel)]="action.dateFormatter.fromFormat" type="text"> </div> </div> @@ -276,7 +288,7 @@ <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" required name="toFormat" [(ngModel)]="action.dateFormatter.toFormat" + <input data-tests-id="InputToFormat" [readonly]="store.viewOnly" class="input-text" required name="toFormat" [(ngModel)]="action.dateFormatter.toFormat" type="text"> </div> </div> @@ -288,7 +300,7 @@ <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" required name="fromTimezone" [(ngModel)]="action.dateFormatter.fromTimezone" + <input class="input-text" [readonly]="store.viewOnly" data-tests-id="InputFromTimezone" required name="fromTimezone" [(ngModel)]="action.dateFormatter.fromTimezone" type="text"> </div> </div> @@ -297,7 +309,7 @@ <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" required name="toTimezone" [(ngModel)]="action.dateFormatter.toTimezone" + <input class="input-text" [readonly]="store.viewOnly" data-tests-id="InputToTimezone" required name="toTimezone" [(ngModel)]="action.dateFormatter.toTimezone" type="text"> </div> </div> @@ -314,8 +326,8 @@ <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" required name="findWhat" [(ngModel)]="action.replaceText.find" type="text" - placeholder="Find text"> + <input data-tests-id="InputFindWhat" [readonly]="store.viewOnly" class="input-text" required name="findWhat" [(ngModel)]="action.replaceText.find" + type="text" placeholder="Find text"> </div> </div> @@ -329,7 +341,7 @@ <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" required name="replaceWith" [(ngModel)]="action.replaceText.replace" + <input data-tests-id="InputReplaceWith" [readonly]="store.viewOnly" class="input-text" required name="replaceWith" [(ngModel)]="action.replaceText.replace" type="text" placeholder="Replace with text"> </div> @@ -347,7 +359,8 @@ <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" name="logName" [(ngModel)]="action.logText.name" type="text" placeholder="Enter log name"> + <input class="input-text" [readonly]="store.viewOnly" data-tests-id="InputLogName" name="logName" [(ngModel)]="action.logText.name" + type="text" placeholder="Enter log name"> </div> </div> </div> @@ -358,8 +371,8 @@ <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" required name="logLevel" [(ngModel)]="action.logText.level" type="text" - placeholder="The title for the log entry"> + <input class="input-text" [readonly]="store.viewOnly" data-tests-id="InputLogLevel" required name="logLevel" [(ngModel)]="action.logText.level" + type="text" placeholder="The title for the log entry"> </div> </div> </div> @@ -372,8 +385,8 @@ <!-- 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()" - /> + <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"> @@ -384,7 +397,8 @@ </div> </div> <div *ngIf="action.map.haveDefault" class="input-wrapper"> - <input type="text" required name="defaultInput" data-tests-id="defaultInput" [(ngModel)]="action.map.default" class="input"> + <input type="text" required name="defaultInput" data-tests-id="defaultInput" [(ngModel)]="action.map.default" [readonly]="store.viewOnly" + class="input"> </div> </div> @@ -398,14 +412,15 @@ <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" required name="mapKey[{{index}}]" data-tests-id="key" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;"> + <input [(ngModel)]="item.key" required name="mapKey[{{index}}]" data-tests-id="key" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;" [readonly]="store.viewOnly"> </th> <th style="height: 30px; border: 1px solid #F3F3F3;"> - <input [(ngModel)]="item.value" required name="mapValue[{{index}}]" data-tests-id="value" type="text" style="width:97%; height: 100%;border: none; padding:0 5px;"> + <input [(ngModel)]="item.value" required name="mapValue[{{index}}]" data-tests-id="value" type="text" + style="width:97%; height: 100%;border: none; padding:0 5px;" [readonly]="store.viewOnly"> </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;"> + class="button-remove" (click)="removeMapRow(index)" *ngIf="action.map.values.length > 1" style="height: 24px; width: 24px; display:flex; box-shadow: none;" [disabled]="store.viewOnly"> <mat-icon class="md-24">delete</mat-icon> </button> </th> @@ -416,7 +431,7 @@ <div style="display:flex; justify-content: flex-start;"> <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;"> + <button mat-mini-fab color="primary" (click)="addMapRow()" data-tests-id="btn-add-row" style="height: 16px; width: 16px; display:flex; box-shadow: none;" [disabled]="store.viewOnly"> <span style="padding-left: 2px; display: flex; justify-content: center; align-items: center" [innerHTML]="'plus' | feather:12"></span> <!-- <mat-icon>add</mat-icon> --> </button> @@ -429,7 +444,8 @@ height: 100%; display: flex; justify-content: center; - align-items: center;" [innerHTML]="'download' | feather:20"></span> + align-items: center;" + [innerHTML]="'download' | feather:20"></span> </div> <input type="file" id="file" accept=".csv" (change)="handleFileInput($event.target.files)"> </div> diff --git a/public/src/app/rule-engine/action/action.component.ts b/public/src/app/rule-engine/action/action.component.ts index 6658d52..dfdb83f 100644 --- a/public/src/app/rule-engine/action/action.component.ts +++ b/public/src/app/rule-engine/action/action.component.ts @@ -69,7 +69,7 @@ export class ActionComponent implements OnInit, AfterViewInit { } addSearchFeild() { - this.action.search.enrich.fields.push(''); + this.action.search.enrich.fields.push({ value: '' }); } searchRadioChange(radioType) { diff --git a/public/src/app/rule-engine/condition/condition.component.html b/public/src/app/rule-engine/condition/condition.component.html index 7ba21e2..3a26823 100644 --- a/public/src/app/rule-engine/condition/condition.component.html +++ b/public/src/app/rule-engine/condition/condition.component.html @@ -5,7 +5,7 @@ <div *ngIf="node.data.name === 'operator'" style="background: #F2F2F2;"> <div style="display: flex; margin-left: 5px; align-items: center; min-height: 35px;"> <div style="display: flex; align-items: center;" *ngIf="showType"> - <select style="padding: 5px;margin-left: 10px;" [(ngModel)]="node.data.type"> + <select style="padding: 5px;margin-left: 10px;" [(ngModel)]="node.data.type" [disabled]="store.viewOnly"> <option value="ANY">ANY</option> <option value="ALL">ALL</option> </select> @@ -18,7 +18,7 @@ <div *ngIf="isFilter" style="display: flex; width: 100%; justify-content: space-between; cursor: default;"> <div style="display: flex;"> <div style="display: flex; align-items: center; padding: 0 15px;"> - <button mat-mini-fab color="primary" data-tests-id="addCondition" (click)="addConditional(tree, node)" style="height: 16px; width: 16px; display:flex; box-shadow: none;align-items: center;justify-content: center;"> + <button mat-mini-fab color="primary" data-tests-id="addCondition" (click)="addConditional(tree, node)" style="height: 16px; width: 16px; display:flex; box-shadow: none;align-items: center;justify-content: center;" [disabled]="store.viewOnly"> <span style="width: 100%; color:white; height: 100%; @@ -31,7 +31,7 @@ </div> <div style="display: flex; align-items: center; padding: 0 25px;"> - <button mat-mini-fab color="primary" data-tests-id="addConditionGroup" [disabled]="node.data.level === 2" (click)="addConditionalGroup(tree, node)" + <button mat-mini-fab color="primary" data-tests-id="addConditionGroup" [disabled]="node.data.level === 2 || store.viewOnly" (click)="addConditionalGroup(tree, node)" style="height: 16px; width: 16px; display:flex; box-shadow: none;align-items: center;justify-content: center;"> <span style="width: 100%; color:white; @@ -46,7 +46,7 @@ </div> <!-- background: #FFFFFF; --> <div style="display: flex; align-items: center; padding: 0 5px; "> - <button data-tests-id="removeConditionNode" mat-icon-button (click)="removeConditional(tree, node)" class="button-remove"> + <button data-tests-id="removeConditionNode" mat-icon-button (click)="removeConditional(tree, node)" class="button-remove" [disabled]="store.viewOnly"> <span style="width: 100%; height: 100%; display: flex; @@ -59,7 +59,7 @@ <div *ngIf="!isFilter" style="display: flex; margin-left: auto;"> <div style="display: flex; align-items: center; padding: 0 25px;"> - <button mat-mini-fab color="primary" data-tests-id="addCondition" (click)="addConditional(tree, node)" style="height: 24px; width: 24px; display:flex; box-shadow: none;"> + <button mat-mini-fab color="primary" data-tests-id="addCondition" (click)="addConditional(tree, node)" style="height: 24px; width: 24px; display:flex; box-shadow: none;" [disabled]="store.viewOnly"> <mat-icon class="material-icons md-18">add</mat-icon> </button> <span class="btn-label">Add Condition @@ -67,7 +67,7 @@ </div> <div style="display: flex; align-items: center; padding: 0 25px;"> - <button mat-mini-fab color="primary" data-tests-id="addConditionGroup" [disabled]="node.data.level === 2" (click)="addConditionalGroup(tree, node)" + <button mat-mini-fab color="primary" data-tests-id="addConditionGroup" [disabled]="node.data.level === 2 || store.viewOnly" (click)="addConditionalGroup(tree, node)" style="height: 24px; width: 24px; display:flex; box-shadow: none;"> <mat-icon class="material-icons md-18">add</mat-icon> </button> @@ -77,7 +77,7 @@ </div> <div style="display: flex; align-items: center; padding: 0 5px;"> - <button data-tests-id="removeConditionNode" mat-icon-button (click)="removeConditional(tree, node)" class="button-remove"> + <button data-tests-id="removeConditionNode" mat-icon-button (click)="removeConditional(tree, node)" class="button-remove" [disabled]="store.viewOnly"> <span style="width: 100%; height: 100%; display: flex; @@ -96,12 +96,12 @@ <span class="label" style="padding: 0 10px; border-left: none;"> Input </span> - <input class="input-text" data-tests-id="left" [(ngModel)]="node.data.left" (ngModelChange)="modelChange($event)" ngDefaultControl + <input class="input-text" [readonly]="store.viewOnly" data-tests-id="left" [(ngModel)]="node.data.left" (ngModelChange)="modelChange($event)" ngDefaultControl type="text"> </div> <div style="margin: 0 1rem;"> - <select style="height: 30px;" data-tests-id="selectOperator" [(ngModel)]="node.data.operator" (ngModelChange)="modelChange($event)" + <select style="height: 30px;" data-tests-id="selectOperator" [(ngModel)]="node.data.operator" (ngModelChange)="modelChange($event)" [disabled]="store.viewOnly" ngDefaultControl> <option [ngValue]="null" disabled>Select operator</option> <option value="contains">Contains</option> @@ -120,12 +120,12 @@ <span class="label" style="padding: 0 10px; border-left: none;"> Value </span> - <input class="input-text" data-tests-id="right" (ngModelChange)="modelChange($event)" [(ngModel)]="node.data.right" ngDefaultControl + <input class="input-text" [readonly]="store.viewOnly" data-tests-id="right" (ngModelChange)="modelChange($event)" [(ngModel)]="node.data.right" ngDefaultControl type="text"> </div> <div *ngIf="node.data.operator === 'assigned' || node.data.operator === 'unassigned'" class="pretty p-svg" style="margin: 4px 0 1em 0em; margin-left:10px;"> - <input type="checkbox" name="emptyIsAssigned" data-tests-id="emptyIsAssigned" [checked]="node.data.emptyIsAssigned" (change)="node.data.emptyIsAssigned = !node.data.emptyIsAssigned" + <input type="checkbox" name="emptyIsAssigned" [readonly]="store.viewOnly" data-tests-id="emptyIsAssigned" [checked]="node.data.emptyIsAssigned" (change)="node.data.emptyIsAssigned = !node.data.emptyIsAssigned" /> <div class="state"> <svg class="svg svg-icon" viewBox="0 0 20 20"> @@ -138,7 +138,7 @@ </div> <!-- remove button --> <div class="show-delete"> - <button mat-icon-button data-tests-id="RemoveCondition" (click)="removeConditional(tree, node)" class="button-remove"> + <button mat-icon-button data-tests-id="RemoveCondition" (click)="removeConditional(tree, node)" class="button-remove" [disabled]="store.viewOnly"> <span style="width: 100%; height: 100%; display: flex; diff --git a/public/src/app/rule-engine/condition/condition.component.ts b/public/src/app/rule-engine/condition/condition.component.ts index 200b42d..ad2324a 100644 --- a/public/src/app/rule-engine/condition/condition.component.ts +++ b/public/src/app/rule-engine/condition/condition.component.ts @@ -10,6 +10,7 @@ import { import { TreeModel, TreeComponent, ITreeOptions } from 'angular-tree-component'; import { some, cloneDeep } from 'lodash'; import { toJS } from 'mobx'; +import { Store } from '../../store/store'; @Component({ selector: 'app-condition', @@ -61,7 +62,7 @@ export class ConditionComponent implements OnInit { } } - constructor() {} + constructor(public store: Store) {} onInitialized(tree) { tree.treeModel.expandAll(); diff --git a/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html b/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html index 837e0f8..aa0434b 100644 --- a/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html +++ b/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html @@ -19,12 +19,17 @@ align-items: center;" [innerHTML]="'x' | feather:20" (click)="close(false)"></span> </div> </div> - <div class="content" style="padding: 0 0 20px 50px; font-family: 'Open Sans', sans-serif; font-size: 14px;"> - Are you sure you want to delete? + <div class="content" style="padding: 0 0 7px 50px; font-family: 'Open Sans', sans-serif; font-size: 14px;"> + <div> + Are you sure you want to delete MC configuration? + </div> + <div> + This will remove the assigned blueprint artifact. + </div> </div> <div class="buttons"> - <button mat-raised-button color="primary" style="background-color: #CF2A2A; margin-right: 10px; font-size: 14px; font-family: 'Open Sans', sans-serif; height: 36px; color:white;" + <button mat-raised-button color="primary" style="background-color: #CF2A2A; margin-right: 10px; font-size: 14px; font-family: 'Open Sans', sans-serif; height: 36px; color:white; margin-right: 3px;" (click)="close(true)" data-tests-id="btnDelete"> DELETE </button> diff --git a/public/src/app/rule-engine/confirm-popup/confirm-popup.component.scss b/public/src/app/rule-engine/confirm-popup/confirm-popup.component.scss index 4e3539d..a0f5caa 100644 --- a/public/src/app/rule-engine/confirm-popup/confirm-popup.component.scss +++ b/public/src/app/rule-engine/confirm-popup/confirm-popup.component.scss @@ -24,6 +24,6 @@ display: flex; justify-content: flex-end; border-top: solid 1px #eaeaea; - padding: 1rem; + padding: 12px; } } diff --git a/public/src/app/rule-engine/from/from.component.html b/public/src/app/rule-engine/from/from.component.html index 011f609..0da7173 100644 --- a/public/src/app/rule-engine/from/from.component.html +++ b/public/src/app/rule-engine/from/from.component.html @@ -5,14 +5,14 @@ <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">From</span> <input class="input-text" name="copyFrom" required style="min-width: 190px;" (ngModelChange)="modelChange(from)" #copyFrom="ngModel" - [(ngModel)]="from.value" type="text" data-tests-id="valueInput"> + [(ngModel)]="from.value" type="text" data-tests-id="valueInput" [readonly]="store.viewOnly"> <span class="label" (click)="showRegex(from)" [ngStyle]="from.state === 'open' ? { 'color': '#009FDB'} : {'color':'gray'}" style="padding: 0 5px; width: 50px; cursor: pointer; border: none" data-tests-id="btnFromRegex">Re/g</span> </div> <div [@state]="from.state" *ngIf="from.state === 'open'" style="display: flex; align-items: center; width: 80%;" class="label"> <span class="label" style="padding: 0 3px; width: 54px; border-top: none; border-bottom: none;">regex</span> <input class="input-text" style="min-width: 192px;" (ngModelChange)="modelChange(from)" [(ngModel)]="from.regex" type="text" - ngModel required name="RegexInput" data-tests-id="inputFromRegex"> + ngModel required name="RegexInput" [readonly]="store.viewOnly" data-tests-id="inputFromRegex"> </div> </div> </div> @@ -21,7 +21,7 @@ <div class="from-conatiner"> <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">From</span> - <input class="input-text" ngModel required name="mapFromInput" (ngModelChange)="modelChange(from)" [(ngModel)]="from.value" + <input class="input-text" ngModel required name="mapFromInput" (ngModelChange)="modelChange(from)" [(ngModel)]="from.value" [readonly]="store.viewOnly" type="text" data-tests-id="valueInput"> </div> </div> @@ -32,7 +32,7 @@ <div class="from-conatiner"> <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">From</span> - <input class="input-text" ngModel required name="dateFormatterFromInput" (ngModelChange)="modelChange(from)" [(ngModel)]="from.value" + <input class="input-text" ngModel required name="dateFormatterFromInput" (ngModelChange)="modelChange(from)" [(ngModel)]="from.value" [readonly]="store.viewOnly" type="text" data-tests-id="valueInput"> </div> </div> @@ -46,7 +46,7 @@ <div style="display: flex; align-items: center; width: 100%;"> <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">From</span> - <input class="input-text" (ngModelChange)="modelChange(from)" [(ngModel)]="input.value" type="text" data-tests-id="valueInput" + <input class="input-text" (ngModelChange)="modelChange(from)" [(ngModel)]="input.value" type="text" data-tests-id="valueInput" [readonly]="store.viewOnly" ngModel required name="clear-nfs[{{index}}]"> </div> @@ -75,7 +75,7 @@ <div style="display: flex; align-items: center; width: 100%;"> <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">From</span> - <input class="input-text" (ngModelChange)="modelChange(from)" [(ngModel)]="input.value" type="text" data-tests-id="valueInput" + <input class="input-text" (ngModelChange)="modelChange(from)" [(ngModel)]="input.value" type="text" data-tests-id="valueInput" [readonly]="store.viewOnly" ngModel required name="clear[{{index}}]"> </div> @@ -106,7 +106,7 @@ <div style="display: flex; align-items: center; width: 100%;"> <div style="display: flex; align-items: center; width: 100%;" class="label"> <span class="label" style="padding: 0 5px; width: 50px;">From</span> - <input class="input-text" (ngModelChange)="modelChange(from)" [(ngModel)]="input.value" type="text" data-tests-id="valueInput" + <input class="input-text" (ngModelChange)="modelChange(from)" [(ngModel)]="input.value" type="text" data-tests-id="valueInput" [readonly]="store.viewOnly" ngModel required name="concat[{{index}}]"> </div> diff --git a/public/src/app/rule-engine/from/from.component.ts b/public/src/app/rule-engine/from/from.component.ts index c526103..a33646e 100644 --- a/public/src/app/rule-engine/from/from.component.ts +++ b/public/src/app/rule-engine/from/from.component.ts @@ -18,6 +18,7 @@ import { keyframes } from '@angular/animations'; import { NgForm } from '@angular/forms'; +import { Store } from '../../store/store'; @Component({ selector: 'app-from', @@ -53,7 +54,7 @@ export class FromComponent implements AfterViewInit { hoveredIndex; // public keyUp = new BehaviorSubject<string>(null); - constructor(private changeDetector: ChangeDetectorRef) {} + constructor(private changeDetector: ChangeDetectorRef, public store: Store) {} ngAfterViewInit(): void { if ( diff --git a/public/src/app/rule-engine/rule-list/rule-list.component.html b/public/src/app/rule-engine/rule-list/rule-list.component.html index 9a9997e..5085563 100644 --- a/public/src/app/rule-engine/rule-list/rule-list.component.html +++ b/public/src/app/rule-engine/rule-list/rule-list.component.html @@ -2,7 +2,7 @@ <div class="header"> <span style="font-size: 18px; margin-left:20px;">Rule Engine</span> <div style="display:flex"> - <button mat-raised-button (click)="translateRules()" color="primary" [disabled]="store.ruleList.length === 0 || entryPhase === '' || publishPhase === '' " + <button mat-raised-button (click)="translateRules()" color="primary" [disabled]="store.ruleList.length === 0 || entryPhase === '' || publishPhase === '' || store.viewOnly" style="margin-right: 10px; width: 113px;height: 36px;" data-tests-id="btnTranslate"> Translate </button> @@ -13,7 +13,7 @@ <div style="margin: 0rem 1rem; flex-grow: 1; overflow-y: auto;"> <!-- error container --> - <div *ngIf="error" style="color: white; background: red; padding: 1rem; border-radius: 5px; font-weight: bold; margin-bottom: 15px;"> + <div *ngIf="error && error.length > 0" style="color: white; background: red; padding: 1rem; border-radius: 5px; font-weight: bold; margin-bottom: 15px;"> {{ error }} </div> @@ -26,7 +26,7 @@ <div class="field-label required" style="padding-right: 10px;"> Entry Phase </div> - <input type="text" name="entryPhase" required [(ngModel)]="entryPhase" class="field-text" style="width:250px;" + <input name="entryPhase" [readonly]="store.viewOnly" required [(ngModel)]="entryPhase" class="field-text" style="width:250px;" data-tests-id="entryPhase" /> </div> @@ -34,16 +34,16 @@ <div class="field-label required" style="padding-right: 10px;"> Publish Phase </div> - <input type="text" name="publishPhase" [(ngModel)]="publishPhase" class="field-text" style="width:250px;" + <input name="publishPhase" [readonly]="store.viewOnly" [(ngModel)]="publishPhase" class="field-text" style="width:250px;" data-tests-id="publishPhase" /> </div> </div> </div> - <div style="margin-bottom: 24px;"> + <div style="margin-bottom: 24px;" *ngIf="versionType.selectedEvent"> <div style="display: flex; justify-content: space-between; align-items: baseline;"> <div class="pretty p-svg" style="margin-top: 24px; margin-bottom: 10px;"> - <input type="checkbox" name="isCondition" data-tests-id="isFilter" [checked]="ifStatement" (change)="filterCheckbox()" /> + <input type="checkbox" name="isCondition" data-tests-id="isFilter" [checked]="ifStatement" (change)="filterCheckbox()" [disabled]="store.viewOnly" /> <div class="state"> <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" @@ -67,10 +67,10 @@ </div> <div *ngIf="targetSource && (tabName.toLowerCase().includes('highlandpark') || tabName.toLowerCase().includes('hp'))"> - <div style="display: flex; align-items: baseline; width: 170px; position:relative;" (mouseenter)="showBtnList = true" + <div style="display: flex; align-items: baseline; width: 170px; height:35px; position:relative;" (mouseenter)="showBtnList = true" (mouseleave)="showBtnList = false" data-tests-id="addGroup"> <div style="display: flex; align-items: center;"> - <button mat-mini-fab color="primary" id="addGroup" style="height: 16px; width: 16px; display:flex; justify-content: center; background-color: white; border: 1.5px solid #009fdb; color: #009fdb; cursor: default;"> + <button mat-mini-fab color="primary" id="addGroup" style="height: 16px; width: 16px; display:flex; justify-content: center; background-color: white; border: 1.5px solid #009fdb; color: #009fdb; cursor: default;" [disabled]="store.viewOnly"> <span style="width: 100%; color:#009fdb; height: 100%; @@ -111,19 +111,7 @@ </div> <input type="text" name="phase" [(ngModel)]="item.phase" class="field-text" data-tests-id="phase" /> - <!-- <div class="btn-wrapper" *ngIf="item.groupId.substring(0, 1).toLowerCase() === 'm'"> - <button mat-icon-button class="gray button-options" data-tests-id="importCDAP"> - <span style="width: 100%; - color:#5a5a5a; - height: 100%; - display: flex; - justify-content: center; - align-items: center;" [innerHTML]="'upload' | feather:20"></span> - </button> - <input type="file" id="file" accept=".json" (change)="handleImportCDAP($event.target.files, item.groupId, item.phase)"> - </div> --> - - <button mat-icon-button (click)="deleteGroup(item.groupId)" [disabled]="disableDeleteGroup(item.groupId)" + <button mat-icon-button (click)="deleteGroup(item.groupId)" [disabled]="disableDeleteGroup(item.groupId)" [disabled]="store.viewOnly" class="gray" data-tests-id="deleteGroup"> <span style="width: 100%; height: 100%; @@ -146,7 +134,7 @@ <mat-icon class="md-24">mode_edit</mat-icon> </button> <button mat-icon-button class='btn-list' (click)="copyRule(rule, index, {groupId: item.groupId, phase: item.phase})" - data-tests-id="copyRule"> + data-tests-id="copyRule" [disabled]="store.viewOnly"> <span style="width: 100%; height: 100%; display: flex; @@ -155,25 +143,43 @@ [innerHTML]="'copy' | feather:20"></span> </button> <button (click)="removeItem(rule.uid, item.groupId)" data-tests-id="deleteRule" class="btn-list" - mat-icon-button [disabled]="disableDeleteGroup(item.groupId) && item.list.length === 1"> + mat-icon-button [disabled]="disableDeleteGroup(item.groupId) && item.list.length === 1 || store.viewOnly"> <mat-icon class="md-24">delete</mat-icon> </button> </div> </div> </div> - <div style="display: flex; align-items: center; margin:1em;"> - <button mat-mini-fab color="primary" id="addMoreRule" data-tests-id="addMoreRule" style="height: 16px; width: 16px; display:flex; justify-content: center;" - (click)="openAction(null,item)"> - <span style="width: 100%; - color:white; - height: 100%; - display: flex; - justify-content: center; - align-items: center;" - [innerHTML]="'plus' | feather:12"></span> - </button> - <span style="color: #009FDB; display: flex; justify-content: center; padding-left: 10px">Add Rule</span> + <div style="display: flex;"> + + <div style="display: flex; align-items: center; margin:1em;"> + <button mat-mini-fab color="primary" id="addMoreRule" data-tests-id="addMoreRule" style="height: 16px; width: 16px; display:flex; justify-content: center;" + (click)="openAction(null,item)" [disabled]="store.viewOnly"> + <span style="width: 100%; + color:white; + height: 100%; + display: flex; + justify-content: center; + align-items: center;" + [innerHTML]="'plus' | feather:12"></span> + </button> + <span style="color: #009FDB; display: flex; justify-content: center; padding-left: 10px">Add Rule</span> + </div> + <div> + <div class="btn-wrapper" *ngIf="item.groupId.substring(0, 1).toLowerCase() === 'm'" style="display: flex; align-items: center;"> + <button mat-icon-button class="gray button-options" data-tests-id="importCDAP" [disabled]="store.viewOnly"> + <span style="width: 100%; + color:#009FDB; + height: 100%; + display: flex; + justify-content: center; + align-items: center;" + [innerHTML]="'download' | feather:18"></span> + </button> + <input type="file" id="file" accept=".json" (change)="handleImportCDAP($event.target.files, item.groupId, item.phase)"> + <span style="color: #009FDB; display: flex; justify-content: center; ">Import phase</span> + </div> + </div> </div> </div> @@ -194,7 +200,7 @@ </div> </div> - <button mat-fab (click)="openAction()" style="background-color:#009FDB" data-tests-id="btnAddFirstRule"> + <button mat-fab (click)="openAction()" style="background-color:#009FDB" data-tests-id="btnAddFirstRule" [disabled]="store.viewOnly"> <span [innerHTML]="'plus' | feather:24"></span> </button> <span style="margin-top: 1rem; font-size: 14px; color: #009FDB;"> @@ -205,7 +211,7 @@ <div *ngIf="store.ruleList.length > 0 && !(tabName.toLowerCase().includes('highlandpark') || tabName.toLowerCase().includes('hp'))"> <div style="display: flex; align-items: center;"> <button mat-mini-fab color="primary" id="addMoreRule" data-tests-id="addMoreRule" style="height: 16px; width: 16px; display:flex; justify-content: center;" - (click)="openAction()"> + (click)="openAction()" [disabled]="store.viewOnly"> <span style="width: 100%; color:white; height: 100%; @@ -229,7 +235,7 @@ <button (click)="openAction(item)" data-tests-id="editRule" class="btn-list" mat-icon-button> <mat-icon class="md-24">mode_edit</mat-icon> </button> - <button mat-icon-button class='btn-list' (click)="copyRule(item, index)" data-tests-id="copyRule"> + <button mat-icon-button class='btn-list' (click)="copyRule(item, index)" data-tests-id="copyRule" *ngIf="!store.viewOnly"> <span style="width: 100%; height: 100%; display: flex; @@ -237,7 +243,7 @@ align-items: center;" [innerHTML]="'copy' | feather:20"></span> </button> - <button (click)="removeItem(item.uid, null)" data-tests-id="deleteRule" class="btn-list" mat-icon-button> + <button (click)="removeItem(item.uid, null)" data-tests-id="deleteRule" class="btn-list" mat-icon-button *ngIf="!store.viewOnly"> <mat-icon class="md-24">delete</mat-icon> </button> </div> diff --git a/public/src/app/rule-engine/rule-list/rule-list.component.scss b/public/src/app/rule-engine/rule-list/rule-list.component.scss index 822a3f4..88dd47e 100644 --- a/public/src/app/rule-engine/rule-list/rule-list.component.scss +++ b/public/src/app/rule-engine/rule-list/rule-list.component.scss @@ -159,7 +159,7 @@ background-color: #ffffff; border: solid 1px #d2d2d2; border-top: 2px solid #009fdb; - margin-left: 11px; + margin: 5px; top: 10px; // margin-top: 15px; .button-options { diff --git a/public/src/app/rule-engine/rule-list/rule-list.component.ts b/public/src/app/rule-engine/rule-list/rule-list.component.ts index c2878c1..6e3c877 100644 --- a/public/src/app/rule-engine/rule-list/rule-list.component.ts +++ b/public/src/app/rule-engine/rule-list/rule-list.component.ts @@ -47,6 +47,7 @@ export class RuleListComponent { private errorHandler(error: any) { this.store.loader = false; console.log(error); + this.error = null; this.error = []; if (typeof error === 'string') { this.error.push(error); @@ -61,6 +62,20 @@ export class RuleListComponent { } } + private notifyError(error: any) { + this.store.loader = false; + console.log(error.notes); + const errorFromServer = Object.values(error)[0] as any; + if (Object.keys(error)[0] === 'serviceExceptions') { + this.store.ErrorContent.push( + errorFromServer.map(x => x.formattedErrorMessage) + ); + } else { + this.store.ErrorContent.push(errorFromServer); + } + this.store.displayErrorDialog = true; + } + updateCondition(data) { this.condition = data; } @@ -95,6 +110,7 @@ export class RuleListComponent { this._ruleApi.deleteFilter().subscribe( response => { console.log('success import', response); + this.condition = null; this.store.loader = false; }, error => { @@ -103,6 +119,7 @@ export class RuleListComponent { this.errorHandler(error); } else { this.store.loader = false; + this.errorHandler(error); } this.condition = null; } @@ -177,23 +194,37 @@ export class RuleListComponent { .subscribe( res => { this.store.mcUuid = res.uuid; - const input = { - version: this.versionType.selectedVersion, - eventType: this.versionType.selectedEvent, - groupId: groupId, - phase: phaseName, - payload: JSON.parse(reader.result) - }; - this._ruleApi.importPhase(input).subscribe( - response => { - console.log('success import', response); - this.store.loader = false; - this.store.updateRuleList(Object.values(response.rules)); - }, - error => { - this.errorHandler(error); - } - ); + let data = ''; + try { + data = JSON.parse(reader.result as any); + const input = { + version: this.versionType.selectedVersion, + eventType: this.versionType.selectedEvent, + groupId: groupId, + phase: phaseName, + payload: data + }; + this._ruleApi.importPhase(input).subscribe( + response => { + console.log('success import', response); + this.store.loader = false; + this.store.updateRuleList(Object.values(response.rules)); + }, + error => { + this.notifyError(error); + } + ); + } catch (e) { + console.log(e); + this.errorHandler({ + policyException: { + messageId: 'Invalid JSON', + text: 'Invalid JSON', + variables: [], + formattedErrorMessage: 'Invalid JSON' + } + }); + } }, error => { this.errorHandler(error); diff --git a/public/src/app/rule-engine/target/target.component.html b/public/src/app/rule-engine/target/target.component.html index d643ad8..ec48a3d 100644 --- a/public/src/app/rule-engine/target/target.component.html +++ b/public/src/app/rule-engine/target/target.component.html @@ -1,7 +1,7 @@ <form #targetFrm="ngForm" novalidate class="target"> <div class="top-select"> <span class="label" style="border-right: none;">Target</span> - <input class="text-input" style="border-right: none;" type="text" [(ngModel)]="selectedNode.id" (ngModelChange)="inputChange()" + <input class="text-input" style="border-right: none;" type="text" [(ngModel)]="selectedNode.id" (ngModelChange)="inputChange()" [readonly]="store.viewOnly" ngModel required name="targetInput" data-tests-id="inputTarget"> <span class="label clickable" data-tests-id="openTargetTree" style="border-left: none;" (click)="showOption = !showOption"> <img src="{{imgBase}}/target.svg" alt="target"> diff --git a/public/src/app/rule-engine/target/target.component.spec.ts b/public/src/app/rule-engine/target/target.component.spec.ts index e9a69c8..474fcc0 100644 --- a/public/src/app/rule-engine/target/target.component.spec.ts +++ b/public/src/app/rule-engine/target/target.component.spec.ts @@ -1,72 +1,72 @@ -import { CUSTOM_ELEMENTS_SCHEMA, DebugElement } from '@angular/core'; -import { ComponentFixture, TestBed, async } from '@angular/core/testing'; -import { FormsModule } from '@angular/forms'; -import { MatButtonModule, MatIconModule } from '@angular/material'; -import { By } from '@angular/platform-browser'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -// component -import { TargetComponent } from './target.component'; +// import { CUSTOM_ELEMENTS_SCHEMA, DebugElement } from '@angular/core'; +// import { ComponentFixture, TestBed, async } from '@angular/core/testing'; +// import { FormsModule } from '@angular/forms'; +// import { MatButtonModule, MatIconModule } from '@angular/material'; +// import { By } from '@angular/platform-browser'; +// import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +// // component +// import { TargetComponent } from './target.component'; -describe('TargetComponent', () => { - let component: TargetComponent; - let fixture: ComponentFixture<TargetComponent>; - let de: DebugElement; - let el: HTMLElement; +// describe('TargetComponent', () => { +// let component: TargetComponent; +// let fixture: ComponentFixture<TargetComponent>; +// let de: DebugElement; +// let el: HTMLElement; - beforeEach( - async(() => { - TestBed.configureTestingModule({ - imports: [ - FormsModule, - BrowserAnimationsModule, - MatButtonModule, - MatIconModule - ], - providers: [], - schemas: [CUSTOM_ELEMENTS_SCHEMA], - declarations: [TargetComponent] - }).compileComponents(); - }) - ); +// beforeEach( +// async(() => { +// TestBed.configureTestingModule({ +// imports: [ +// FormsModule, +// BrowserAnimationsModule, +// MatButtonModule, +// MatIconModule +// ], +// providers: [], +// schemas: [CUSTOM_ELEMENTS_SCHEMA], +// declarations: [TargetComponent] +// }).compileComponents(); +// }) +// ); - beforeEach(() => { - // create component and test fixture - fixture = TestBed.createComponent(TargetComponent); - // get test component from the fixture - component = fixture.componentInstance; - fixture.detectChanges(); - }); +// beforeEach(() => { +// // create component and test fixture +// fixture = TestBed.createComponent(TargetComponent); +// // get test component from the fixture +// component = fixture.componentInstance; +// fixture.detectChanges(); +// }); - it('should be created', () => { - expect(component).toBeTruthy(); - }); +// it('should be created', () => { +// expect(component).toBeTruthy(); +// }); - it('should open target tree when click on button', () => { - const openTargetElement = fixture.debugElement - .query(By.css('span[data-tests-id=openTargetTree]')) - .nativeElement.click(); - fixture.detectChanges(); - const treeContainer = fixture.debugElement.query( - By.css('.filter-container') - ); - expect(treeContainer).not.toBeNull(); - }); +// it('should open target tree when click on button', () => { +// const openTargetElement = fixture.debugElement +// .query(By.css('span[data-tests-id=openTargetTree]')) +// .nativeElement.click(); +// fixture.detectChanges(); +// const treeContainer = fixture.debugElement.query( +// By.css('.filter-container') +// ); +// expect(treeContainer).not.toBeNull(); +// }); - it('should toggle target tree when clicking 2 times on button', () => { - fixture.debugElement - .query(By.css('span[data-tests-id=openTargetTree]')) - .nativeElement.click(); - fixture.detectChanges(); - fixture.debugElement - .query(By.css('span[data-tests-id=openTargetTree]')) - .nativeElement.click(); - fixture.detectChanges(); - const treeContainer = fixture.debugElement.query( - By.css('.filter-container') - ); - expect(treeContainer).toBeNull(); - }); +// it('should toggle target tree when clicking 2 times on button', () => { +// fixture.debugElement +// .query(By.css('span[data-tests-id=openTargetTree]')) +// .nativeElement.click(); +// fixture.detectChanges(); +// fixture.debugElement +// .query(By.css('span[data-tests-id=openTargetTree]')) +// .nativeElement.click(); +// fixture.detectChanges(); +// const treeContainer = fixture.debugElement.query( +// By.css('.filter-container') +// ); +// expect(treeContainer).toBeNull(); +// }); - // it('check when input change', () => { tree.setData({nodes: _nodes, options: - // null, events: null}); component.filterFn('liav', tree); }); -}); +// // it('check when input change', () => { tree.setData({nodes: _nodes, options: +// // null, events: null}); component.filterFn('liav', tree); }); +// }); diff --git a/public/src/app/rule-engine/target/target.component.ts b/public/src/app/rule-engine/target/target.component.ts index b200144..a0d04e9 100644 --- a/public/src/app/rule-engine/target/target.component.ts +++ b/public/src/app/rule-engine/target/target.component.ts @@ -13,6 +13,7 @@ import { TreeModel, TreeComponent, ITreeOptions } from 'angular-tree-component'; import { fuzzysearch, getBranchRequierds, validation } from './target.util'; import { environment } from '../../../environments/environment'; import { NgForm } from '@angular/forms'; +import { Store } from '../../store/store'; @Component({ selector: 'app-target', @@ -37,7 +38,7 @@ export class TargetComponent { animateAcceleration: 1.2 }; - constructor(private changeDetector: ChangeDetectorRef) {} + constructor(private changeDetector: ChangeDetectorRef, public store: Store) {} filterFn(value, treeModel: TreeModel) { treeModel.filterNodes(node => fuzzysearch(value, node.data.name)); diff --git a/public/src/app/rule-engine/version-type-select/version-type-select.component.html b/public/src/app/rule-engine/version-type-select/version-type-select.component.html index df1b497..fd3cfab 100644 --- a/public/src/app/rule-engine/version-type-select/version-type-select.component.html +++ b/public/src/app/rule-engine/version-type-select/version-type-select.component.html @@ -23,7 +23,7 @@ align-items: center;" [ngClass]="{'required' : !readOnly}"> Version </span> - <select *ngIf="!readOnly" style="height: 35px; padding: 0.3rem; border: 1px solid #d2d2d2" [(ngModel)]="selectedVersion" + <select *ngIf="!readOnly" style="height: 35px; padding: 0.3rem; border: 1px solid #d2d2d2" [(ngModel)]="selectedVersion" [disabled]="store.viewOnly" (ngModelChange)="onSelectVersion($event)" data-tests-id="selectVersion"> <option [ngValue]="null" disabled>Select Version</option> <option *ngFor="let version of versions" [value]="version" data-tests-id="option">{{version}}</option> @@ -37,7 +37,7 @@ Event Domain </span> <select *ngIf="!readOnly" style="height: 35px; padding: 0.3rem; border: 1px solid #d2d2d2" [(ngModel)]="selectedEvent" (ngModelChange)="onSelectEventType($event)" - data-tests-id="selectEventType"> + data-tests-id="selectEventType" [disabled]="store.viewOnly"> <option [ngValue]="null" disabled>Select Type</option> <option *ngFor="let event of events" [value]="event" data-tests-id="option">{{event | slice:0:event.length-6}}</option> </select> |