50 lines
2.3 KiB
HTML
50 lines
2.3 KiB
HTML
<!--
|
|
|
|
Copyright © 2016-2019 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.
|
|
|
|
-->
|
|
<mat-tab *ngIf="entity"
|
|
label="{{ 'attribute.attributes' | translate }}" #attributesTab="matTab">
|
|
<tb-attribute-table [active]="attributesTab.isActive"
|
|
[entityId]="entity.id"
|
|
[defaultAttributeScope]="attributeScopes.CLIENT_SCOPE">
|
|
</tb-attribute-table>
|
|
</mat-tab>
|
|
<mat-tab *ngIf="entity"
|
|
label="{{ 'attribute.latest-telemetry' | translate }}" #telemetryTab="matTab">
|
|
<tb-attribute-table [active]="telemetryTab.isActive"
|
|
[entityId]="entity.id"
|
|
[defaultAttributeScope]="latestTelemetryTypes.LATEST_TELEMETRY"
|
|
disableAttributeScopeSelection>
|
|
</tb-attribute-table>
|
|
</mat-tab>
|
|
<mat-tab *ngIf="entity"
|
|
label="{{ 'alarm.alarms' | translate }}" #alarmsTab="matTab">
|
|
<tb-alarm-table [active]="alarmsTab.isActive" [entityId]="entity.id"></tb-alarm-table>
|
|
</mat-tab>
|
|
<mat-tab *ngIf="entity"
|
|
label="{{ 'entity-view.events' | translate }}" #eventsTab="matTab">
|
|
<tb-event-table [active]="eventsTab.isActive" [defaultEventType]="eventTypes.ERROR" [tenantId]="entity.tenantId.id"
|
|
[entityId]="entity.id"></tb-event-table>
|
|
</mat-tab>
|
|
<mat-tab *ngIf="entity"
|
|
label="{{ 'relation.relations' | translate }}" #relationsTab="matTab">
|
|
<tb-relation-table [active]="relationsTab.isActive" [entityId]="entity.id"></tb-relation-table>
|
|
</mat-tab>
|
|
<mat-tab *ngIf="entity && authUser.authority === authorities.TENANT_ADMIN"
|
|
label="{{ 'audit-log.audit-logs' | translate }}" #auditLogsTab="matTab">
|
|
<tb-audit-log-table [active]="auditLogsTab.isActive" [auditLogMode]="auditLogModes.ENTITY" [entityId]="entity.id" detailsMode="true"></tb-audit-log-table>
|
|
</mat-tab>
|