summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-frame/rule-frame.component.html
blob: 925834262b7f3f1f5a010b10be5b2a75515b2015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div style="position: relative; display: flex; justify-content: flex-end; height: 100%;">

  <div *ngIf="!tabName.toLowerCase().includes('map') && !(tabName.toLowerCase().includes('highlandpark') || tabName.toLowerCase().includes('hp'))"
    style="margin: 1em;">
    <app-bar-icons [tabName]="tabName"></app-bar-icons>
  </div>

  <!-- rule engine -->
  <div style="width: 100%;" *ngIf="tabName.toLowerCase().includes('map') || tabName.toLowerCase().includes('highlandpark') || tabName.toLowerCase().includes('hp')">
    <app-slide-panel [activePane]="store.isLeftVisible ? 'left' : 'right'">
      <div leftPane style="height: 100%; overflow: auto;">
        <app-rule-list></app-rule-list>
      </div>
      <div rightPane style="height: 100%; overflow: scroll;">
        <app-action-list></app-action-list>
      </div>
    </app-slide-panel>
  </div>

</div>