edge.component.html 8.96 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-details-buttons" fxLayout.xs="column">
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'open')"
          [fxShow]="!isEdit && !isDetailsPage">
    {{'common.open-details-page' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'makePublic')"
          [fxShow]="!isEdit && edgeScope === 'tenant' && !isAssignedToCustomer(entity) && !entity?.customerIsPublic">
    {{'edge.make-public' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'assignToCustomer')"
          [fxShow]="!isEdit && edgeScope === 'tenant' && !isAssignedToCustomer(entity)">
    {{'edge.assign-to-customer' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'unassignFromCustomer')"
          [fxShow]="!isEdit && (edgeScope === 'customer' || edgeScope === 'tenant') && isAssignedToCustomer(entity)">
    {{ (entity?.customerIsPublic ? 'edge.make-private' : 'edge.unassign-from-customer') | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'openEdgeAssets')"
          [fxShow]="!isEdit && edgeScope !== 'customer'">
    {{'edge.manage-assets' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'openEdgeDevices')"
          [fxShow]="!isEdit && edgeScope !== 'customer'">
    {{'edge.manage-devices' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'openEdgeEntityViews')"
          [fxShow]="!isEdit && edgeScope !== 'customer'">
    {{'edge.manage-entity-views' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'openEdgeDashboards')"
          [fxShow]="!isEdit && edgeScope !== 'customer'">
    {{'edge.manage-dashboards' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'openEdgeRuleChains')"
          [fxShow]="!isEdit && edgeScope === 'tenant'">
    {{'edge.manage-rulechains' | translate }}
  </button>
  <button mat-raised-button color="primary" fxFlex.xs
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'delete')"
          [fxShow]="!hideDelete() && !isEdit">
    {{'edge.delete' | translate }}
  </button>
  <div fxLayout="row wrap" fxLayout.xs="column">
    <button mat-raised-button
            ngxClipboard
            (cbOnSuccess)="onEdgeIdCopied($event)"
            [cbContent]="entity?.id?.id"
            [disabled]="(isLoading$ | async)"
            [fxShow]="!isEdit">
      <mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
      <span translate>edge.copy-id</span>
    </button>
    <button mat-raised-button
            ngxClipboard
            (cbOnSuccess)="onEdgeInfoCopied('key')"
            [cbContent]="entity?.routingKey"
            [disabled]="(isLoading$ | async)"
            [fxShow]="!isEdit && edgeScope !== 'customer_user'">
      <mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
      <span translate>edge.copy-edge-key</span>
    </button>
    <button mat-raised-button
            ngxClipboard
            (cbOnSuccess)="onEdgeInfoCopied('secret')"
            [cbContent]="entity?.secret"
            [disabled]="(isLoading$ | async)"
            [fxShow]="!isEdit && edgeScope !== 'customer_user'">
      <mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
      <span translate>edge.copy-edge-secret</span>
    </button>
    <button mat-raised-button
            ngxClipboard
            [disabled]="(isLoading$ | async)"
            (click)="onEntityAction($event, 'syncEdge')"
            [fxShow]="!isEdit && edgeScope !== 'customer_user'">
      <mat-icon svgIcon="mdi:sync"></mat-icon>
      <span translate>edge.sync</span>
    </button>
  </div>
  <div fxLayout="row" fxLayout.xs="column">
    <div [ngSwitch]="upgradeAvailable">
      <ng-container *ngSwitchCase="false">
        <button mat-raised-button color="primary"
                [disabled]="(isLoading$ | async)"
                (click)="onEntityAction($event, 'openInstallInstructions')"
                [fxShow]="!isEdit && edgeScope !== 'customer_user'">
          <mat-icon>info_outline</mat-icon>
          <span>{{ 'edge.install-connect-instructions' | translate }}</span>
        </button>
      </ng-container>
      <ng-container *ngSwitchCase="true">
        <button mat-raised-button color="primary"
                [disabled]="(isLoading$ | async)"
                (click)="onEntityAction($event, 'openUpgradeInstructions')"
                [fxShow]="!isEdit && edgeScope !== 'customer_user'">
          <mat-icon>info_outline</mat-icon>
          <span>{{ 'edge.upgrade-instructions' | translate }}</span>
        </button>
      </ng-container>
    </div>
  </div>
</div>
<div class="mat-padding" fxLayout="column">
  <mat-form-field class="mat-block"
                  [fxShow]="!isEdit && isAssignedToCustomer(entity)
                              && !entity?.customerIsPublic && edgeScope === 'tenant'">
    <mat-label translate>edge.assignedToCustomer</mat-label>
    <input matInput disabled [ngModel]="entity?.customerTitle">
  </mat-form-field>
  <div class="tb-small" style="padding-bottom: 10px; padding-left: 2px;"
       [fxShow]="!isEdit && entity?.customerIsPublic && edgeScope === 'tenant'">
    {{ 'edge.edge-public' | translate }}
  </div>
  <form [formGroup]="entityForm">
    <fieldset [disabled]="(isLoading$ | async) || !isEdit">
      <mat-form-field class="mat-block">
        <mat-label translate>edge.name</mat-label>
        <input matInput formControlName="name" required>
        <mat-error *ngIf="entityForm.get('name').hasError('required')">
          {{ 'edge.name-required' | translate }}
        </mat-error>
        <mat-error *ngIf="entityForm.get('name').hasError('maxlength')">
          {{ 'edge.name-max-length' | translate }}
        </mat-error>
      </mat-form-field>
      <tb-entity-subtype-autocomplete
        formControlName="type"
        [required]="true"
        [entityType]="entityType.EDGE">
      </tb-entity-subtype-autocomplete>
    </fieldset>
    <div fxLayout="row" [fxShow]="edgeScope !== 'customer_user'">
        <mat-form-field class="mat-block" fxFlex>
          <mat-label translate>edge.edge-key</mat-label>
          <input matInput formControlName="routingKey">
        </mat-form-field>
      <button mat-icon-button type="button" ngxClipboard (cbOnSuccess)="onEdgeInfoCopied('key')"
              [cbContent]="entityForm?.get('routingKey').value"
              matTooltip="{{'edge.copy-edge-key' | translate}}">
        <mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
      </button>
    </div>
    <div fxLayout="row" [fxShow]="edgeScope !== 'customer_user'">
        <mat-form-field class="mat-block" fxFlex>
          <mat-label translate>edge.edge-secret</mat-label>
          <input matInput formControlName="secret">
        </mat-form-field>
      <button mat-icon-button type="button" ngxClipboard (cbOnSuccess)="onEdgeInfoCopied('secret')"
              [cbContent]="entityForm?.get('secret').value"
              matTooltip="{{'edge.copy-edge-secret' | translate}}">
        <mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
      </button>
    </div>
    <fieldset [disabled]="(isLoading$ | async) || !isEdit">
      <mat-form-field class="mat-block">
        <mat-label translate>edge.label</mat-label>
        <input matInput formControlName="label">
        <mat-error *ngIf="entityForm.get('label').hasError('maxlength')">
          {{ 'edge.label-max-length' | translate }}
        </mat-error>
      </mat-form-field>
      <div formGroupName="additionalInfo" fxLayout="column">
        <mat-form-field class="mat-block">
          <mat-label translate>edge.description</mat-label>
          <textarea matInput formControlName="description" rows="2"></textarea>
        </mat-form-field>
      </div>
    </fieldset>
  </form>
</div>