2018-11-12 18:09:51 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Copyright 2017, 2018 New Vector 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 React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { _t, _td } from '../../../languageHandler';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import WhoIsTyping from '../../../WhoIsTyping';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import MemberAvatar from '../avatars/MemberAvatar';
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'WhoIsTypingTile',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
// the room this statusbar is representing.
|
|
|
|
room: PropTypes.object.isRequired,
|
|
|
|
|
|
|
|
// Number of names to display in typing indication. E.g. set to 3, will
|
|
|
|
// result in "X, Y, Z and 100 others are typing."
|
|
|
|
whoIsTypingLimit: PropTypes.number,
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
whoIsTypingLimit: 3,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
usersTyping: WhoIsTyping.usersTypingApartFromMe(this.props.room),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
2018-11-12 20:19:18 +03:00
|
|
|
MatrixClientPeg.get().on("RoomMember.typing", this.onRoomMemberTyping);
|
2018-11-12 18:09:51 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
// we may have entirely lost our client as we're logging out before clicking login on the guest bar...
|
|
|
|
const client = MatrixClientPeg.get();
|
|
|
|
if (client) {
|
2018-11-12 20:19:18 +03:00
|
|
|
client.removeListener("RoomMember.typing", this.onRoomMemberTyping);
|
2018-11-12 18:09:51 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onRoomMemberTyping: function(ev, member) {
|
|
|
|
this.setState({
|
|
|
|
usersTyping: WhoIsTyping.usersTypingApartFromMeAndIgnored(this.props.room),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_renderTypingIndicatorAvatars: function(limit) {
|
|
|
|
let users = this.state.usersTyping;
|
|
|
|
|
|
|
|
let othersCount = 0;
|
|
|
|
if (users.length > limit) {
|
|
|
|
othersCount = users.length - limit + 1;
|
|
|
|
users = users.slice(0, limit - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const avatars = users.map((u) => {
|
|
|
|
return (
|
|
|
|
<MemberAvatar
|
|
|
|
key={u.userId}
|
|
|
|
member={u}
|
|
|
|
width={24}
|
|
|
|
height={24}
|
|
|
|
resizeMethod="crop"
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (othersCount > 0) {
|
|
|
|
avatars.push(
|
2018-11-12 20:19:18 +03:00
|
|
|
<span className="mx_WhoIsTypingTile_remainingAvatarPlaceholder" key="others">
|
2018-11-12 18:09:51 +03:00
|
|
|
+{ othersCount }
|
|
|
|
</span>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return avatars;
|
|
|
|
},
|
|
|
|
|
2018-11-12 20:19:18 +03:00
|
|
|
render: function() {
|
2018-11-12 18:09:51 +03:00
|
|
|
const typingString = WhoIsTyping.whoIsTypingString(
|
|
|
|
this.state.usersTyping,
|
|
|
|
this.props.whoIsTypingLimit,
|
|
|
|
);
|
2018-11-12 20:19:18 +03:00
|
|
|
if (!typingString) {
|
|
|
|
return (<div className="mx_WhoIsTypingTile_empty" />);
|
2018-11-12 18:09:51 +03:00
|
|
|
}
|
|
|
|
|
2018-11-12 20:19:18 +03:00
|
|
|
const EmojiText = sdk.getComponent('elements.EmojiText');
|
|
|
|
|
2018-11-12 18:09:51 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_WhoIsTypingTile">
|
2018-11-12 20:19:18 +03:00
|
|
|
<div className="mx_WhoIsTypingTile_avatars">
|
|
|
|
{ this._renderTypingIndicatorAvatars(this.props.whoIsTypingLimit) }
|
2018-11-12 18:09:51 +03:00
|
|
|
</div>
|
2018-11-12 20:19:18 +03:00
|
|
|
<div className="mx_WhoIsTypingTile_label">
|
|
|
|
<EmojiText>{ typingString }</EmojiText>
|
2018-11-12 18:09:51 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|