tenant.component.html 2.9 KB
<!--

    Copyright © 2016-2020 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, 'manageTenantAdmins')"
          [fxShow]="!isEdit">
    {{'tenant.manage-tenant-admins' | translate }}
  </button>
  <button mat-raised-button color="primary"
          [disabled]="(isLoading$ | async)"
          (click)="onEntityAction($event, 'delete')"
          [fxShow]="!hideDelete() && !isEdit">
    {{'tenant.delete' | translate }}
  </button>
  <div fxLayout="row" fxLayout.xs="column">
    <button mat-raised-button
            ngxClipboard
            (cbOnSuccess)="onTenantIdCopied($event)"
            [cbContent]="entity?.id?.id"
            [fxShow]="!isEdit">
      <mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
      <span translate>tenant.copyId</span>
    </button>
  </div>
</div>
<div class="mat-padding" fxLayout="column">
  <form [formGroup]="entityForm">
    <fieldset [disabled]="(isLoading$ | async) || !isEdit">
      <mat-form-field class="mat-block">
        <mat-label translate>tenant.title</mat-label>
        <input matInput formControlName="title" required/>
        <mat-error *ngIf="entityForm.get('title').hasError('required')">
          {{ 'tenant.title-required' | translate }}
        </mat-error>
      </mat-form-field>
      <div formGroupName="additionalInfo" fxLayout="column">
        <mat-form-field class="mat-block">
          <mat-label translate>tenant.description</mat-label>
          <textarea matInput formControlName="description" rows="2"></textarea>
        </mat-form-field>
      </div>
      <tb-contact [parentForm]="entityForm" [isEdit]="isEdit"></tb-contact>
      <div fxLayout="column">
        <mat-checkbox class="hinted-checkbox" formControlName="isolatedTbCore">
          <div>{{ 'tenant.isolated-tb-core' | translate }}</div>
          <div class="tb-hint">{{'tenant.isolated-tb-core-details' | translate}}</div>
        </mat-checkbox>
        <mat-checkbox class="hinted-checkbox" formControlName="isolatedTbRuleEngine">
          <div>{{ 'tenant.isolated-tb-rule-engine' | translate }}</div>
          <div class="tb-hint">{{'tenant.isolated-tb-rule-engine-details' | translate}}</div>
        </mat-checkbox>
      </div>
    </fieldset>
  </form>
</div>