Matteo Scandolo | fb46ae6 | 2017-08-08 09:10:50 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 19 | /// <reference path="../../../../typings/index.d.ts" /> |
| 20 | |
| 21 | import * as _ from 'lodash'; |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 22 | import {IXosStyleConfig} from '../../../index'; |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 23 | |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 24 | export interface IXosNavigationRoute { |
| 25 | label: string; |
| 26 | state?: string; |
| 27 | url?: string; |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 28 | parent?: string; |
| 29 | children?: [IXosNavigationRoute]; |
| 30 | opened?: boolean; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | export interface IXosNavigationService { |
| 34 | query(): IXosNavigationRoute[]; |
| 35 | add(route: IXosNavigationRoute): void; |
| 36 | } |
| 37 | |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 38 | export class IXosNavigationService { |
Matteo Scandolo | a6487ce | 2017-02-06 16:42:21 -0800 | [diff] [blame] | 39 | static $inject = ['$log', 'StyleConfig']; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 40 | private routes: IXosNavigationRoute[]; |
| 41 | |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 42 | constructor( |
Matteo Scandolo | a6487ce | 2017-02-06 16:42:21 -0800 | [diff] [blame] | 43 | private $log: ng.ILogService, |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 44 | private StyleConfig: IXosStyleConfig |
| 45 | ) { |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 46 | const defaultRoutes = [ |
| 47 | { |
Matteo Scandolo | a8a6fbb | 2016-12-21 16:59:08 -0800 | [diff] [blame] | 48 | label: 'Home', |
| 49 | state: 'xos.dashboard' |
| 50 | }, |
| 51 | { |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 52 | label: 'Core', |
| 53 | state: 'xos.core' |
Matteo Scandolo | 6fdd37b | 2017-11-30 10:11:10 -0800 | [diff] [blame] | 54 | } |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 55 | ]; |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 56 | // adding configuration defined routes |
Matteo Scandolo | a8a6fbb | 2016-12-21 16:59:08 -0800 | [diff] [blame] | 57 | // this.routes = StyleConfig.routes.concat(defaultRoutes).reverse(); |
| 58 | this.routes = defaultRoutes; |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 59 | this.StyleConfig.routes.forEach(r => { |
Matteo Scandolo | a8a6fbb | 2016-12-21 16:59:08 -0800 | [diff] [blame] | 60 | this.add(r); |
| 61 | }); |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | query() { |
| 65 | return this.routes; |
| 66 | } |
| 67 | |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 68 | add(route: IXosNavigationRoute, override: boolean = false) { |
Matteo Scandolo | a4a4711 | 2016-12-16 10:06:13 -0800 | [diff] [blame] | 69 | if (angular.isDefined(route.state) && angular.isDefined(route.url)) { |
| 70 | throw new Error('[XosNavigation] You can\'t provide both state and url'); |
| 71 | } |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 72 | |
Matteo Scandolo | 265c204 | 2017-03-20 10:15:40 -0700 | [diff] [blame] | 73 | // NOTE factor this out in a separate method an eventually use recursion since we can nest more routes |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 74 | let preExisting = null; |
Matteo Scandolo | a6487ce | 2017-02-06 16:42:21 -0800 | [diff] [blame] | 75 | const routeExist = _.findIndex(this.routes, (r: IXosNavigationRoute) => { |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 76 | if (r.label === route.label && (r.state === route.state || override) && r.parent === route.parent) { |
| 77 | preExisting = r; |
Matteo Scandolo | a6487ce | 2017-02-06 16:42:21 -0800 | [diff] [blame] | 78 | return true; |
| 79 | } |
Matteo Scandolo | 265c204 | 2017-03-20 10:15:40 -0700 | [diff] [blame] | 80 | else if (_.findIndex(r.children, route) > -1) { |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 81 | preExisting = r; |
Matteo Scandolo | 265c204 | 2017-03-20 10:15:40 -0700 | [diff] [blame] | 82 | return true; |
| 83 | } |
Matteo Scandolo | a6487ce | 2017-02-06 16:42:21 -0800 | [diff] [blame] | 84 | return false; |
| 85 | }) > -1; |
| 86 | |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 87 | if (routeExist && !override) { |
| 88 | this.$log.warn(`[XosNavigation] Route with label: ${route.label}, state: ${route.state} and parent: ${route.parent} already exists`); |
Matteo Scandolo | a6487ce | 2017-02-06 16:42:21 -0800 | [diff] [blame] | 89 | return; |
| 90 | } |
| 91 | |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 92 | if (angular.isDefined(route.parent)) { |
| 93 | // route parent should be a state for now |
| 94 | const parentRoute = _.find(this.routes, {state: route.parent}); |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 95 | if (angular.isDefined(parentRoute)) { |
| 96 | if (angular.isArray(parentRoute.children)) { |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 97 | if (override) { |
| 98 | _.remove(parentRoute.children, r => r === preExisting); |
| 99 | } |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 100 | parentRoute.children.push(route); |
| 101 | } |
| 102 | else { |
| 103 | parentRoute.children = [route]; |
| 104 | } |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 105 | } |
| 106 | else { |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 107 | this.$log.warn(`[XosNavigation] Parent State (${route.parent}) for state: ${route.state} does not exist`); |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 108 | return; |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | else { |
Max Chu | 6c64fdc | 2017-09-07 17:50:58 -0700 | [diff] [blame] | 112 | if (override) { |
| 113 | _.remove(this.routes, r => r === preExisting); |
| 114 | } |
Matteo Scandolo | e0d71ea | 2016-12-19 11:56:12 -0800 | [diff] [blame] | 115 | this.routes.push(route); |
| 116 | } |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 117 | } |
| 118 | } |