mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 02:31:39 +03:00
3f99332f4b
This fixes a common React warning we see. Most of these components should be using constructors instead, however componentDidMount is just as good (and doesn't require converting most of these). Conversion to classes will be done in a later stage of React warning fixes. For https://github.com/vector-im/riot-web/issues/12877
226 lines
8.2 KiB
JavaScript
226 lines
8.2 KiB
JavaScript
/*
|
|
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 createReactClass from 'create-react-class';
|
|
import * as WhoIsTyping from '../../../WhoIsTyping';
|
|
import Timer from '../../../utils/Timer';
|
|
import {MatrixClientPeg} from '../../../MatrixClientPeg';
|
|
import MemberAvatar from '../avatars/MemberAvatar';
|
|
|
|
export default createReactClass({
|
|
displayName: 'WhoIsTypingTile',
|
|
|
|
propTypes: {
|
|
// the room this statusbar is representing.
|
|
room: PropTypes.object.isRequired,
|
|
onShown: PropTypes.func,
|
|
onHidden: PropTypes.func,
|
|
// 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),
|
|
// a map with userid => Timer to delay
|
|
// hiding the "x is typing" message for a
|
|
// user so hiding it can coincide
|
|
// with the sent message by the other side
|
|
// resulting in less timeline jumpiness
|
|
delayedStopTypingTimers: {},
|
|
};
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
MatrixClientPeg.get().on("RoomMember.typing", this.onRoomMemberTyping);
|
|
MatrixClientPeg.get().on("Room.timeline", this.onRoomTimeline);
|
|
},
|
|
|
|
componentDidUpdate: function(_, prevState) {
|
|
const wasVisible = this._isVisible(prevState);
|
|
const isVisible = this._isVisible(this.state);
|
|
if (this.props.onShown && !wasVisible && isVisible) {
|
|
this.props.onShown();
|
|
} else if (this.props.onHidden && wasVisible && !isVisible) {
|
|
this.props.onHidden();
|
|
}
|
|
},
|
|
|
|
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) {
|
|
client.removeListener("RoomMember.typing", this.onRoomMemberTyping);
|
|
client.removeListener("Room.timeline", this.onRoomTimeline);
|
|
}
|
|
Object.values(this.state.delayedStopTypingTimers).forEach((t) => t.abort());
|
|
},
|
|
|
|
_isVisible: function(state) {
|
|
return state.usersTyping.length !== 0 || Object.keys(state.delayedStopTypingTimers).length !== 0;
|
|
},
|
|
|
|
isVisible: function() {
|
|
return this._isVisible(this.state);
|
|
},
|
|
|
|
onRoomTimeline: function(event, room) {
|
|
if (room && room.roomId === this.props.room.roomId) {
|
|
const userId = event.getSender();
|
|
// remove user from usersTyping
|
|
const usersTyping = this.state.usersTyping.filter((m) => m.userId !== userId);
|
|
this.setState({usersTyping});
|
|
// abort timer if any
|
|
this._abortUserTimer(userId);
|
|
}
|
|
},
|
|
|
|
onRoomMemberTyping: function(ev, member) {
|
|
const usersTyping = WhoIsTyping.usersTypingApartFromMeAndIgnored(this.props.room);
|
|
this.setState({
|
|
delayedStopTypingTimers: this._updateDelayedStopTypingTimers(usersTyping),
|
|
usersTyping,
|
|
});
|
|
},
|
|
|
|
_updateDelayedStopTypingTimers(usersTyping) {
|
|
const usersThatStoppedTyping = this.state.usersTyping.filter((a) => {
|
|
return !usersTyping.some((b) => a.userId === b.userId);
|
|
});
|
|
const usersThatStartedTyping = usersTyping.filter((a) => {
|
|
return !this.state.usersTyping.some((b) => a.userId === b.userId);
|
|
});
|
|
// abort all the timers for the users that started typing again
|
|
usersThatStartedTyping.forEach((m) => {
|
|
const timer = this.state.delayedStopTypingTimers[m.userId];
|
|
if (timer) {
|
|
timer.abort();
|
|
}
|
|
});
|
|
// prepare new delayedStopTypingTimers object to update state with
|
|
let delayedStopTypingTimers = Object.assign({}, this.state.delayedStopTypingTimers);
|
|
// remove members that started typing again
|
|
delayedStopTypingTimers = usersThatStartedTyping.reduce((delayedStopTypingTimers, m) => {
|
|
delete delayedStopTypingTimers[m.userId];
|
|
return delayedStopTypingTimers;
|
|
}, delayedStopTypingTimers);
|
|
// start timer for members that stopped typing
|
|
delayedStopTypingTimers = usersThatStoppedTyping.reduce((delayedStopTypingTimers, m) => {
|
|
if (!delayedStopTypingTimers[m.userId]) {
|
|
const timer = new Timer(5000);
|
|
delayedStopTypingTimers[m.userId] = timer;
|
|
timer.start();
|
|
timer.finished().then(
|
|
() => this._removeUserTimer(m.userId), // on elapsed
|
|
() => {/* aborted */},
|
|
);
|
|
}
|
|
return delayedStopTypingTimers;
|
|
}, delayedStopTypingTimers);
|
|
|
|
return delayedStopTypingTimers;
|
|
},
|
|
|
|
_abortUserTimer: function(userId) {
|
|
const timer = this.state.delayedStopTypingTimers[userId];
|
|
if (timer) {
|
|
timer.abort();
|
|
this._removeUserTimer(userId);
|
|
}
|
|
},
|
|
|
|
_removeUserTimer: function(userId) {
|
|
const timer = this.state.delayedStopTypingTimers[userId];
|
|
if (timer) {
|
|
const delayedStopTypingTimers = Object.assign({}, this.state.delayedStopTypingTimers);
|
|
delete delayedStopTypingTimers[userId];
|
|
this.setState({delayedStopTypingTimers});
|
|
}
|
|
},
|
|
|
|
_renderTypingIndicatorAvatars: function(users, limit) {
|
|
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"
|
|
viewUserOnClick={true}
|
|
/>
|
|
);
|
|
});
|
|
|
|
if (othersCount > 0) {
|
|
avatars.push(
|
|
<span className="mx_WhoIsTypingTile_remainingAvatarPlaceholder" key="others">
|
|
+{ othersCount }
|
|
</span>,
|
|
);
|
|
}
|
|
|
|
return avatars;
|
|
},
|
|
|
|
render: function() {
|
|
let usersTyping = this.state.usersTyping;
|
|
const stoppedUsersOnTimer = Object.keys(this.state.delayedStopTypingTimers)
|
|
.map((userId) => this.props.room.getMember(userId));
|
|
// append the users that have been reported not typing anymore
|
|
// but have a timeout timer running so they can disappear
|
|
// when a message comes in
|
|
usersTyping = usersTyping.concat(stoppedUsersOnTimer);
|
|
// sort them so the typing members don't change order when
|
|
// moved to delayedStopTypingTimers
|
|
usersTyping.sort((a, b) => a.name.localeCompare(b.name));
|
|
|
|
const typingString = WhoIsTyping.whoIsTypingString(
|
|
usersTyping,
|
|
this.props.whoIsTypingLimit,
|
|
);
|
|
if (!typingString) {
|
|
return (<div className="mx_WhoIsTypingTile_empty" />);
|
|
}
|
|
|
|
return (
|
|
<li className="mx_WhoIsTypingTile" aria-atomic="true">
|
|
<div className="mx_WhoIsTypingTile_avatars">
|
|
{ this._renderTypingIndicatorAvatars(usersTyping, this.props.whoIsTypingLimit) }
|
|
</div>
|
|
<div className="mx_WhoIsTypingTile_label">
|
|
{ typingString }
|
|
</div>
|
|
</li>
|
|
);
|
|
},
|
|
});
|