Catalog alignment
[sdc.git] / catalog-ui / src / app / directives / user-header-details / user-header-details-directive.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 'use strict';
22 import {User, IUser, IAppConfigurtaion, IUserProperties} from "app/models";
23 import { UserService } from "../../ng2/services/user.service";
24 import { AuthenticationService } from "app/ng2/services/authentication.service";
25 export interface IUserHeaderDetailsScope extends ng.IScope {
26     iconUrl:string;
27     user:IUser;
28     initUser:Function;
29 }
30
31 export class UserHeaderDetailsDirective implements ng.IDirective {
32
33     constructor(private $http:ng.IHttpService, private sdcConfig:IAppConfigurtaion, private userService:UserService, private authService: AuthenticationService) {
34     }
35
36     scope = {
37         iconUrl: '=?'
38     };
39
40     replace = true;
41     restrict = 'E';
42     template = ():string => {
43         return require('./user-header-details-directive.html');
44     };
45
46     link = (scope:IUserHeaderDetailsScope) => {
47
48         scope.initUser = ():void => {
49             let defaultUserId:string;
50             let userInfo:IUserProperties = this.authService.getLoggedinUser();
51             if (!userInfo) {
52                 defaultUserId = this.$http.defaults.headers.common[this.sdcConfig.cookie.userIdSuffix];
53                 this.userService.getUser(defaultUserId).subscribe((defaultUserInfo):void => {
54                     scope.user = new User(defaultUserInfo);
55                 });
56             } else {
57                 scope.user = new User(userInfo);
58             }
59         };
60         scope.initUser();
61     };
62
63     public static factory = ($http:ng.IHttpService, sdcConfig:IAppConfigurtaion, userService:UserService, authService:AuthenticationService)=> {
64         return new UserHeaderDetailsDirective($http, sdcConfig, userService, authService);
65     };
66
67 }
68
69 UserHeaderDetailsDirective.factory.$inject = ['$http', 'sdcConfig', 'UserServiceNg2', 'AuthenticationServiceNg2'];