mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
140 lines
4.1 KiB
TypeScript
140 lines
4.1 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed 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 { Component, OnInit, Input, AfterViewChecked } from '@angular/core';
|
|
import { EcmUserModel } from './../models/ecm-user.model';
|
|
import { BpmUserModel } from './../models/bpm-user.model';
|
|
import { EcmUserService } from './../services/ecm-user.service';
|
|
import { BpmUserService } from './../services/bpm-user.service';
|
|
import { AlfrescoTranslationService, AlfrescoAuthenticationService } from 'ng2-alfresco-core';
|
|
|
|
declare let componentHandler: any;
|
|
|
|
@Component({
|
|
selector: 'ng2-alfresco-userinfo',
|
|
moduleId: module.id,
|
|
styleUrls: ['./user-info.component.css'],
|
|
templateUrl: './user-info.component.html'
|
|
})
|
|
export class UserInfoComponent implements AfterViewChecked, OnInit {
|
|
|
|
@Input()
|
|
ecmBackgroundImage: string;
|
|
|
|
@Input()
|
|
bpmBackgroundImage: string;
|
|
|
|
@Input()
|
|
menuOpenType: string = 'right';
|
|
|
|
@Input()
|
|
fallBackThumbnailImage: string;
|
|
|
|
private baseComponentPath = module.id.replace('components/user-info.component.js', '');
|
|
|
|
ecmUser: EcmUserModel;
|
|
bpmUser: BpmUserModel;
|
|
anonymousImageUrl: string = this.baseComponentPath + 'img/anonymous.gif';
|
|
bpmUserImage: any;
|
|
ecmUserImage: any;
|
|
|
|
constructor(private ecmUserService: EcmUserService,
|
|
private bpmUserService: BpmUserService,
|
|
private authService: AlfrescoAuthenticationService,
|
|
private translate: AlfrescoTranslationService) {
|
|
if (translate) {
|
|
translate.addTranslationFolder('node_modules/ng2-alfresco-userinfo/src');
|
|
}
|
|
}
|
|
|
|
ngAfterViewChecked() {
|
|
// workaround for MDL issues with dynamic components
|
|
if (componentHandler) {
|
|
componentHandler.upgradeAllRegistered();
|
|
}
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.getEcmUserInfo();
|
|
this.getBpmUserInfo();
|
|
}
|
|
|
|
getEcmUserInfo(): void {
|
|
if (this.authService.isEcmLoggedIn()) {
|
|
this.ecmUserService.getCurrentUserInfo()
|
|
.subscribe((res) => {
|
|
this.ecmUser = <EcmUserModel> res;
|
|
this.getEcmAvatar();
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
getBpmUserInfo(): void {
|
|
if (this.authService.isBpmLoggedIn()) {
|
|
this.bpmUserService.getCurrentUserInfo()
|
|
.subscribe((res) => {
|
|
this.bpmUser = <BpmUserModel> res;
|
|
});
|
|
this.bpmUserImage = this.bpmUserService.getCurrentUserProfileImage();
|
|
}
|
|
}
|
|
|
|
onImageLoadingError(event) {
|
|
if (event) {
|
|
let element = <any> event.target;
|
|
element.src = this.fallBackThumbnailImage || this.anonymousImageUrl;
|
|
}
|
|
}
|
|
|
|
stopClosing(event) {
|
|
event.stopPropagation();
|
|
}
|
|
|
|
getUserNameHeaderFor(env: string) {
|
|
if (this.ecmUser && env === 'ECM') {
|
|
return this.ecmUser.firstName || this.ecmUser.lastName;
|
|
}
|
|
|
|
if (this.bpmUser && env === 'BPM') {
|
|
return this.formatValue(this.bpmUser.firstName) ||
|
|
this.formatValue(this.bpmUser.lastName) ||
|
|
this.formatValue(this.bpmUser.fullname);
|
|
}
|
|
}
|
|
|
|
private getEcmAvatar() {
|
|
this.ecmUserImage = this.ecmUserService.getUserProfileImage(this.ecmUser.avatarId);
|
|
}
|
|
|
|
getUserAvatar() {
|
|
return this.ecmUserImage || this.bpmUserImage;
|
|
}
|
|
|
|
getBpmUserAvatar() {
|
|
return this.bpmUserImage;
|
|
}
|
|
|
|
getEcmUserAvatar() {
|
|
return this.ecmUserImage;
|
|
}
|
|
|
|
formatValue(value: string) {
|
|
return value === 'null' ? null : value;
|
|
}
|
|
}
|