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

104 lines
3.0 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';
2020-02-10 13:10:14 +02:00
import { AfterViewInit, ContentChildren, EventEmitter, Input, OnInit, Output, QueryList, ViewChildren, Directive } 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 { EntityAction } from '@home/models/entity/entity-component.models';
import { BehaviorSubject } from 'rxjs';
2019-08-22 13:34:15 +03:00
import { Authority } from '@app/shared/models/authority.enum';
import { selectAuthUser, getCurrentAuthUser } from '@core/auth/auth.selectors';
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';
2019-08-21 18:18:46 +03:00
2020-02-10 13:10:14 +02:00
@Directive()
2019-08-21 18:18:46 +03:00
export abstract class EntityTabsComponent<T extends BaseData<HasId>> extends PageComponent implements OnInit, AfterViewInit {
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;
@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) {
this.entityValue = entity;
}
get entity(): T {
return this.entityValue;
}
@Input()
entitiesTableConfig: EntityTableConfig<T>;
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());
}
);
}
}