jiti-meet/modules/UI/side_pannels/contactlist/ContactList.js

169 lines
4.3 KiB
JavaScript
Raw Normal View History

/* global $, APP, interfaceConfig */
import Avatar from '../../avatar/Avatar';
2015-12-14 15:40:30 +00:00
import UIEvents from '../../../../service/UI/UIEvents';
2016-04-08 15:55:19 +00:00
import UIUtil from '../../util/UIUtil';
2015-12-14 15:40:30 +00:00
let numberOfContacts = 0;
let notificationInterval;
2015-01-07 14:54:03 +00:00
/**
2015-01-07 14:54:03 +00:00
* Updates the number of participants in the contact list button and sets
* the glow
* @param delta indicates whether a new user has joined (1) or someone has
* left(-1)
*/
2015-01-07 14:54:03 +00:00
function updateNumberOfParticipants(delta) {
numberOfContacts += delta;
if (numberOfContacts <= 0) {
console.error("Invalid number of participants: " + numberOfContacts);
return;
2015-01-07 14:54:03 +00:00
}
let buttonIndicatorText = (numberOfContacts === 1) ? '' : numberOfContacts;
$("#numberOfParticipants").text(buttonIndicatorText);
$("#contacts_container>div.title").text(
APP.translation.translateString(
"contactlist", {participants: numberOfContacts}
));
2015-01-07 14:54:03 +00:00
}
2015-01-07 14:54:03 +00:00
/**
* Creates the avatar element.
*
* @return {object} the newly created avatar element
2015-01-07 14:54:03 +00:00
*/
function createAvatar(jid) {
2015-12-14 15:40:30 +00:00
let avatar = document.createElement('img');
2015-01-07 14:54:03 +00:00
avatar.className = "icon-avatar avatar";
avatar.src = Avatar.getAvatarUrl(jid);
2015-01-07 14:54:03 +00:00
return avatar;
}
/**
* Creates the display name paragraph.
*
* @param displayName the display name to set
*/
2015-03-09 15:50:13 +00:00
function createDisplayNameParagraph(key, displayName) {
2015-12-14 15:40:30 +00:00
let p = document.createElement('p');
if (displayName) {
p.innerHTML = displayName;
} else if(key) {
2015-03-09 15:50:13 +00:00
p.setAttribute("data-i18n",key);
p.innerHTML = APP.translation.translateString(key);
2015-03-09 15:50:13 +00:00
}
2015-01-07 14:54:03 +00:00
return p;
}
function stopGlowing(glower) {
window.clearInterval(notificationInterval);
notificationInterval = false;
glower.removeClass('glowing');
if (!ContactList.isVisible()) {
glower.removeClass('active');
}
}
function getContactEl (id) {
return $(`#contacts>li[id="${id}"]`);
}
function contactElExists (id) {
return getContactEl(id).length > 0;
}
2015-01-07 14:54:03 +00:00
/**
* Contact list.
*/
var ContactList = {
2015-12-14 15:40:30 +00:00
init (emitter) {
this.emitter = emitter;
},
/**
* Indicates if the chat is currently visible.
*
* @return <tt>true</tt> if the chat is currently visible, <tt>false</tt> -
* otherwise
*/
2015-12-14 15:40:30 +00:00
isVisible () {
2016-04-08 15:55:19 +00:00
return UIUtil.isVisible(document.getElementById("contactlist"));
2015-01-07 14:54:03 +00:00
},
/**
* Adds a contact for the given id.
* @param isLocal is an id for the local user.
*/
addContact (id, isLocal) {
2015-12-14 15:40:30 +00:00
let contactlist = $('#contacts');
2015-12-14 15:40:30 +00:00
let newContact = document.createElement('li');
newContact.id = id;
newContact.className = "clickable";
2015-12-14 15:40:30 +00:00
newContact.onclick = (event) => {
2015-01-07 14:54:03 +00:00
if (event.currentTarget.className === "clickable") {
2015-12-14 15:40:30 +00:00
this.emitter.emit(UIEvents.CONTACT_CLICKED, id);
}
};
if (interfaceConfig.SHOW_CONTACTLIST_AVATARS)
newContact.appendChild(createAvatar(id));
newContact.appendChild(
createDisplayNameParagraph(
isLocal ? interfaceConfig.DEFAULT_LOCAL_DISPLAY_NAME : null,
isLocal ? null : interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME));
if (APP.conference.isLocalId(id)) {
2015-06-19 13:45:39 +00:00
contactlist.prepend(newContact);
} else {
2015-06-19 13:45:39 +00:00
contactlist.append(newContact);
}
updateNumberOfParticipants(1);
2015-01-07 14:54:03 +00:00
},
/**
* Removes a contact for the given id.
*
*/
2015-12-14 15:40:30 +00:00
removeContact (id) {
let contact = getContactEl(id);
if (contact.length > 0) {
contact.remove();
updateNumberOfParticipants(-1);
}
2015-01-07 14:54:03 +00:00
},
2015-12-14 15:40:30 +00:00
setClickable (id, isClickable) {
getContactEl(id).toggleClass('clickable', isClickable);
},
2015-12-14 15:40:30 +00:00
onDisplayNameChange (id, displayName) {
if(!displayName)
return;
2015-12-01 13:41:58 +00:00
if (id === 'localVideoContainer') {
2016-07-08 01:44:04 +00:00
id = APP.conference.getMyUserId();
2015-12-01 13:41:58 +00:00
}
2015-12-14 15:40:30 +00:00
let contactName = $(`#contacts #${id}>p`);
if (contactName.text() !== displayName) {
contactName.text(displayName);
2015-12-01 13:41:58 +00:00
}
},
changeUserAvatar (id, avatarUrl) {
// set the avatar in the contact list
2015-12-14 15:40:30 +00:00
let contact = $(`#${id}>img`);
if (contact.length > 0) {
contact.attr('src', avatarUrl);
}
2015-01-07 14:54:03 +00:00
}
};
2015-12-14 15:40:30 +00:00
export default ContactList;