141 lines
4.5 KiB
TypeScript
141 lines
4.5 KiB
TypeScript
///
|
|
/// Copyright © 2016-2023 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 { RouterModule, Routes } from '@angular/router';
|
|
import { Authority } from '@shared/models/authority.enum';
|
|
import { NgModule } from '@angular/core';
|
|
import { RouterTabsComponent } from '@home/components/router-tabs.component';
|
|
import { EntitiesTableComponent } from '@home/components/entity/entities-table.component';
|
|
import { InboxTableConfigResolver } from '@home/pages/notification/inbox/inbox-table-config.resolver';
|
|
import { SentTableConfigResolver } from '@home/pages/notification/sent/sent-table-config.resolver';
|
|
import { RecipientTableConfigResolver } from '@home/pages/notification/recipient/recipient-table-config.resolver';
|
|
import { TemplateTableConfigResolver } from '@home/pages/notification/template/template-table-config.resolver';
|
|
import { RuleTableConfigResolver } from '@home/pages/notification/rule/rule-table-config.resolver';
|
|
import { SendNotificationButtonComponent } from '@home/components/notification/send-notification-button.component';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: 'notification',
|
|
component: RouterTabsComponent,
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.CUSTOMER_USER, Authority.SYS_ADMIN],
|
|
breadcrumb: {
|
|
label: 'notification.notification-center',
|
|
icon: 'mdi:message-badge'
|
|
},
|
|
routerTabsHeaderComponent: SendNotificationButtonComponent
|
|
},
|
|
children: [
|
|
{
|
|
path: '',
|
|
children: [],
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.CUSTOMER_USER, Authority.SYS_ADMIN],
|
|
redirectTo: '/notification/inbox'
|
|
}
|
|
},
|
|
{
|
|
path: 'inbox',
|
|
component: EntitiesTableComponent,
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.CUSTOMER_USER, Authority.SYS_ADMIN],
|
|
title: 'notification.inbox',
|
|
breadcrumb: {
|
|
label: 'notification.inbox',
|
|
icon: 'inbox'
|
|
}
|
|
},
|
|
resolve: {
|
|
entitiesTableConfig: InboxTableConfigResolver
|
|
}
|
|
},
|
|
{
|
|
path: 'sent',
|
|
component: EntitiesTableComponent,
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.SYS_ADMIN],
|
|
title: 'notification.sent',
|
|
breadcrumb: {
|
|
label: 'notification.sent',
|
|
icon: 'outbox'
|
|
}
|
|
},
|
|
resolve: {
|
|
entitiesTableConfig: SentTableConfigResolver
|
|
}
|
|
},
|
|
{
|
|
path: 'templates',
|
|
component: EntitiesTableComponent,
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.SYS_ADMIN],
|
|
title: 'notification.templates',
|
|
breadcrumb: {
|
|
label: 'notification.templates',
|
|
icon: 'mdi:message-draw'
|
|
}
|
|
},
|
|
resolve: {
|
|
entitiesTableConfig: TemplateTableConfigResolver
|
|
}
|
|
},
|
|
{
|
|
path: 'recipients',
|
|
component: EntitiesTableComponent,
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.SYS_ADMIN],
|
|
title: 'notification.recipients',
|
|
breadcrumb: {
|
|
label: 'notification.recipients',
|
|
icon: 'contacts'
|
|
},
|
|
},
|
|
resolve: {
|
|
entitiesTableConfig: RecipientTableConfigResolver
|
|
}
|
|
},
|
|
{
|
|
path: 'rules',
|
|
component: EntitiesTableComponent,
|
|
data: {
|
|
auth: [Authority.TENANT_ADMIN, Authority.SYS_ADMIN],
|
|
title: 'notification.rules',
|
|
breadcrumb: {
|
|
label: 'notification.rules',
|
|
icon: 'mdi:message-cog'
|
|
}
|
|
},
|
|
resolve: {
|
|
entitiesTableConfig: RuleTableConfigResolver
|
|
}
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
providers: [
|
|
InboxTableConfigResolver,
|
|
SentTableConfigResolver,
|
|
RecipientTableConfigResolver,
|
|
TemplateTableConfigResolver,
|
|
RuleTableConfigResolver
|
|
],
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class NotificationRoutingModule { }
|