blob: fc6eb2081a1f2507de9fa0c9f80a8980874024e0 [file] [log] [blame]
Michael Landodd603392017-07-12 00:54:52 +03001/*-
2 * ============LICENSE_START=======================================================
3 * SDC
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
Idan Amit5197c8b2018-01-15 14:31:42 +020010 *
Michael Landodd603392017-07-12 00:54:52 +030011 * http://www.apache.org/licenses/LICENSE-2.0
Idan Amit5197c8b2018-01-15 14:31:42 +020012 *
Michael Landodd603392017-07-12 00:54:52 +030013 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
Michael Landoed64b5e2017-06-09 03:19:04 +030021'use strict';
Michael Landoa5445102018-03-04 14:53:33 +020022import * as _ from "lodash";
Michael Landoed64b5e2017-06-09 03:19:04 +030023import {WorkspaceMode, ComponentState} from "./constants";
24import {IAppConfigurtaion, IAppMenu, Component} from "../models";
25import {ComponentFactory} from "./component-factory";
26import {ModalsHandler} from "./modals-handler";
27
28export class MenuItem {
29 text:string;
30 callback:(...args:Array<any>) => ng.IPromise<boolean>;
31 state:string;
32 action:string;
Idan Amit5197c8b2018-01-15 14:31:42 +020033 params:any;
Michael Landoed64b5e2017-06-09 03:19:04 +030034 isDisabled:boolean;
35 disabledRoles:Array<string>;
36 blockedForTypes:Array<string>; // This item will not be shown for specific components types.
37
38 //TODO check if needed
39 alertModal:string;
40 conformanceLevelModal: boolean; // Call validateConformanceLevel API and shows conformanceLevelModal if necessary, then continue with action or invokes another action
41 confirmationModal:string; // Open confirmation modal (user should select "OK" or "Cancel"), and continue with the action.
42 emailModal:string; // Open email modal (user should fill email details), and continue with the action.
43 url:string; // Data added to menu item, in case the function need to use it, example: for function "changeLifecycleState", I need to pass also the state "CHECKOUT" that I want the state to change to.
44
45
Idan Amit5197c8b2018-01-15 14:31:42 +020046 constructor(text:string, callback:(...args:Array<any>) => ng.IPromise<boolean>, state:string, action:string, params?:any, blockedForTypes?:Array<string>) {
Michael Landoed64b5e2017-06-09 03:19:04 +030047 this.text = text;
48 this.callback = callback;
49 this.state = state;
50 this.action = action;
51 this.params = params;
52 this.blockedForTypes = blockedForTypes;
53 }
54}
55
56export class MenuItemGroup {
57 selectedIndex:number;
58 menuItems:Array<MenuItem>;
59 itemClick:boolean;
60
61 constructor(selectedIndex?:number, menuItems?:Array<MenuItem>, itemClick?:boolean) {
62 this.selectedIndex = selectedIndex;
63 this.menuItems = menuItems;
64 this.itemClick = itemClick;
65 }
66
67 public updateSelectedMenuItemText(newText:string) {
68 this.menuItems[this.selectedIndex].text = newText;
69 }
70}
71
72
73export class MenuHandler {
74
75 static '$inject' = [
76 'sdcConfig',
77 'sdcMenu',
78 'ComponentFactory',
79 '$filter',
80 'ModalsHandler',
81 '$state',
82 '$q'
83 ];
84
85 constructor(private sdcConfig:IAppConfigurtaion,
86 private sdcMenu:IAppMenu,
87 private ComponentFactory:ComponentFactory,
88 private $filter:ng.IFilterService,
89 private ModalsHandler:ModalsHandler,
90 private $state:ng.ui.IStateService,
91 private $q:ng.IQService) {
92
93 }
94
95
Michael Landoa5445102018-03-04 14:53:33 +020096 findBreadcrumbComponentIndex = (components:Array<Component>, selected:Component):number => {
97 let selectedItemIdx;
98
99 // Search the component in all components by uuid (and not uniqueid, gives access to an assets's minor versions).
100 selectedItemIdx = _.findIndex(components, (item:Component) => {
101 return item.uuid === selected.uuid;
102 });
103
104 // If not found search by invariantUUID
105 if (selectedItemIdx === -1) {
106 selectedItemIdx = _.findIndex(components, (item:Component) => {
107 //invariantUUID && Certified State matches between major versions
108 return item.invariantUUID === selected.invariantUUID && item.lifecycleState === ComponentState.CERTIFIED;
109 });
110 }
111
112 // If not found search by name (name is unique).
113 if (selectedItemIdx === -1) {
114 selectedItemIdx = _.findIndex(components, (item:Component) => {
115 return item.name === selected.name;
116 });
117 }
118
119 return selectedItemIdx;
120 };
121
Michael Landoed64b5e2017-06-09 03:19:04 +0300122 generateBreadcrumbsModelFromComponents = (components:Array<Component>, selected:Component):MenuItemGroup => {
123 let result = new MenuItemGroup(0, [], false);
124 if (components) {
Michael Landoa5445102018-03-04 14:53:33 +0200125 result.selectedIndex = this.findBreadcrumbComponentIndex(components, selected);
Michael Landoed64b5e2017-06-09 03:19:04 +0300126 let clickItemCallback = (component:Component):ng.IPromise<boolean> => {
127 this.$state.go('workspace.general', {
128 id: component.uniqueId,
129 type: component.componentType.toLowerCase(),
130 mode: WorkspaceMode.VIEW
131 });
132 return this.$q.when(true);
133 };
134
135 components.forEach((component:Component) => {
136 let menuItem = new MenuItem(
137 // component.name,
138 component.getComponentSubType() + ': ' + this.$filter('resourceName')(component.name),
139 clickItemCallback,
140 null,
141 null,
142 [component]
143 );
144 // menuItem.text = component.name;
145 result.menuItems.push(menuItem);
146 });
147 }
148 return result;
149 };
150}