mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
72 lines
2.3 KiB
JavaScript
72 lines
2.3 KiB
JavaScript
/*
|
|
Copyright 2017 Vector Creations 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.
|
|
*/
|
|
|
|
var MatrixClientPeg = require("./MatrixClientPeg");
|
|
|
|
module.exports = {
|
|
usersTypingApartFromMe: function(room) {
|
|
return this.usersTyping(
|
|
room, [MatrixClientPeg.get().credentials.userId]
|
|
);
|
|
},
|
|
|
|
/**
|
|
* Given a Room object and, optionally, a list of userID strings
|
|
* to exclude, return a list of user objects who are typing.
|
|
*/
|
|
usersTyping: function(room, exclude) {
|
|
var whoIsTyping = [];
|
|
|
|
if (exclude === undefined) {
|
|
exclude = [];
|
|
}
|
|
|
|
var memberKeys = Object.keys(room.currentState.members);
|
|
for (var i = 0; i < memberKeys.length; ++i) {
|
|
var userId = memberKeys[i];
|
|
|
|
if (room.currentState.members[userId].typing) {
|
|
if (exclude.indexOf(userId) == -1) {
|
|
whoIsTyping.push(room.currentState.members[userId]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return whoIsTyping;
|
|
},
|
|
|
|
whoIsTypingString: function(whoIsTyping, limit) {
|
|
const othersCount = limit === undefined ?
|
|
0 : Math.max(whoIsTyping.length - limit, 0);
|
|
if (whoIsTyping.length == 0) {
|
|
return '';
|
|
} else if (whoIsTyping.length == 1) {
|
|
return whoIsTyping[0].name + ' is typing';
|
|
}
|
|
const names = whoIsTyping.map(function(m) {
|
|
return m.name;
|
|
});
|
|
if (othersCount) {
|
|
const other = ' other' + (othersCount > 1 ? 's' : '');
|
|
return names.slice(0, limit).join(', ') + ' and ' +
|
|
othersCount + other + ' are typing';
|
|
} else {
|
|
const lastPerson = names.pop();
|
|
return names.join(', ') + ' and ' + lastPerson + ' are typing';
|
|
}
|
|
}
|
|
};
|