tenants-table-config.resolver.ts
4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
///
/// Copyright © 2016-2020 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.
///
import { Injectable } from '@angular/core';
import { Resolve, Router } from '@angular/router';
import { Tenant } from '@shared/models/tenant.model';
import {
DateEntityTableColumn,
EntityTableColumn,
EntityTableConfig
} from '@home/models/entity/entities-table-config.models';
import { TenantService } from '@core/http/tenant.service';
import { TranslateService } from '@ngx-translate/core';
import { DatePipe } from '@angular/common';
import { EntityType, entityTypeResources, entityTypeTranslations } from '@shared/models/entity-type.models';
import { TenantComponent } from '@modules/home/pages/tenant/tenant.component';
import { EntityAction } from '@home/models/entity/entity-component.models';
import { TenantTabsComponent } from '@home/pages/tenant/tenant-tabs.component';
@Injectable()
export class TenantsTableConfigResolver implements Resolve<EntityTableConfig<Tenant>> {
private readonly config: EntityTableConfig<Tenant> = new EntityTableConfig<Tenant>();
constructor(private tenantService: TenantService,
private translate: TranslateService,
private datePipe: DatePipe,
private router: Router) {
this.config.entityType = EntityType.TENANT;
this.config.entityComponent = TenantComponent;
this.config.entityTabsComponent = TenantTabsComponent;
this.config.entityTranslations = entityTypeTranslations.get(EntityType.TENANT);
this.config.entityResources = entityTypeResources.get(EntityType.TENANT);
this.config.columns.push(
new DateEntityTableColumn<Tenant>('createdTime', 'common.created-time', this.datePipe, '150px'),
new EntityTableColumn<Tenant>('title', 'tenant.title', '25%'),
new EntityTableColumn<Tenant>('email', 'contact.email', '25%'),
new EntityTableColumn<Tenant>('country', 'contact.country', '25%'),
new EntityTableColumn<Tenant>('city', 'contact.city', '25%')
);
this.config.cellActionDescriptors.push(
{
name: this.translate.instant('tenant.manage-tenant-admins'),
icon: 'account_circle',
isEnabled: () => true,
onAction: ($event, entity) => this.manageTenantAdmins($event, entity)
}
);
this.config.deleteEntityTitle = tenant => this.translate.instant('tenant.delete-tenant-title', { tenantTitle: tenant.title });
this.config.deleteEntityContent = () => this.translate.instant('tenant.delete-tenant-text');
this.config.deleteEntitiesTitle = count => this.translate.instant('tenant.delete-tenants-title', {count});
this.config.deleteEntitiesContent = () => this.translate.instant('tenant.delete-tenants-text');
this.config.entitiesFetchFunction = pageLink => this.tenantService.getTenants(pageLink);
this.config.loadEntity = id => this.tenantService.getTenant(id.id);
this.config.saveEntity = tenant => this.tenantService.saveTenant(tenant);
this.config.deleteEntity = id => this.tenantService.deleteTenant(id.id);
this.config.onEntityAction = action => this.onTenantAction(action);
}
resolve(): EntityTableConfig<Tenant> {
this.config.tableTitle = this.translate.instant('tenant.tenants');
return this.config;
}
manageTenantAdmins($event: Event, tenant: Tenant) {
if ($event) {
$event.stopPropagation();
}
this.router.navigateByUrl(`tenants/${tenant.id.id}/users`);
}
onTenantAction(action: EntityAction<Tenant>): boolean {
switch (action.action) {
case 'manageTenantAdmins':
this.manageTenantAdmins(action.event, action.entity);
return true;
}
return false;
}
}