forked from EVOgeek/Vmeda.Online
174 lines
5.4 KiB
TypeScript
174 lines
5.4 KiB
TypeScript
// (C) Copyright 2015 Moodle Pty 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, Input, OnInit, OnChanges, OnDestroy, SimpleChange } from '@angular/core';
|
|
|
|
import { CoreApp } from '@services/app';
|
|
import { CoreSites } from '@services/sites';
|
|
import { CoreUtils } from '@services/utils/utils';
|
|
import { CoreEventObserver, CoreEvents } from '@singletons/events';
|
|
import { CoreUserProvider, CoreUserBasicData, CoreUserProfilePictureUpdatedData } from '@features/user/services/user';
|
|
import { CoreNavigator } from '@services/navigator';
|
|
|
|
/**
|
|
* Component to display a "user avatar".
|
|
*
|
|
* Example: <core-user-avatar [user]="participant"></core-user-avatar>
|
|
*/
|
|
@Component({
|
|
selector: 'core-user-avatar',
|
|
templateUrl: 'core-user-avatar.html',
|
|
styleUrls: ['user-avatar.scss'],
|
|
})
|
|
export class CoreUserAvatarComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
|
@Input() user?: CoreUserWithAvatar;
|
|
// The following params will override the ones in user object.
|
|
@Input() profileUrl?: string;
|
|
@Input() protected linkProfile = true; // Avoid linking to the profile if wanted.
|
|
@Input() fullname?: string;
|
|
@Input() protected userId?: number; // If provided or found it will be used to link the image to the profile.
|
|
@Input() protected courseId?: number;
|
|
@Input() checkOnline = false; // If want to check and show online status.
|
|
@Input() extraIcon?: string; // Extra icon to show near the avatar.
|
|
|
|
avatarUrl?: string;
|
|
|
|
// Variable to check if we consider this user online or not.
|
|
// @TODO: Use setting when available (see MDL-63972) so we can use site setting.
|
|
protected timetoshowusers = 300000; // Miliseconds default.
|
|
protected currentUserId: number;
|
|
protected pictureObserver: CoreEventObserver;
|
|
|
|
constructor() {
|
|
this.currentUserId = CoreSites.instance.getCurrentSiteUserId();
|
|
|
|
this.pictureObserver = CoreEvents.on<CoreUserProfilePictureUpdatedData>(
|
|
CoreUserProvider.PROFILE_PICTURE_UPDATED,
|
|
(data) => {
|
|
if (data.userId == this.userId) {
|
|
this.avatarUrl = data.picture;
|
|
}
|
|
},
|
|
CoreSites.instance.getCurrentSiteId(),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Component being initialized.
|
|
*/
|
|
ngOnInit(): void {
|
|
this.setFields();
|
|
}
|
|
|
|
/**
|
|
* Listen to changes.
|
|
*/
|
|
ngOnChanges(changes: { [name: string]: SimpleChange }): void {
|
|
// If something change, update the fields.
|
|
if (changes) {
|
|
this.setFields();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set fields from user.
|
|
*/
|
|
protected setFields(): void {
|
|
const profileUrl = this.profileUrl || (this.user && (this.user.profileimageurl || this.user.userprofileimageurl ||
|
|
this.user.userpictureurl || this.user.profileimageurlsmall || (this.user.urls && this.user.urls.profileimage)));
|
|
|
|
if (typeof profileUrl == 'string') {
|
|
this.avatarUrl = profileUrl;
|
|
}
|
|
|
|
this.fullname = this.fullname || (this.user && (this.user.fullname || this.user.userfullname));
|
|
|
|
this.userId = this.userId || (this.user && (this.user.userid || this.user.id));
|
|
this.courseId = this.courseId || (this.user && this.user.courseid);
|
|
}
|
|
|
|
/**
|
|
* Helper function for checking the time meets the 'online' condition.
|
|
*
|
|
* @return boolean
|
|
*/
|
|
isOnline(): boolean {
|
|
if (!this.user) {
|
|
return false;
|
|
}
|
|
|
|
if (CoreUtils.instance.isFalseOrZero(this.user.isonline)) {
|
|
return false;
|
|
}
|
|
|
|
if (this.user.lastaccess) {
|
|
// If the time has passed, don't show the online status.
|
|
const time = new Date().getTime() - this.timetoshowusers;
|
|
|
|
return this.user.lastaccess * 1000 >= time;
|
|
} else {
|
|
// You have to have Internet access first.
|
|
return !!this.user.isonline && CoreApp.instance.isOnline();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Go to user profile.
|
|
*
|
|
* @param event Click event.
|
|
*/
|
|
gotoProfile(event: Event): void {
|
|
if (!this.linkProfile || !this.userId) {
|
|
return;
|
|
}
|
|
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
|
|
// @todo Decide which navCtrl to use. If this component is inside a split view, use the split view's master nav.
|
|
CoreNavigator.instance.navigateToSitePath('user', {
|
|
params: {
|
|
userId: this.userId,
|
|
courseId: this.courseId,
|
|
},
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Component destroyed.
|
|
*/
|
|
ngOnDestroy(): void {
|
|
this.pictureObserver.off();
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Type with all possible formats of user.
|
|
*/
|
|
type CoreUserWithAvatar = CoreUserBasicData & {
|
|
userpictureurl?: string;
|
|
userprofileimageurl?: string;
|
|
profileimageurlsmall?: string;
|
|
urls?: {
|
|
profileimage?: string;
|
|
};
|
|
userfullname?: string;
|
|
userid?: number;
|
|
isonline?: boolean;
|
|
courseid?: number;
|
|
lastaccess?: number;
|
|
};
|