2018-02-05 14:14:59 +01:00
|
|
|
export class MenuItem {
|
2022-01-05 15:41:49 +01:00
|
|
|
_id: string = ""; // for root menu in order to close the dropdown when clicked
|
2019-04-22 12:32:25 +02:00
|
|
|
title: string = "";
|
2022-01-11 11:05:40 +01:00
|
|
|
type: string = "internal";
|
2019-04-22 12:32:25 +02:00
|
|
|
url: string = ""; // external url
|
|
|
|
route: string = ""; // internal url - using angular routing and components
|
2021-01-22 19:09:44 +01:00
|
|
|
routeActive: string = ""; // route to check if it is active
|
2019-04-22 12:32:25 +02:00
|
|
|
needsAuthorization: boolean = false; // needs admin rights - mainly for user menu at this point
|
|
|
|
entitiesRequired: string[] = []; // openaire entities used in page "publication, dataset, organization, software, project, datasource"
|
|
|
|
routeRequired: string[] = []; // the routes that if aren't enable the menu item doesn't make sense
|
|
|
|
params: any = {};
|
2020-09-15 15:53:18 +02:00
|
|
|
fragment: string;
|
2019-12-23 13:52:26 +01:00
|
|
|
markAsActive: boolean;
|
|
|
|
items: MenuItem[] = [];
|
|
|
|
icon: string;
|
|
|
|
open: boolean;
|
2020-10-31 16:44:19 +01:00
|
|
|
customClass: string = null;
|
2022-03-02 11:26:28 +01:00
|
|
|
isFeatured: boolean;
|
2018-02-05 14:14:59 +01:00
|
|
|
|
2021-01-22 19:09:44 +01:00
|
|
|
constructor(id: string, title: string, url: string, route: string, needsAuthorization: boolean, entitiesRequired: string[], routeRequired: string[], params, icon=null, fragment = null, customClass = null, routeActive = null) {
|
2022-01-05 15:41:49 +01:00
|
|
|
this._id = id;
|
2019-04-22 12:32:25 +02:00
|
|
|
this.title = title;
|
|
|
|
this.url = url;
|
|
|
|
this.route = route;
|
2021-01-22 19:09:44 +01:00
|
|
|
this.routeActive = routeActive;
|
2019-04-22 12:32:25 +02:00
|
|
|
this.needsAuthorization = needsAuthorization;
|
|
|
|
this.entitiesRequired = entitiesRequired;
|
|
|
|
this.routeRequired = routeRequired;
|
|
|
|
this.params = params;
|
2019-06-25 15:26:24 +02:00
|
|
|
this.markAsActive = true;
|
2019-12-23 13:52:26 +01:00
|
|
|
this.items = [];
|
2020-06-04 13:21:32 +02:00
|
|
|
this.icon = icon;
|
2020-09-15 15:53:18 +02:00
|
|
|
this.fragment = fragment;
|
2020-10-31 16:44:19 +01:00
|
|
|
this.customClass = customClass;
|
2019-06-25 15:26:24 +02:00
|
|
|
}
|
2019-12-23 13:52:26 +01:00
|
|
|
|
|
|
|
public setMarkAsActive(showActive: boolean) {
|
2019-06-25 15:26:24 +02:00
|
|
|
this.markAsActive = showActive;
|
2018-02-05 14:14:59 +01:00
|
|
|
}
|
2019-04-22 12:32:25 +02:00
|
|
|
|
2019-12-23 13:52:26 +01:00
|
|
|
public static isTheActiveMenu(menu: MenuItem, currentRoute: string): boolean {
|
|
|
|
if (!menu.markAsActive) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-22 19:09:44 +01:00
|
|
|
if (menu.route.length > 0 && ((menu.routeActive && currentRoute.includes(menu.routeActive)) || currentRoute == menu.route)) {
|
2019-12-23 13:52:26 +01:00
|
|
|
return true;
|
|
|
|
} else if (menu.items.length > 0) {
|
|
|
|
for (let menuItem of menu.items) {
|
2020-08-17 13:03:39 +02:00
|
|
|
if (menuItem.route == currentRoute || currentRoute.indexOf(menuItem.route) != -1) {
|
2019-12-23 13:52:26 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-22 12:32:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export class RootMenuItem {
|
|
|
|
rootItem: MenuItem;
|
|
|
|
items: MenuItem[] = [];
|
2019-12-23 13:52:26 +01:00
|
|
|
|
|
|
|
public static isTheActiveRootMenu(menu: RootMenuItem, currentRoute: string): boolean {
|
|
|
|
if (!menu.rootItem.markAsActive) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (currentRoute == menu.rootItem.route) {
|
|
|
|
return true;
|
|
|
|
} else if (menu.items.length > 0) {
|
|
|
|
for (let menuItem of menu.items) {
|
|
|
|
let isActive = MenuItem.isTheActiveMenu(menuItem, currentRoute);
|
|
|
|
if (isActive) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2019-04-22 12:32:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export class SideMenuItem {
|
|
|
|
rootItem: MenuItem;
|
|
|
|
items: RootMenuItem[] = [];
|
|
|
|
ukIcon: string = '';
|
|
|
|
}
|