blob: a4b271485aadb840f1f44cbc69e82f26f79f2289 [file] [log] [blame]
/// <reference path="../typings/index.d.ts" />
import * as angular from 'angular';
import 'angular-ui-router';
import 'angular-resource';
import 'angular-cookies';
import routesConfig from './routes';
import {main} from './app/main';
import './index.scss';
import {xosCore} from './app/core/index';
import {xosDataSources} from './app/datasources/index';
import {xosViews} from './app/views/index';
import {xosTemplate} from './app/template/index';
import {
interceptorConfig, userStatusInterceptor, CredentialsInterceptor,
NoHyperlinksInterceptor
} from './interceptors';
import {IXosCrudData} from './app/views/crud/crud';
import {IXosPageTitleService} from './app/core/services/page-title';
import {IXosAuthService} from './app/datasources/rest/auth.rest';
import {IXosModelSetupService} from './app/core/services/helpers/model-setup.helpers';
import {IXosNavigationRoute} from './app/core/services/navigation';
import XosLogDecorator from './decorators';
export interface IXosState extends angular.ui.IState {
data: IXosCrudData;
};
export interface IXosAppConfig {
apiEndpoint: string;
websocketClient: string;
}
export interface IXosStyleConfig {
projectName: string;
payoff: string;
favicon: string;
background: string;
logo: string;
routes: IXosNavigationRoute[];
}
angular
.module('app', [
xosCore,
xosDataSources,
xosViews,
'ui.router',
'ngResource',
xosTemplate // template module
])
.config(XosLogDecorator)
.config(routesConfig)
.config(interceptorConfig)
.factory('UserStatusInterceptor', userStatusInterceptor)
.factory('CredentialsInterceptor', CredentialsInterceptor)
.factory('NoHyperlinksInterceptor', NoHyperlinksInterceptor)
.component('xos', main)
.run(function($log: ng.ILogService, $rootScope: ng.IRootScopeService, $transitions: any, StyleConfig: IXosStyleConfig) {
$rootScope['favicon'] = `./app/images/brand/${StyleConfig.favicon}`;
$transitions.onSuccess({ to: '**' }, (transtion) => {
if (transtion.$to().name === 'login') {
$rootScope['class'] = 'blank';
}
else {
$rootScope['class'] = '';
}
});
})
.run((
$rootScope: ng.IRootScopeService,
$transitions: any,
$location: ng.ILocationService,
$state: ng.ui.IStateService,
ModelSetup: IXosModelSetupService,
AuthService: IXosAuthService,
toastr: ng.toastr.IToastrService,
PageTitle: IXosPageTitleService
) => {
// check the user login
$transitions.onSuccess({ to: '**' }, (transtion) => {
if (!AuthService.getUser()) {
$state.go('login');
}
});
// preserve debug=true query string parameter
$transitions.onStart({ to: '**' }, (transtion) => {
// save location.search so we can add it back after transition is done
this.locationSearch = $location.search();
});
$transitions.onSuccess({ to: '**' }, (transtion) => {
// restore all query string parameters back to $location.search
if (angular.isDefined(this.locationSearch.debug) && this.locationSearch.debug) {
$location.search({debug: 'true'});
}
});
// save the last visited state before reload
const lastRoute = $location.path();
const lastQueryString = $location.search();
// if the user is authenticated
if (AuthService.getUser()) {
ModelSetup.setup()
.then(() => {
// after setting up dynamic routes, redirect to previous state
$location.path(lastRoute).search(lastQueryString);
$rootScope.$emit('xos.core.modelSetup');
});
}
});