123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- 'use strict';
-
- /* App Module */
-
- angular.module('app', [
- 'ui.bootstrap',
- 'ui.router',
- 'LocalStorageModule',
- 'ngMaterial',
- 'md.data.table',
- 'sasrio.angular-material-sidenav',
- 'pascalprecht.translate',
- 'angular-busy',
- 'luticate2Utils',
- 'SignalR',
- // 'luticateAuth',
- 'appSdk'
- ])
- .config(['$stateProvider', '$urlRouterProvider', 'ssSideNavSectionsProvider', '$mdThemingProvider', '$mdIconProvider', '$translateProvider',
- function($stateProvider, $urlRouterProvider, ssSideNavSectionsProvider, $mdThemingProvider, $mdIconProvider, $translateProvider) {
-
- // $mdThemingProvider
- // .theme('default')
- // .primaryPalette('blue', {
- // 'default': '700'
- // });
-
- // $mdThemingProvider.theme('default')
- // .primaryPalette('blue')
- // .accentPalette('pink');
-
- $translateProvider.useSanitizeValueStrategy('escape');
- $translateProvider.useMessageFormatInterpolation();
- $translateProvider.useStaticFilesLoader({
- prefix: 'translations/',
- suffix: '.json'
- });
- $translateProvider.preferredLanguage('en');
-
- $mdIconProvider
- .icon('md-toggle-arrow', 'img/arrow.svg');
-
- ssSideNavSectionsProvider.initWithTheme($mdThemingProvider);
- ssSideNavSectionsProvider.initWithSections([{
- id: 'toogle_1',
- name: 'home.name',
- type: 'heading',
- children: [{
- name: 'home.name',
- type: 'toggle',
- pages: [{
- id: 'toogle_1_link_1',
- name: 'home.name',
- state: 'home'
- }, {
- id: 'toogle_1_link_2',
- name: 'Home 1 2',
- state: 'home.1.2',
- hidden: true
- }, {
- id: 'toogle_1_link_3',
- name: 'home.name',
- state: 'home.1.3'
- }]
- }]
- }, {
- id: 'link_1',
- name: 'home.name',
- state: 'home.2',
- type: 'link',
- icon: 'fa fa-check'
- }, {
- id: 'link_2',
- name: 'home.name',
- state: 'home.3',
- type: 'link'
- }, {
- id: 'link_3',
- name: 'home.name',
- state: 'common.link3',
- type: 'link',
- hidden: true
- }, {
- id: 'toogle_2',
- name: 'pkguid.name',
- type: 'heading',
- children: [{
- name: 'pkguid.name',
- type: 'toggle',
- pages: [{
- id: 'toogle_2_link_1',
- name: 'common.all',
- state: 'pkguid'
- },{
- id: 'toogle_2_link_1',
- name: 'common.new',
- state: 'pkguid_add'
- }]
- }]
- }]);
-
- $stateProvider.state('root', {
- abstract: true,
- template: '<div ui-view=""></div>',
- // resolve: ['luticateAuthUsers', function(luticateAuthUsers)
- // {
- // return luticateAuthUsers.loadUserData(null);
- // }]
- });
-
- $stateProvider.state('home', {
- url:'/',
- parent: 'root',
- title: "home.name",
- reloadOnSearch: false,
- templateUrl:'views/home.html',
- controller:'HomeController'
- });
-
- $stateProvider.state('pkguid', {
- url:'/pkguids',
- parent: 'root',
- title: "pkguid.name",
- reloadOnSearch: false,
- templateUrl:'views/pkguid.html',
- controller:'PkGuidController'
- });
-
- $stateProvider.state('pkguid_add', {
- url:'/pkguids/add',
- parent: 'root',
- title: "pkguid.add.defaultTitle",
- toolbarTitle: "pkguid.add.defaultToolbarTitle",
- reloadOnSearch: false,
- templateUrl:'views/pkguidedit.html',
- controller:'PkGuidEditController',
- params: {
- pkguid: null
- }
- });
-
- $stateProvider.state('pkguid_edit', {
- url:'/pkguids/edit/:id',
- parent: 'root',
- title: "pkguid.edit.defaultTitle",
- toolbarTitle: "pkguid.edit.defaultToolbarTitle",
- reloadOnSearch: false,
- templateUrl:'views/pkguidedit.html',
- controller:'PkGuidEditController',
- params: {
- pkguid: null
- }
- });
-
- $urlRouterProvider.otherwise('/');
- }])
- .run(['$rootScope', '$transitions', 'AppUtilsBusiness', 'ssSideNav', '$translate', 'luRequest', '$mdDialog', 'luNotificationsBusiness', '$mdToast', '$state',
- function ($rootScope, $transitions, AppUtilsBusiness, ssSideNav, $translate, luRequest, $mdDialog, luNotificationsBusiness, $mdToast, $state) {
-
- AppUtilsBusiness.addApiVersionChangedCallback(function(oldVersion, newVersion) {
- $mdDialog.show(
- $mdDialog.alert()
- .title(AppUtilsBusiness.tr('common.updateDetected.title'))
- .textContent(AppUtilsBusiness.tr('common.updateDetected.text',
- {oldVersion: oldVersion, newVersion: newVersion}))
- .ok(AppUtilsBusiness.tr('common.ok')));
- });
-
- luNotificationsBusiness.init();
-
- luNotificationsBusiness.addEventCrudCallback('pkguid', function(eventName, entityType, oldEntity, newEntity)
- {
- var text = null;
- if (eventName == luNotificationsBusiness.EVENT_CREATE) {
- text = AppUtilsBusiness.tr('pkguid.notifications.create', {text: newEntity.someText});
- }
- else if (eventName == luNotificationsBusiness.EVENT_UPDATE) {
- text = AppUtilsBusiness.tr('pkguid.notifications.update', {text: newEntity.someText});
- }
- else if (eventName == luNotificationsBusiness.EVENT_DELETE) {
- text = AppUtilsBusiness.tr('pkguid.notifications.delete', {text: oldEntity.someText});
- }
- var toast = $mdToast.simple()
- .textContent(text)
- .action(eventName == luNotificationsBusiness.EVENT_DELETE ? AppUtilsBusiness.tr('common.undo') : AppUtilsBusiness.tr('common.view'))
- .highlightAction(true)
- .highlightClass('md-accent')
- .position('bottom right');
-
- $mdToast.show(toast).then(function(response) {
- if (response == 'ok') {
- if (eventName == luNotificationsBusiness.EVENT_DELETE) {
- oldEntity.id = null;
- $state.go('pkguid_add', {pkguid: oldEntity});
- }
- else {
- $state.go('pkguid_edit', {id: newEntity.id, pkguid: newEntity});
- }
- }
- });
- });
-
- // luNotificationsBusiness.addEventDeleteCallback('pkguid', function(eventName, entityType, oldEntity)
- // {
- // var toast = $mdToast.simple()
- // .textContent("PkGuid \'" + oldEntity.someText + "\' was deleted")
- // .action("Undo")
- // .highlightAction(true)
- // .highlightClass('md-accent')
- // .position('bottom right');
- //
- // $mdToast.show(toast).then(function(response) {
- // if (response == 'ok') {
- // oldEntity.id = null;
- // $state.go('pkguid_add', {pkguid: oldEntity});
- // }
- // });
- // });
- //
- // luNotificationsBusiness.addEventCreateCallback('pkguid', function(eventName, entityType, oldEntity, newEntity)
- // {
- // var toast = $mdToast.simple()
- // .textContent("PkGuid \'" + newEntity.someText + "\' was added")
- // .action("View")
- // .highlightAction(true)
- // .highlightClass('md-accent')
- // .position('bottom right');
- //
- // $mdToast.show(toast).then(function(response) {
- // if (response == 'ok') {
- // $state.go('pkguid_edit', {id: newEntity.id, pkguid: newEntity});
- // }
- // });
- // });
-
- $translate('common.appName').then(function() {
- for (var i = 0; i < ssSideNav.sections.length; ++i) {
- var a = ssSideNav.sections[i];
- a.name = AppUtilsBusiness.tr(a.name);
- if (a.children != null) {
- for (var j = 0; j < a.children.length; ++j) {
- var b = a.children[j];
- b.name = AppUtilsBusiness.tr(b.name);
- if (b.pages != null) {
- for (var k = 0; k < b.pages.length; ++k) {
- var c = b.pages[k];
- c.name = AppUtilsBusiness.tr(c.name);
- }
- }
- }
- }
- }
- }, function (error) {
- console.error(error);
- });
-
- $transitions.onEnter({}, function($transitions)
- {
- var toState = $transitions.$to();
- var title = toState.title != null ? toState.title : toState.toolbarTitle != null ? toState.toolbarTitle : null;
- var toolbarTitle = toState.toolbarTitle != null ? toState.toolbarTitle : toState.title != null ? toState.title : null;
- if (title != null) {
- AppUtilsBusiness.setTitle(AppUtilsBusiness.tr(title));
- }
- if (toolbarTitle != null) {
- AppUtilsBusiness.setToolbarTitle(AppUtilsBusiness.tr(toolbarTitle));
- }
- });
- }]);
|