thingsboard/ui-ngx/src/app/modules/home/components/entity/entity-tabs.component.ts

129 lines
3.6 KiB
TypeScript
Raw Normal View History

2019-08-21 18:18:46 +03:00
///
2020-02-20 10:26:43 +02:00
/// Copyright © 2016-2020 The Thingsboard Authors
2019-08-21 18:18:46 +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 { BaseData, HasId } from '@shared/models/base-data';
import { PageComponent } from '@shared/components/page.component';
import { AfterViewInit, Directive, Input, OnInit, QueryList, ViewChildren } from '@angular/core';
2019-08-21 18:18:46 +03:00
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { EntityTableConfig } from '@home/models/entity/entities-table-config.models';
2020-02-10 13:15:29 +02:00
import { MatTab } from '@angular/material/tabs';
2019-08-21 18:18:46 +03:00
import { BehaviorSubject } from 'rxjs';
2019-08-22 13:34:15 +03:00
import { Authority } from '@app/shared/models/authority.enum';
import { getCurrentAuthUser } from '@core/auth/auth.selectors';
2019-08-22 13:34:15 +03:00
import { AuthUser } from '@shared/models/user.model';
import { EntityType } from '@shared/models/entity-type.models';
import { AuditLogMode } from '@shared/models/audit-log.models';
2019-08-22 18:44:48 +03:00
import { DebugEventType, EventType } from '@shared/models/event.models';
2019-08-29 20:04:59 +03:00
import { AttributeScope, LatestTelemetry } from '@shared/models/telemetry/telemetry.models';
2019-08-22 18:44:48 +03:00
import { NULL_UUID } from '@shared/models/id/has-uuid';
import { FormGroup } from '@angular/forms';
2020-04-07 17:06:04 +03:00
import { PageLink } from '@shared/models/page/page-link';
2019-08-21 18:18:46 +03:00
2020-02-10 13:10:14 +02:00
@Directive()
// tslint:disable-next-line:directive-class-suffix
2020-04-07 17:06:04 +03:00
export abstract class EntityTabsComponent<T extends BaseData<HasId>,
P extends PageLink = PageLink,
L extends BaseData<HasId> = T,
C extends EntityTableConfig<T, P, L> = EntityTableConfig<T, P, L>>
extends PageComponent implements OnInit, AfterViewInit {
2019-08-21 18:18:46 +03:00
2019-08-29 20:04:59 +03:00
attributeScopes = AttributeScope;
latestTelemetryTypes = LatestTelemetry;
2019-08-22 13:34:15 +03:00
authorities = Authority;
entityTypes = EntityType;
auditLogModes = AuditLogMode;
2019-08-22 18:44:48 +03:00
eventTypes = EventType;
debugEventTypes = DebugEventType;
2019-08-22 13:34:15 +03:00
authUser: AuthUser;
2019-08-22 18:44:48 +03:00
nullUid = NULL_UUID;
2019-08-21 18:18:46 +03:00
entityValue: T;
2020-04-07 17:06:04 +03:00
entitiesTableConfigValue: C;
2019-08-21 18:18:46 +03:00
@ViewChildren(MatTab) entityTabs: QueryList<MatTab>;
isEditValue: boolean;
@Input()
set isEdit(isEdit: boolean) {
this.isEditValue = isEdit;
}
get isEdit() {
return this.isEditValue;
}
@Input()
set entity(entity: T) {
2020-04-07 17:06:04 +03:00
this.setEntity(entity);
2019-08-21 18:18:46 +03:00
}
get entity(): T {
return this.entityValue;
}
@Input()
2020-04-07 17:06:04 +03:00
set entitiesTableConfig(entitiesTableConfig: C) {
this.setEntitiesTableConfig(entitiesTableConfig);
}
get entitiesTableConfig(): C {
return this.entitiesTableConfigValue;
}
@Input()
detailsForm: FormGroup;
2019-08-21 18:18:46 +03:00
private entityTabsSubject = new BehaviorSubject<Array<MatTab>>(null);
entityTabsChanged = this.entityTabsSubject.asObservable();
protected constructor(protected store: Store<AppState>) {
super(store);
2019-08-22 13:34:15 +03:00
this.authUser = getCurrentAuthUser(store);
2019-08-21 18:18:46 +03:00
}
ngOnInit() {
}
ngAfterViewInit(): void {
this.entityTabsSubject.next(this.entityTabs.toArray());
this.entityTabs.changes.subscribe(
() => {
this.entityTabsSubject.next(this.entityTabs.toArray());
}
);
}
2020-04-07 17:06:04 +03:00
protected setEntity(entity: T) {
this.entityValue = entity;
}
protected setEntitiesTableConfig(entitiesTableConfig: C) {
this.entitiesTableConfigValue = entitiesTableConfig;
}
2019-08-21 18:18:46 +03:00
}