448 lines
18 KiB
JavaScript
448 lines
18 KiB
JavaScript
/*
|
|
* 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 thingsboardApiUser from '../api/user.service';
|
|
|
|
export default angular.module('thingsboard.menu', [thingsboardApiUser])
|
|
.factory('menu', Menu)
|
|
.name;
|
|
|
|
/*@ngInject*/
|
|
function Menu(userService, $state, $rootScope) {
|
|
|
|
var authority = '';
|
|
var sections = [];
|
|
var homeSections = [];
|
|
|
|
if (userService.isUserLoaded() === true) {
|
|
buildMenu();
|
|
}
|
|
|
|
var authenticatedHandle = $rootScope.$on('authenticated', function () {
|
|
buildMenu();
|
|
});
|
|
|
|
var service = {
|
|
authenticatedHandle: authenticatedHandle,
|
|
getHomeSections: getHomeSections,
|
|
getSections: getSections,
|
|
sectionHeight: sectionHeight,
|
|
sectionActive: sectionActive
|
|
}
|
|
|
|
return service;
|
|
|
|
function getSections() {
|
|
return sections;
|
|
}
|
|
|
|
function getHomeSections() {
|
|
return homeSections;
|
|
}
|
|
|
|
function buildMenu() {
|
|
var user = userService.getCurrentUser();
|
|
if (user) {
|
|
if (authority !== user.authority) {
|
|
sections = [];
|
|
authority = user.authority;
|
|
if (authority === 'SYS_ADMIN') {
|
|
sections = [
|
|
{
|
|
name: 'home.home',
|
|
type: 'link',
|
|
state: 'home.links',
|
|
icon: 'home'
|
|
},
|
|
{
|
|
name: 'tenant.tenants',
|
|
type: 'link',
|
|
state: 'home.tenants',
|
|
icon: 'supervisor_account'
|
|
},
|
|
{
|
|
name: 'widget.widget-library',
|
|
type: 'link',
|
|
state: 'home.widgets-bundles',
|
|
icon: 'now_widgets'
|
|
},
|
|
{
|
|
name: 'admin.system-settings',
|
|
type: 'toggle',
|
|
state: 'home.settings',
|
|
height: '120px',
|
|
icon: 'settings',
|
|
pages: [
|
|
{
|
|
name: 'admin.general',
|
|
type: 'link',
|
|
state: 'home.settings.general',
|
|
icon: 'settings_applications'
|
|
},
|
|
{
|
|
name: 'admin.outgoing-mail',
|
|
type: 'link',
|
|
state: 'home.settings.outgoing-mail',
|
|
icon: 'mail'
|
|
},
|
|
{
|
|
name: 'admin.security-settings',
|
|
type: 'link',
|
|
state: 'home.settings.security-settings',
|
|
icon: 'security'
|
|
}
|
|
]
|
|
}];
|
|
homeSections =
|
|
[{
|
|
name: 'tenant.management',
|
|
places: [
|
|
{
|
|
name: 'tenant.tenants',
|
|
icon: 'supervisor_account',
|
|
state: 'home.tenants'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'widget.management',
|
|
places: [
|
|
{
|
|
name: 'widget.widget-library',
|
|
icon: 'now_widgets',
|
|
state: 'home.widgets-bundles'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'admin.system-settings',
|
|
places: [
|
|
{
|
|
name: 'admin.general',
|
|
icon: 'settings_applications',
|
|
state: 'home.settings.general'
|
|
},
|
|
{
|
|
name: 'admin.outgoing-mail',
|
|
icon: 'mail',
|
|
state: 'home.settings.outgoing-mail'
|
|
},
|
|
{
|
|
name: 'admin.security-settings',
|
|
icon: 'security',
|
|
state: 'home.settings.security-settings'
|
|
}
|
|
]
|
|
}];
|
|
} else if (authority === 'TENANT_ADMIN') {
|
|
sections = [
|
|
{
|
|
name: 'home.home',
|
|
type: 'link',
|
|
state: 'home.links',
|
|
icon: 'home'
|
|
},
|
|
{
|
|
name: 'rulechain.rulechains',
|
|
type: 'link',
|
|
state: 'home.ruleChains',
|
|
icon: 'settings_ethernet'
|
|
},
|
|
{
|
|
name: 'customer.customers',
|
|
type: 'link',
|
|
state: 'home.customers',
|
|
icon: 'supervisor_account'
|
|
},
|
|
{
|
|
name: 'asset.assets',
|
|
type: 'link',
|
|
state: 'home.assets',
|
|
icon: 'domain'
|
|
},
|
|
{
|
|
name: 'device.devices',
|
|
type: 'link',
|
|
state: 'home.devices',
|
|
icon: 'devices_other'
|
|
},
|
|
{
|
|
name: 'entity-view.entity-views',
|
|
type: 'link',
|
|
state: 'home.entityViews',
|
|
icon: 'view_quilt'
|
|
}];
|
|
if (userService.isEdgesSupportEnabled()) {
|
|
sections.push(
|
|
{
|
|
name: 'edge.management',
|
|
type: 'toggle',
|
|
state: 'home.edges',
|
|
height: '80px',
|
|
icon: 'router',
|
|
pages: [
|
|
{
|
|
name: 'edge.edge-instances',
|
|
type: 'link',
|
|
state: 'home.edges',
|
|
icon: 'router'
|
|
},
|
|
{
|
|
name: 'edge.rulechain-templates',
|
|
type: 'link',
|
|
state: 'home.edges.ruleChains',
|
|
icon: 'settings_ethernet'
|
|
}
|
|
]
|
|
}
|
|
);
|
|
}
|
|
sections.push(
|
|
{
|
|
name: 'widget.widget-library',
|
|
type: 'link',
|
|
state: 'home.widgets-bundles',
|
|
icon: 'now_widgets'
|
|
},
|
|
{
|
|
name: 'dashboard.dashboards',
|
|
type: 'link',
|
|
state: 'home.dashboards',
|
|
icon: 'dashboards'
|
|
},
|
|
{
|
|
name: 'audit-log.audit-logs',
|
|
type: 'link',
|
|
state: 'home.auditLogs',
|
|
icon: 'track_changes'
|
|
}
|
|
);
|
|
|
|
homeSections =
|
|
[{
|
|
name: 'rulechain.rulechains',
|
|
places: [
|
|
{
|
|
name: 'rulechain.rulechains',
|
|
icon: 'settings_ethernet',
|
|
state: 'home.ruleChains'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'customer.management',
|
|
places: [
|
|
{
|
|
name: 'customer.customers',
|
|
icon: 'supervisor_account',
|
|
state: 'home.customers'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'asset.management',
|
|
places: [
|
|
{
|
|
name: 'asset.assets',
|
|
icon: 'domain',
|
|
state: 'home.assets'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'device.management',
|
|
places: [
|
|
{
|
|
name: 'device.devices',
|
|
icon: 'devices_other',
|
|
state: 'home.devices'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'entity-view.management',
|
|
places: [
|
|
{
|
|
name: 'entity-view.entity-views',
|
|
icon: 'view_quilt',
|
|
state: 'home.entityViews'
|
|
}
|
|
]
|
|
}];
|
|
if (userService.isEdgesSupportEnabled()) {
|
|
homeSections.push({
|
|
name: 'edge.management',
|
|
places: [
|
|
{
|
|
name: 'edge.edge-instances',
|
|
icon: 'router',
|
|
state: 'home.edges'
|
|
},
|
|
{
|
|
name: 'edge.rulechain-templates',
|
|
icon: 'settings_ethernet',
|
|
state: 'home.edges.ruleChains'
|
|
}
|
|
]
|
|
|
|
});
|
|
}
|
|
homeSections.push(
|
|
{
|
|
name: 'dashboard.management',
|
|
places: [
|
|
{
|
|
name: 'widget.widget-library',
|
|
icon: 'now_widgets',
|
|
state: 'home.widgets-bundles'
|
|
},
|
|
{
|
|
name: 'dashboard.dashboards',
|
|
icon: 'dashboard',
|
|
state: 'home.dashboards'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'audit-log.audit',
|
|
places: [
|
|
{
|
|
name: 'audit-log.audit-logs',
|
|
icon: 'track_changes',
|
|
state: 'home.auditLogs'
|
|
}
|
|
]
|
|
});
|
|
} else if (authority === 'CUSTOMER_USER') {
|
|
sections = [
|
|
{
|
|
name: 'home.home',
|
|
type: 'link',
|
|
state: 'home.links',
|
|
icon: 'home'
|
|
},
|
|
{
|
|
name: 'asset.assets',
|
|
type: 'link',
|
|
state: 'home.assets',
|
|
icon: 'domain'
|
|
},
|
|
{
|
|
name: 'device.devices',
|
|
type: 'link',
|
|
state: 'home.devices',
|
|
icon: 'devices_other'
|
|
},
|
|
{
|
|
name: 'entity-view.entity-views',
|
|
type: 'link',
|
|
state: 'home.entityViews',
|
|
icon: 'view_quilt'
|
|
}];
|
|
if (userService.isEdgesSupportEnabled()) {
|
|
sections.push(
|
|
{
|
|
name: 'edge.edge-instances',
|
|
type: 'link',
|
|
state: 'home.edges',
|
|
icon: 'router'
|
|
}
|
|
);
|
|
}
|
|
sections.push(
|
|
{
|
|
name: 'dashboard.dashboards',
|
|
type: 'link',
|
|
state: 'home.dashboards',
|
|
icon: 'dashboard'
|
|
}
|
|
);
|
|
|
|
homeSections =
|
|
[{
|
|
name: 'asset.view-assets',
|
|
places: [
|
|
{
|
|
name: 'asset.assets',
|
|
icon: 'domain',
|
|
state: 'home.assets'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'device.view-devices',
|
|
places: [
|
|
{
|
|
name: 'device.devices',
|
|
icon: 'devices_other',
|
|
state: 'home.devices'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'entity-view.management',
|
|
places: [
|
|
{
|
|
name: 'entity-view.entity-views',
|
|
icon: 'view_quilt',
|
|
state: 'home.entityViews'
|
|
}
|
|
]
|
|
}];
|
|
if (userService.isEdgesSupportEnabled()) {
|
|
homeSections.push(
|
|
{
|
|
name: 'edge.edge-instances',
|
|
places: [
|
|
{
|
|
name: 'edge.edge-instances',
|
|
icon: 'router',
|
|
state: 'home.edges'
|
|
}
|
|
]
|
|
}
|
|
);
|
|
}
|
|
homeSections.push(
|
|
{
|
|
name: 'dashboard.view-dashboards',
|
|
places: [
|
|
{
|
|
name: 'dashboard.dashboards',
|
|
icon: 'dashboard',
|
|
state: 'home.dashboards'
|
|
}
|
|
]
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function sectionHeight(section) {
|
|
if ($state.includes(section.state)) {
|
|
return section.height;
|
|
} else {
|
|
return '0px';
|
|
}
|
|
}
|
|
|
|
function sectionActive(section) {
|
|
return $state.includes(section.state);
|
|
}
|
|
|
|
}
|