alarms-table-widget.component.html 10.1 KB
<!--

    Copyright © 2016-2024 The Thingsboard Authors

    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.

-->
<div class="tb-table-widget tb-absolute-fill">
  <div fxFlex fxLayout="column" class="tb-absolute-fill">
    <mat-toolbar class="mat-mdc-table-toolbar" [fxShow]="textSearchMode && alarmsDatasource.selection.isEmpty()">
      <div class="mat-toolbar-tools">
        <button mat-icon-button
                matTooltip="{{ 'action.search' | translate }}"
                matTooltipPosition="above">
          <mat-icon>search</mat-icon>
        </button>
        <mat-form-field fxFlex>
          <mat-label>&nbsp;</mat-label>
          <input #searchInput matInput
                 [formControl]="textSearch"
                 placeholder="{{ 'alarm.search' | translate }}"/>
        </mat-form-field>
        <button mat-icon-button (click)="exitFilterMode()"
                matTooltip="{{ 'action.close' | translate }}"
                matTooltipPosition="above">
          <mat-icon>close</mat-icon>
        </button>
      </div>
    </mat-toolbar>
    <mat-toolbar class="mat-mdc-table-toolbar" color="primary" [fxShow]="!alarmsDatasource.selection.isEmpty()">
      <div class="mat-toolbar-tools">
                <span>
                  {{ translate.get('alarm.selected-alarms',
                  {count: alarmsDatasource.selection.selected.length}) | async }}
                </span>
        <span fxFlex></span>
        <button *ngIf="allowAcknowledgment"
                mat-icon-button [disabled]="isLoading$ | async"
                matTooltip="{{ 'alarm.acknowledge' | translate }}"
                matTooltipPosition="above"
                (click)="ackAlarms($event)">
          <mat-icon>done</mat-icon>
        </button>
        <button *ngIf="ctx.settings.allowClear" mat-icon-button
                [disabled]="isLoading$ | async"
                matTooltip="{{ 'alarm.clear' | translate }}"
                matTooltipPosition="above"
                (click)="clearAlarms($event)">
          <mat-icon>clear</mat-icon>
        </button>
      </div>
    </mat-toolbar>
    <div fxFlex class="table-container">
      <table mat-table [dataSource]="alarmsDatasource" [trackBy]="trackByAlarmId"
                 matSort [matSortActive]="sortOrderProperty" [matSortDirection]="pageLinkSortDirection()" matSortDisableClear>
        <ng-container matColumnDef="select" sticky>
          <mat-header-cell *matHeaderCellDef style="width: 30px;">
            <mat-checkbox (change)="$event ? alarmsDatasource.masterToggle() : null"
                          [checked]="alarmsDatasource.selection.hasValue() && (alarmsDatasource.isAllSelected() | async)"
                          [indeterminate]="alarmsDatasource.selection.hasValue() && !(alarmsDatasource.isAllSelected() | async)">
            </mat-checkbox>
          </mat-header-cell>
          <mat-cell *matCellDef="let alarm; let row = index" [style]="rowStyle(alarm, row)">
            <mat-checkbox (click)="$event.stopPropagation();"
                          (change)="$event ? alarmsDatasource.toggleSelection(alarm) : null"
                          [checked]="alarmsDatasource.isSelected(alarm)">
            </mat-checkbox>
          </mat-cell>
        </ng-container>
        <ng-container [matColumnDef]="column.def" *ngFor="let column of columns; trackBy: trackByColumnDef;">
          <mat-header-cell [ngStyle]="headerStyle(column)" *matHeaderCellDef mat-sort-header [disabled]="isSorting(column)">
            {{ column.title }}
          </mat-header-cell>
          <mat-cell *matCellDef="let alarm; let row = index"
                    [ngStyle]="cellStyle(alarm, column, row)">
            <span [innerHTML]="cellContent(alarm, column, row)"></span>
            <ng-container *ngIf="column.entityKey.key === 'assignee'">
              <span class="assignee-cell" fxLayout="row" fxLayoutAlign="start center">
                <span *ngIf="alarm.assigneeId" class="assigned-container">
                  <span class="user-avatar" [style.backgroundColor]="getAvatarBgColor(alarm)">
                    {{ getUserInitials(alarm) }}
                  </span>
                  <span [matTooltip]="getUserDisplayName(alarm)"
                        matTooltipPosition="above">
                    {{ getUserDisplayName(alarm) }}
                  </span>
                </span>
                <span *ngIf="!alarm.assigneeId" class="unassigned-container">
                  <mat-icon class="material-icons unassigned-icon">account_circle</mat-icon>
                  <span matTooltip="{{ 'alarm.unassigned' | translate }}"
                        matTooltipPosition="above"
                        style="vertical-align: middle"
                        translate>
                    alarm.unassigned
                  </span>
                </span>
                <button *ngIf="allowAssign"
                        mat-icon-button [disabled]="isLoading$ | async"
                        matTooltip="{{ 'alarm.assign' | translate }}"
                        matTooltipPosition="above"
                        (click)="openAlarmAssigneePanel($event, alarm)">
                  <mat-icon>
                    keyboard_arrow_down
                  </mat-icon>
                </button>
              </span>
            </ng-container>
          </mat-cell>
        </ng-container>
        <ng-container matColumnDef="actions" [stickyEnd]="enableStickyAction">
          <mat-header-cell *matHeaderCellDef [ngStyle.gt-md]="{ minWidth: (alarmsDatasource.countCellButtonAction  * 48) + 'px',
                                                                maxWidth: (alarmsDatasource.countCellButtonAction * 48) + 'px',
                                                                width: (alarmsDatasource.countCellButtonAction * 48) + 'px' }">
          </mat-header-cell>
          <mat-cell *matCellDef="let alarm; let row = index" [style]="rowStyle(alarm, row)" [ngStyle.gt-md]="{ minWidth: (alarmsDatasource.countCellButtonAction * 48) + 'px',
                                                               maxWidth: (alarmsDatasource.countCellButtonAction * 48) + 'px',
                                                               width: (alarmsDatasource.countCellButtonAction * 48) + 'px' }">
            <div [fxHide]="showCellActionsMenu" fxShow.gt-md fxFlex fxLayout="row" fxLayoutAlign="end">
              <ng-container *ngFor="let actionDescriptor of alarm.actionCellButtons; trackBy: trackByActionCellDescriptionId">
                <span *ngIf="!actionDescriptor.icon" style="width: 48px;"></span>
                <button mat-icon-button [disabled]="(isLoading$ | async) || !actionEnabled(alarm, actionDescriptor)"
                        *ngIf="actionDescriptor.icon"
                        matTooltip="{{ actionDescriptor.displayName }}"
                        matTooltipPosition="above"
                        (click)="onActionButtonClick($event, alarm, actionDescriptor)">
                  <mat-icon>{{actionDescriptor.icon}}</mat-icon>
                </button>
              </ng-container>
            </div>
            <div fxHide [fxShow.lt-lg]="showCellActionsMenu" *ngIf="alarm.hasActions">
              <button mat-icon-button
                      (click)="$event.stopPropagation(); ctx.detectChanges();"
                      [matMenuTriggerFor]="cellActionsMenu">
                <mat-icon class="material-icons">more_vert</mat-icon>
              </button>
              <mat-menu #cellActionsMenu="matMenu" xPosition="before">
                <ng-container *ngFor="let actionDescriptor of alarm.actionCellButtons; trackBy: trackByActionCellDescriptionId">
                  <button mat-menu-item *ngIf="actionDescriptor.icon"
                          [disabled]="(isLoading$ | async) || !actionEnabled(alarm, actionDescriptor)"
                          (click)="onActionButtonClick($event, alarm, actionDescriptor)">
                    <tb-icon matMenuItemIcon>{{actionDescriptor.icon}}</tb-icon>
                    <span>{{ actionDescriptor.displayName }}</span>
                  </button>
                </ng-container>
              </mat-menu>
            </div>
          </mat-cell>
        </ng-container>
        <mat-header-row [ngClass]="{'mat-row-select': enableSelection}" *matHeaderRowDef="displayedColumns; sticky: enableStickyHeader"></mat-header-row>
        <mat-row [ngClass]="{'mat-row-select': enableSelection,
                             'mat-selected': alarmsDatasource.isSelected(alarm),
                             'tb-current-entity': alarmsDatasource.isCurrentAlarm(alarm),
                             'invisible': alarmsDatasource.dataLoading,
                             'tb-pointer': hasRowAction}"
                 *matRowDef="let alarm; columns: displayedColumns; let row = index"
                 [ngStyle]="rowStyle(alarm, row)"
                 (click)="onRowClick($event, alarm)"></mat-row>
      </table>
      <span [fxShow]="(alarmsDatasource.isEmpty() | async) && !alarmsDatasource.dataLoading"
            fxLayoutAlign="center center"
            class="no-data-found">{{ noDataDisplayMessageText }}</span>
      <span [fxShow]="alarmsDatasource.dataLoading"
            fxLayoutAlign="center center"
            class="no-data-found">{{ 'common.loading' | translate }}</span>
    </div>
    <mat-divider *ngIf="displayPagination"></mat-divider>
    <mat-paginator *ngIf="displayPagination"
                   [length]="alarmsDatasource.total() | async"
                   [pageIndex]="pageLink.page"
                   [pageSize]="pageLink.pageSize"
                   [pageSizeOptions]="pageSizeOptions"
                   [hidePageSize]="hidePageSize"
                   showFirstLastButtons></mat-paginator>
  </div>
</div>