blob: d4d87c96edd899398fffa68938c1962b8502223a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 {LazyLoadResult, UIRouter} from '@uirouter/angularjs';
import {default as configurationIcon} from './icons/configuration.icon.svg';
import {default as IconsService} from '../components/ignite-icon/service';
import {AppStore, navigationMenuItem} from '../store';
export default angular
.module('ignite-console.configuration-lazy', [])
.run(['$uiRouter', '$injector', function($uiRouter: UIRouter, $injector: ng.auto.IInjectorService) {
$uiRouter.stateRegistry.register({
name: 'base.configuration.**',
url: '/configuration',
async lazyLoad($transition$) {
const module = await import(/* webpackChunkName: "configuration" */'./index');
$injector.loadNewModules([module.default.name]);
return [] as LazyLoadResult;
}
});
}])
.run(['IgniteIcon', (icons: IconsService) => { icons.registerIcons({configuration: configurationIcon}); }])
.run(['Store', (store: AppStore) => {
store.dispatch(navigationMenuItem({
activeSref: 'base.configuration.**',
icon: 'configuration',
label: 'Configuration',
order: 1,
sref: 'base.configuration.overview'
}));
}])
.config(['DefaultStateProvider', (DefaultState) => {
DefaultState.setRedirectTo(() => 'base.configuration.overview');
}]);