blob: 88562ea86eda3618510b7d7d68a1507bbc706b22 [file] [log] [blame]
Matteo Scandolo63e43eb2016-12-14 14:18:53 -08001import './header.scss';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08002import {StyleConfig} from '../../config/style.config';
Matteo Scandolo63e43eb2016-12-14 14:18:53 -08003import {IWSEvent} from '../../datasources/websocket/global';
Matteo Scandolof2c3ed62016-12-15 14:32:50 -08004import {IStoreService} from '../../datasources/stores/synchronizer.store';
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -08005import {IXosAuthService} from '../../datasources/rest/auth.rest';
Matteo Scandolo67c105f2017-01-09 09:30:52 -08006import {IXosNavigationService, IXosNavigationRoute} from '../services/navigation';
7import {IStateService} from 'angular-ui-router';
8import * as _ from 'lodash';
9import * as $ from 'jquery';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080010
Matteo Scandolo52fa5cb2016-12-16 10:06:13 -080011export interface INotification extends IWSEvent {
Matteo Scandoloc719e792016-12-14 15:48:31 -080012 viewed?: boolean;
13}
14
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080015class HeaderController {
Matteo Scandolofc170992017-01-12 18:20:24 -080016 static $inject = ['$scope', '$rootScope', '$state', 'AuthService', 'SynchronizerStore', 'toastr', 'toastrConfig', 'NavigationService'];
Matteo Scandoloc719e792016-12-14 15:48:31 -080017 public notifications: INotification[] = [];
18 public newNotifications: INotification[] = [];
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080019 public version: string;
20 public userEmail: string;
Matteo Scandolo67c105f2017-01-09 09:30:52 -080021 public routeSelected: (route: IXosNavigationRoute) => void;
22 public states: IXosNavigationRoute[];
23 public query: string;
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080024
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080025 constructor(
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080026 private $scope: angular.IScope,
Matteo Scandolofc170992017-01-12 18:20:24 -080027 private $rootScope: ng.IScope,
Matteo Scandolo67c105f2017-01-09 09:30:52 -080028 private $state: IStateService,
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080029 private authService: IXosAuthService,
Matteo Scandolo266907e2016-12-20 13:41:42 -080030 private syncStore: IStoreService,
31 private toastr: ng.toastr.IToastrService,
Matteo Scandolo67c105f2017-01-09 09:30:52 -080032 private toastrConfig: ng.toastr.IToastrConfig,
33 private NavigationService: IXosNavigationService
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080034 ) {
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080035 this.version = require('../../../../package.json').version;
Matteo Scandolo266907e2016-12-20 13:41:42 -080036 angular.extend(this.toastrConfig, {
37 newestOnTop: false,
38 positionClass: 'toast-top-right',
39 preventDuplicates: false,
40 preventOpenDuplicates: false,
41 progressBar: true,
42 // autoDismiss: false,
43 // closeButton: false,
44 // timeOut: 0,
45 // tapToDismiss: false
46 });
47
Matteo Scandolofc170992017-01-12 18:20:24 -080048 this.$rootScope.$on('xos.core.modelSetup', () => {
Matteo Scandolo67c105f2017-01-09 09:30:52 -080049 this.states = this.NavigationService.query().reduce((list, state) => {
50 // if it does not have child (otherwise it is abstract)
51 if (!state.children || state.children.length === 0) {
52 list.push(state);
53 }
54 // else push child
55 if (state.children && state.children.length > 0) {
56 state.children.forEach(c => {
57 list.push(c);
58 });
59 }
60 return list;
61 }, []);
Matteo Scandolo67c105f2017-01-09 09:30:52 -080062 this.states = _.uniqBy(this.states, 'state');
Matteo Scandolofc170992017-01-12 18:20:24 -080063 });
Matteo Scandolo67c105f2017-01-09 09:30:52 -080064
65 // listen for keypress
66 $(document).on('keyup', (e) => {
67 if (e.key === 'f') {
68 $('.navbar-form input').focus();
69 }
70 });
71
72 // redirect to selected page
73 this.routeSelected = (item: IXosNavigationRoute) => {
74 this.$state.go(item.state);
75 this.query = null;
76 };
77
Matteo Scandolod62ea792016-12-22 14:02:28 -080078 this.userEmail = this.authService.getUser() ? this.authService.getUser().email : '';
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080079
80 this.syncStore.query()
81 .subscribe(
82 (event: IWSEvent) => {
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080083 $scope.$evalAsync(() => {
Matteo Scandolo266907e2016-12-20 13:41:42 -080084 let toastrMsg: string;
85 let toastrLevel: string;
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080086 if (event.msg.object.backend_status.indexOf('0') > -1) {
Matteo Scandolo266907e2016-12-20 13:41:42 -080087 toastrMsg = 'Synchronization started for:';
88 toastrLevel = 'info';
89 }
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080090 else if (event.msg.object.backend_status.indexOf('1') > -1) {
Matteo Scandolo266907e2016-12-20 13:41:42 -080091 toastrMsg = 'Synchronization succedeed for:';
92 toastrLevel = 'success';
93 }
94 else if (event.msg.object.backend_status.indexOf('2') > -1) {
95 toastrMsg = 'Synchronization failed for:';
96 toastrLevel = 'error';
97 }
98
99 if (toastrLevel && toastrMsg) {
100 this.toastr[toastrLevel](`${toastrMsg} ${event.msg.object.name}`, event.model);
101 }
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -0800102 // this.notifications.unshift(event);
103 // this.newNotifications = this.getNewNotifications(this.notifications);
Matteo Scandolof2c3ed62016-12-15 14:32:50 -0800104 });
Matteo Scandolo63e43eb2016-12-14 14:18:53 -0800105 }
106 );
Matteo Scandolof6acdbe2016-12-13 10:29:37 -0800107 }
Matteo Scandoloc719e792016-12-14 15:48:31 -0800108
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -0800109 public getLogo(): string {
110 return require(`../../images/brand/${StyleConfig.logo}`);
111 }
Matteo Scandoloc719e792016-12-14 15:48:31 -0800112
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -0800113 // TODO display a list of notification in the template (if it make sense)
114 // public viewNotification = (notification: INotification) => {
115 // notification.viewed = true;
116 // this.newNotifications = this.getNewNotifications(this.notifications);
117 // };
118 //
119 // private getNewNotifications = (notifications: INotification[]) => {
120 // return this.notifications.filter((n: INotification) => {
121 // return !n.viewed;
122 // });
123 // };
Matteo Scandolof6acdbe2016-12-13 10:29:37 -0800124}
125
126export const xosHeader: angular.IComponentOptions = {
127 template: require('./header.html'),
128 controllerAs: 'vm',
129 controller: HeaderController
130};