2016-04-21 06:03:05 +08:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2017-12-26 09:03:18 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2016-04-21 06:03:05 +08:00
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const sdk = require('../../../index');
|
2016-04-21 06:03:05 +08:00
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const Velociraptor = require('../../../Velociraptor');
|
2016-04-21 06:03:05 +08:00
|
|
|
require('../../../VelocityBounce');
|
2017-06-08 21:08:51 +08:00
|
|
|
import { _t } from '../../../languageHandler';
|
2016-04-21 06:03:05 +08:00
|
|
|
|
2018-01-10 20:00:11 +08:00
|
|
|
import {formatDate} from '../../../DateUtils';
|
2017-05-15 09:55:07 +08:00
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
let bounce = false;
|
2016-04-21 06:03:05 +08:00
|
|
|
try {
|
|
|
|
if (global.localStorage) {
|
|
|
|
bounce = global.localStorage.getItem('avatar_bounce') == 'true';
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'ReadReceiptMarker',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
// the RoomMember to show the RR for
|
2018-10-10 22:14:09 +08:00
|
|
|
member: PropTypes.object,
|
|
|
|
// userId to fallback the avatar to
|
|
|
|
// if the member hasn't been loaded yet
|
|
|
|
fallbackUserId: PropTypes.string.isRequired,
|
2016-04-21 06:03:05 +08:00
|
|
|
|
|
|
|
// number of pixels to offset the avatar from the right of its parent;
|
|
|
|
// typically a negative value.
|
2017-12-26 09:03:18 +08:00
|
|
|
leftOffset: PropTypes.number,
|
2016-04-21 06:03:05 +08:00
|
|
|
|
|
|
|
// true to hide the avatar (it will still be animated)
|
2017-12-26 09:03:18 +08:00
|
|
|
hidden: PropTypes.bool,
|
2016-04-21 06:03:05 +08:00
|
|
|
|
|
|
|
// don't animate this RR into position
|
2017-12-26 09:03:18 +08:00
|
|
|
suppressAnimation: PropTypes.bool,
|
2016-04-21 06:03:05 +08:00
|
|
|
|
|
|
|
// an opaque object for storing information about this user's RR in
|
|
|
|
// this room
|
2017-12-26 09:03:18 +08:00
|
|
|
readReceiptInfo: PropTypes.object,
|
2016-04-21 06:03:05 +08:00
|
|
|
|
2016-04-23 00:03:15 +08:00
|
|
|
// A function which is used to check if the parent panel is being
|
|
|
|
// unmounted, to avoid unnecessary work. Should return true if we
|
|
|
|
// are being unmounted.
|
2017-12-26 09:03:18 +08:00
|
|
|
checkUnmounting: PropTypes.func,
|
2016-04-23 00:03:15 +08:00
|
|
|
|
2016-04-21 06:03:05 +08:00
|
|
|
// callback for clicks on this RR
|
2017-12-26 09:03:18 +08:00
|
|
|
onClick: PropTypes.func,
|
2016-12-09 00:23:20 +08:00
|
|
|
|
|
|
|
// Timestamp when the receipt was read
|
2017-12-26 09:03:18 +08:00
|
|
|
timestamp: PropTypes.number,
|
2017-06-22 22:53:58 +08:00
|
|
|
|
|
|
|
// True to show twelve hour format, false otherwise
|
2017-12-26 09:03:18 +08:00
|
|
|
showTwelveHour: PropTypes.bool,
|
2016-04-21 06:03:05 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
leftOffset: 0,
|
2017-01-20 22:22:27 +08:00
|
|
|
};
|
2016-04-21 06:03:05 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
// if we are going to animate the RR, we don't show it on first render,
|
|
|
|
// and instead just add a placeholder to the DOM; once we've been
|
|
|
|
// mounted, we start an animation which moves the RR from its old
|
|
|
|
// position.
|
|
|
|
return {
|
|
|
|
suppressDisplay: !this.props.suppressAnimation,
|
2017-01-20 22:22:27 +08:00
|
|
|
};
|
2016-04-21 06:03:05 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
// before we remove the rr, store its location in the map, so that if
|
|
|
|
// it reappears, it can be animated from the right place.
|
2017-10-12 00:56:17 +08:00
|
|
|
const rrInfo = this.props.readReceiptInfo;
|
2016-04-21 06:03:05 +08:00
|
|
|
if (!rrInfo) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-23 00:03:15 +08:00
|
|
|
// checking the DOM properties can force a re-layout, which can be
|
|
|
|
// quite expensive; so if the parent messagepanel is being unmounted,
|
|
|
|
// then don't bother with this.
|
|
|
|
if (this.props.checkUnmounting && this.props.checkUnmounting()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const avatarNode = ReactDOM.findDOMNode(this);
|
2016-04-21 06:03:05 +08:00
|
|
|
rrInfo.top = avatarNode.offsetTop;
|
|
|
|
rrInfo.left = avatarNode.offsetLeft;
|
|
|
|
rrInfo.parent = avatarNode.offsetParent;
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
|
|
|
if (!this.state.suppressDisplay) {
|
|
|
|
// we've already done our display - nothing more to do.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// treat new RRs as though they were off the top of the screen
|
2017-10-12 00:56:17 +08:00
|
|
|
let oldTop = -15;
|
2016-04-21 06:03:05 +08:00
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const oldInfo = this.props.readReceiptInfo;
|
2016-04-21 06:03:05 +08:00
|
|
|
if (oldInfo && oldInfo.parent) {
|
|
|
|
oldTop = oldInfo.top + oldInfo.parent.getBoundingClientRect().top;
|
|
|
|
}
|
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const newElement = ReactDOM.findDOMNode(this);
|
2017-08-30 16:59:02 +08:00
|
|
|
let startTopOffset;
|
|
|
|
if (!newElement.offsetParent) {
|
|
|
|
// this seems to happen sometimes for reasons I don't understand
|
|
|
|
// the docs for `offsetParent` say it may be null if `display` is
|
|
|
|
// `none`, but I can't see why that would happen.
|
|
|
|
console.warn(
|
2018-10-10 22:14:09 +08:00
|
|
|
`ReadReceiptMarker for ${this.props.fallbackUserId} in has no offsetParent`,
|
2017-08-30 16:59:02 +08:00
|
|
|
);
|
|
|
|
startTopOffset = 0;
|
|
|
|
} else {
|
|
|
|
startTopOffset = oldTop - newElement.offsetParent.getBoundingClientRect().top;
|
|
|
|
}
|
2016-04-21 06:03:05 +08:00
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const startStyles = [];
|
|
|
|
const enterTransitionOpts = [];
|
2016-04-21 06:03:05 +08:00
|
|
|
|
|
|
|
if (oldInfo && oldInfo.left) {
|
|
|
|
// start at the old height and in the old h pos
|
|
|
|
|
|
|
|
startStyles.push({ top: startTopOffset+"px",
|
|
|
|
left: oldInfo.left+"px" });
|
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const reorderTransitionOpts = {
|
2016-04-21 06:03:05 +08:00
|
|
|
duration: 100,
|
2017-08-30 16:59:02 +08:00
|
|
|
easing: 'easeOut',
|
2016-04-21 06:03:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enterTransitionOpts.push(reorderTransitionOpts);
|
|
|
|
}
|
|
|
|
|
|
|
|
// then shift to the rightmost column,
|
|
|
|
// and then it will drop down to its resting position
|
|
|
|
startStyles.push({ top: startTopOffset+'px', left: '0px' });
|
|
|
|
enterTransitionOpts.push({
|
|
|
|
duration: bounce ? Math.min(Math.log(Math.abs(startTopOffset)) * 200, 3000) : 300,
|
|
|
|
easing: bounce ? 'easeOutBounce' : 'easeOutCubic',
|
|
|
|
});
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
suppressDisplay: false,
|
|
|
|
startStyles: startStyles,
|
|
|
|
enterTransitionOpts: enterTransitionOpts,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
render: function() {
|
2017-10-12 00:56:17 +08:00
|
|
|
const MemberAvatar = sdk.getComponent('avatars.MemberAvatar');
|
2016-04-21 06:03:05 +08:00
|
|
|
if (this.state.suppressDisplay) {
|
2017-10-12 00:56:17 +08:00
|
|
|
return <div />;
|
2016-04-21 06:03:05 +08:00
|
|
|
}
|
|
|
|
|
2017-10-12 00:56:17 +08:00
|
|
|
const style = {
|
2016-04-21 06:03:05 +08:00
|
|
|
left: this.props.leftOffset+'px',
|
|
|
|
top: '0px',
|
|
|
|
visibility: this.props.hidden ? 'hidden' : 'visible',
|
|
|
|
};
|
|
|
|
|
2016-12-09 19:43:23 +08:00
|
|
|
let title;
|
2016-12-09 00:23:20 +08:00
|
|
|
if (this.props.timestamp) {
|
2018-03-23 12:14:29 +08:00
|
|
|
const dateString = formatDate(new Date(this.props.timestamp), this.props.showTwelveHour);
|
2018-10-10 22:14:09 +08:00
|
|
|
if (!this.props.member || this.props.fallbackUserId === this.props.member.rawDisplayName) {
|
2018-03-23 12:14:29 +08:00
|
|
|
title = _t(
|
|
|
|
"Seen by %(userName)s at %(dateTime)s",
|
2018-10-10 22:14:09 +08:00
|
|
|
{userName: this.props.fallbackUserId,
|
2018-03-23 12:14:29 +08:00
|
|
|
dateTime: dateString},
|
|
|
|
);
|
2018-03-26 20:33:47 +08:00
|
|
|
} else {
|
2018-03-23 12:14:29 +08:00
|
|
|
title = _t(
|
|
|
|
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s",
|
|
|
|
{displayName: this.props.member.rawDisplayName,
|
2018-10-10 22:14:09 +08:00
|
|
|
userName: this.props.fallbackUserId,
|
2018-03-23 12:14:29 +08:00
|
|
|
dateTime: dateString},
|
|
|
|
);
|
|
|
|
}
|
2016-12-09 00:23:20 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 06:03:05 +08:00
|
|
|
return (
|
2016-08-01 23:56:25 +08:00
|
|
|
<Velociraptor
|
|
|
|
startStyles={this.state.startStyles}
|
|
|
|
enterTransitionOpts={this.state.enterTransitionOpts} >
|
2016-04-21 06:03:05 +08:00
|
|
|
<MemberAvatar
|
|
|
|
member={this.props.member}
|
2018-10-10 22:14:09 +08:00
|
|
|
fallbackUserId={this.props.fallbackUserId}
|
2016-12-20 10:26:23 +08:00
|
|
|
aria-hidden="true"
|
2016-04-21 06:03:05 +08:00
|
|
|
width={14} height={14} resizeMethod="crop"
|
|
|
|
style={style}
|
2016-12-09 00:23:20 +08:00
|
|
|
title={title}
|
2017-02-03 01:36:26 +08:00
|
|
|
onClick={this.props.onClick}
|
2016-04-21 06:03:05 +08:00
|
|
|
/>
|
|
|
|
</Velociraptor>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|