2019-08-12 19:34:23 +03:00
|
|
|
<!--
|
|
|
|
|
|
2021-01-11 13:42:16 +02:00
|
|
|
Copyright © 2016-2021 The Thingsboard Authors
|
2019-08-12 19:34:23 +03:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
-->
|
2020-04-06 11:04:03 +03:00
|
|
|
<div class="tb-details-buttons" fxLayout.xs="column">
|
2021-12-28 12:01:26 +02:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'open')"
|
|
|
|
|
[fxShow]="!isEdit && !isDetailsPage">
|
|
|
|
|
{{'common.open-details-page' | translate }}
|
|
|
|
|
</button>
|
2020-02-20 18:50:00 +02:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'disableAccount')"
|
2021-03-01 12:19:57 +02:00
|
|
|
[fxShow]="!isEdit && isUserCredentialPresent() && isUserCredentialsEnabled()">
|
2020-02-20 18:50:00 +02:00
|
|
|
{{'user.disable-account' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'enableAccount')"
|
2021-03-01 12:19:57 +02:00
|
|
|
[fxShow]="!isEdit && isUserCredentialPresent() && !isUserCredentialsEnabled()">
|
2020-02-20 18:50:00 +02:00
|
|
|
{{'user.enable-account' | translate }}
|
|
|
|
|
</button>
|
2019-08-12 19:34:23 +03:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'displayActivationLink')"
|
|
|
|
|
[fxShow]="!isEdit">
|
|
|
|
|
{{'user.display-activation-link' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'resendActivation')"
|
|
|
|
|
[fxShow]="!isEdit">
|
|
|
|
|
{{'user.resend-activation' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'loginAsUser')"
|
|
|
|
|
*ngIf="loginAsUserEnabled$ | async"
|
|
|
|
|
[fxShow]="!isEdit">
|
|
|
|
|
{{ (entity?.authority === authority.TENANT_ADMIN ? 'user.login-as-tenant-admin' : 'user.login-as-customer-user') | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'delete')"
|
|
|
|
|
[fxShow]="!hideDelete() && !isEdit">
|
|
|
|
|
{{'user.delete' | translate }}
|
|
|
|
|
</button>
|
2021-08-06 17:04:54 +03:00
|
|
|
<div fxLayout="row" fxLayout.xs="column">
|
|
|
|
|
<button mat-raised-button
|
|
|
|
|
ngxClipboard
|
2021-08-06 18:56:26 +03:00
|
|
|
(cbOnSuccess)="onUserIdCopied($event)"
|
2021-08-06 17:04:54 +03:00
|
|
|
[cbContent]="entity?.id?.id"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
[fxShow]="!isEdit">
|
|
|
|
|
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
|
|
|
|
|
<span translate>user.copyId</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2019-08-12 19:34:23 +03:00
|
|
|
</div>
|
|
|
|
|
<div class="mat-padding" fxLayout="column">
|
2020-04-27 10:39:18 +03:00
|
|
|
<form [formGroup]="entityForm">
|
2019-08-12 19:34:23 +03:00
|
|
|
<fieldset [disabled]="(isLoading$ | async) || !isEdit">
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>user.email</mat-label>
|
|
|
|
|
<input matInput formControlName="email" required>
|
|
|
|
|
<mat-error *ngIf="entityForm.get('email').hasError('email')">
|
|
|
|
|
{{ 'user.invalid-email-format' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
<mat-error *ngIf="entityForm.get('email').hasError('required')">
|
|
|
|
|
{{ 'user.email-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>user.first-name</mat-label>
|
|
|
|
|
<input matInput formControlName="firstName">
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>user.last-name</mat-label>
|
|
|
|
|
<input matInput formControlName="lastName">
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<div formGroupName="additionalInfo" fxLayout="column">
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>user.description</mat-label>
|
|
|
|
|
<textarea matInput formControlName="description" rows="2"></textarea>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<section class="tb-default-dashboard" fxFlex fxLayout="column" *ngIf="entity?.id">
|
|
|
|
|
<section fxFlex fxLayout="column" fxLayout.gt-sm="row">
|
|
|
|
|
<tb-dashboard-autocomplete
|
|
|
|
|
fxFlex
|
|
|
|
|
placeholder="{{ 'user.default-dashboard' | translate }}"
|
|
|
|
|
formControlName="defaultDashboardId"
|
|
|
|
|
[dashboardsScope]="entity?.authority === authority.TENANT_ADMIN ? 'tenant' : 'customer'"
|
|
|
|
|
[tenantId]="entity?.tenantId?.id"
|
|
|
|
|
[customerId]="entity?.customerId?.id"
|
|
|
|
|
[selectFirstDashboard]="false"
|
|
|
|
|
></tb-dashboard-autocomplete>
|
|
|
|
|
<mat-checkbox fxFlex formControlName="defaultDashboardFullscreen">
|
|
|
|
|
{{ 'user.always-fullscreen' | translate }}
|
|
|
|
|
</mat-checkbox>
|
|
|
|
|
</section>
|
2021-02-03 12:21:55 +02:00
|
|
|
<section fxFlex fxLayout="column" fxLayout.gt-sm="row">
|
|
|
|
|
<tb-dashboard-autocomplete
|
|
|
|
|
fxFlex
|
|
|
|
|
placeholder="{{ 'dashboard.home-dashboard' | translate }}"
|
|
|
|
|
formControlName="homeDashboardId"
|
|
|
|
|
[dashboardsScope]="entity?.authority === authority.TENANT_ADMIN ? 'tenant' : 'customer'"
|
|
|
|
|
[tenantId]="entity?.tenantId?.id"
|
|
|
|
|
[customerId]="entity?.customerId?.id"
|
|
|
|
|
[selectFirstDashboard]="false"
|
|
|
|
|
></tb-dashboard-autocomplete>
|
|
|
|
|
<mat-checkbox fxFlex formControlName="homeDashboardHideToolbar">
|
|
|
|
|
{{ 'dashboard.home-dashboard-hide-toolbar' | translate }}
|
|
|
|
|
</mat-checkbox>
|
|
|
|
|
</section>
|
2019-08-12 19:34:23 +03:00
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|