thingsboard/ui-ngx/src/app/modules/home/components/audit-log/audit-log-table.component.ts

138 lines
4.4 KiB
TypeScript
Raw Normal View History

2019-08-22 13:34:15 +03:00
///
2021-01-11 13:42:16 +02:00
/// Copyright © 2016-2021 The Thingsboard Authors
2019-08-22 13:34:15 +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.
///
import { Component, Input, OnInit, ViewChild } from '@angular/core';
import { AuditLogService } from '@core/http/audit-log.service';
import { TranslateService } from '@ngx-translate/core';
import { DatePipe } from '@angular/common';
2020-02-10 13:15:29 +02:00
import { MatDialog } from '@angular/material/dialog';
2019-08-22 13:34:15 +03:00
import { AuditLogMode } from '@shared/models/audit-log.models';
import { EntityId } from '@shared/models/id/entity-id';
import { UserId } from '@shared/models/id/user-id';
import { CustomerId } from '@shared/models/id/customer-id';
import { AuditLogTableConfig } from '@home/components/audit-log/audit-log-table-config';
import { EntitiesTableComponent } from '@home/components/entity/entities-table.component';
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { Authority } from '@shared/models/authority.enum';
import { getCurrentAuthUser } from '@core/auth/auth.selectors';
import { ActivatedRoute } from '@angular/router';
2019-08-22 13:34:15 +03:00
@Component({
selector: 'tb-audit-log-table',
templateUrl: './audit-log-table.component.html',
styleUrls: ['./audit-log-table.component.scss']
})
export class AuditLogTableComponent implements OnInit {
@Input()
auditLogMode: AuditLogMode;
@Input()
detailsMode: boolean;
activeValue = false;
dirtyValue = false;
entityIdValue: EntityId;
userIdValue: UserId;
customerIdValue: CustomerId;
@Input()
set active(active: boolean) {
if (this.activeValue !== active) {
this.activeValue = active;
if (this.activeValue && this.dirtyValue) {
this.dirtyValue = false;
this.entitiesTable.updateData();
}
}
}
@Input()
set entityId(entityId: EntityId) {
this.entityIdValue = entityId;
if (this.auditLogTableConfig && this.auditLogTableConfig.entityId !== entityId) {
this.auditLogTableConfig.entityId = entityId;
this.entitiesTable.resetSortAndFilter(this.activeValue);
if (!this.activeValue) {
this.dirtyValue = true;
}
}
}
@Input()
set userId(userId: UserId) {
this.userIdValue = userId;
if (this.auditLogTableConfig && this.auditLogTableConfig.userId !== userId) {
this.auditLogTableConfig.userId = userId;
this.entitiesTable.resetSortAndFilter(this.activeValue);
if (!this.activeValue) {
this.dirtyValue = true;
}
}
}
@Input()
set customerId(customerId: CustomerId) {
this.customerIdValue = customerId;
if (this.auditLogTableConfig && this.auditLogTableConfig.customerId !== customerId) {
this.auditLogTableConfig.customerId = customerId;
this.entitiesTable.resetSortAndFilter(this.activeValue);
if (!this.activeValue) {
this.dirtyValue = true;
}
}
}
@ViewChild(EntitiesTableComponent, {static: true}) entitiesTable: EntitiesTableComponent;
auditLogTableConfig: AuditLogTableConfig;
constructor(private auditLogService: AuditLogService,
private translate: TranslateService,
private datePipe: DatePipe,
private dialog: MatDialog,
private store: Store<AppState>,
private route: ActivatedRoute) {
2019-08-22 13:34:15 +03:00
}
ngOnInit() {
let updateOnInit = this.activeValue;
this.dirtyValue = !this.activeValue;
if (!this.auditLogMode) {
const authUser = getCurrentAuthUser(this.store);
if (authUser.authority === Authority.TENANT_ADMIN) {
this.auditLogMode = AuditLogMode.TENANT;
}
updateOnInit = true;
}
const pageMode = !!this.route.snapshot.data.isPage;
2019-08-22 13:34:15 +03:00
this.auditLogTableConfig = new AuditLogTableConfig(
this.auditLogService,
this.translate,
this.datePipe,
this.dialog,
this.auditLogMode,
this.entityIdValue,
this.userIdValue,
this.customerIdValue,
updateOnInit,
pageMode
2019-08-22 13:34:15 +03:00
);
}
}