2015-11-30 19:55:00 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
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';
|
|
|
|
var React = require("react");
|
|
|
|
var ReactDOM = require("react-dom");
|
|
|
|
var GeminiScrollbar = require('react-gemini-scrollbar');
|
|
|
|
var MatrixClientPeg = require("../../../MatrixClientPeg");
|
2015-12-17 05:49:09 +03:00
|
|
|
var CallHandler = require('../../../CallHandler');
|
2015-11-30 19:55:00 +03:00
|
|
|
var RoomListSorter = require("../../../RoomListSorter");
|
2016-01-06 21:07:24 +03:00
|
|
|
var Unread = require('../../../Unread');
|
2015-11-30 19:55:00 +03:00
|
|
|
var dis = require("../../../dispatcher");
|
|
|
|
var sdk = require('../../../index');
|
2016-02-04 21:06:24 +03:00
|
|
|
var rate_limited_func = require('../../../ratelimitedfunc');
|
2016-08-11 19:32:39 +03:00
|
|
|
var MatrixTools = require('../../../MatrixTools');
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
var HIDE_CONFERENCE_CHANS = true;
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'RoomList',
|
|
|
|
|
|
|
|
propTypes: {
|
2015-12-01 19:29:58 +03:00
|
|
|
ConferenceHandler: React.PropTypes.any,
|
2016-08-10 01:57:36 +03:00
|
|
|
collapsed: React.PropTypes.bool.isRequired,
|
2016-04-15 19:55:00 +03:00
|
|
|
currentRoom: React.PropTypes.string,
|
|
|
|
searchFilter: React.PropTypes.string,
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2015-12-18 18:13:59 +03:00
|
|
|
isLoadingLeftRooms: false,
|
2015-11-30 19:55:00 +03:00
|
|
|
lists: {},
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCall: null,
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
cli.on("Room", this.onRoom);
|
2015-12-16 19:27:46 +03:00
|
|
|
cli.on("deleteRoom", this.onDeleteRoom);
|
2015-11-30 19:55:00 +03:00
|
|
|
cli.on("Room.timeline", this.onRoomTimeline);
|
|
|
|
cli.on("Room.name", this.onRoomName);
|
|
|
|
cli.on("Room.tags", this.onRoomTags);
|
2015-12-18 20:51:17 +03:00
|
|
|
cli.on("Room.receipt", this.onRoomReceipt);
|
2015-11-30 19:55:00 +03:00
|
|
|
cli.on("RoomState.events", this.onRoomStateEvents);
|
|
|
|
cli.on("RoomMember.name", this.onRoomMemberName);
|
|
|
|
|
|
|
|
var s = this.getRoomLists();
|
|
|
|
this.setState(s);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2016-08-30 14:29:25 +03:00
|
|
|
// Initialise the stickyHeaders when the component is created
|
2016-08-26 17:09:13 +03:00
|
|
|
this._updateStickyHeaders(true);
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
2016-08-25 21:46:01 +03:00
|
|
|
componentDidUpdate: function() {
|
2016-08-30 14:29:25 +03:00
|
|
|
// Reinitialise the stickyHeaders when the component is updated
|
2016-08-26 17:09:13 +03:00
|
|
|
this._updateStickyHeaders(true);
|
2016-08-25 21:46:01 +03:00
|
|
|
},
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
onAction: function(payload) {
|
|
|
|
switch (payload.action) {
|
|
|
|
case 'view_tooltip':
|
|
|
|
this.tooltip = payload.tooltip;
|
|
|
|
this._repositionTooltip();
|
|
|
|
if (this.tooltip) this.tooltip.style.display = 'block';
|
2015-12-17 05:49:09 +03:00
|
|
|
break;
|
|
|
|
case 'call_state':
|
|
|
|
var call = CallHandler.getCall(payload.room_id);
|
|
|
|
if (call && call.call_state === 'ringing') {
|
|
|
|
this.setState({
|
|
|
|
incomingCall: call
|
|
|
|
});
|
|
|
|
this._repositionIncomingCallBox(undefined, true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.setState({
|
|
|
|
incomingCall: null
|
2016-04-15 19:55:00 +03:00
|
|
|
});
|
2015-12-17 05:49:09 +03:00
|
|
|
}
|
|
|
|
break;
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener("Room", this.onRoom);
|
2016-02-04 18:55:24 +03:00
|
|
|
MatrixClientPeg.get().removeListener("deleteRoom", this.onDeleteRoom);
|
2015-11-30 19:55:00 +03:00
|
|
|
MatrixClientPeg.get().removeListener("Room.timeline", this.onRoomTimeline);
|
|
|
|
MatrixClientPeg.get().removeListener("Room.name", this.onRoomName);
|
2016-02-04 18:55:24 +03:00
|
|
|
MatrixClientPeg.get().removeListener("Room.tags", this.onRoomTags);
|
|
|
|
MatrixClientPeg.get().removeListener("Room.receipt", this.onRoomReceipt);
|
2015-11-30 19:55:00 +03:00
|
|
|
MatrixClientPeg.get().removeListener("RoomState.events", this.onRoomStateEvents);
|
2016-02-04 18:55:24 +03:00
|
|
|
MatrixClientPeg.get().removeListener("RoomMember.name", this.onRoomMemberName);
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
2016-08-10 15:39:47 +03:00
|
|
|
// cancel any pending calls to the rate_limited_funcs
|
|
|
|
this._delayedRefreshRoomList.cancelPendingCall();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onRoom: function(room) {
|
2015-12-18 18:13:59 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
2015-12-16 19:27:46 +03:00
|
|
|
onDeleteRoom: function(roomId) {
|
2015-12-18 18:13:59 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2015-12-16 19:27:46 +03:00
|
|
|
},
|
|
|
|
|
2016-08-30 13:55:51 +03:00
|
|
|
onArchivedHeaderClick: function(isHidden, scrollToPosition) {
|
2015-12-18 14:55:43 +03:00
|
|
|
if (!isHidden) {
|
2015-12-18 18:13:59 +03:00
|
|
|
var self = this;
|
|
|
|
this.setState({ isLoadingLeftRooms: true });
|
2016-08-30 13:55:51 +03:00
|
|
|
|
|
|
|
// Try scrolling to position
|
|
|
|
this._updateStickyHeaders(true, scrollToPosition);
|
|
|
|
|
2015-12-18 14:55:43 +03:00
|
|
|
// we don't care about the response since it comes down via "Room"
|
|
|
|
// events.
|
|
|
|
MatrixClientPeg.get().syncLeftRooms().catch(function(err) {
|
|
|
|
console.error("Failed to sync left rooms: %s", err);
|
|
|
|
console.error(err);
|
2015-12-18 18:13:59 +03:00
|
|
|
}).finally(function() {
|
|
|
|
self.setState({ isLoadingLeftRooms: false });
|
2015-12-18 14:55:43 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-26 17:09:13 +03:00
|
|
|
onSubListHeaderClick: function(isHidden, scrollToPosition) {
|
2016-08-26 11:56:07 +03:00
|
|
|
// The scroll area has expanded or contracted, so re-calculate sticky headers positions
|
2016-08-26 17:09:13 +03:00
|
|
|
this._updateStickyHeaders(true, scrollToPosition);
|
2016-08-26 11:56:07 +03:00
|
|
|
},
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
onRoomTimeline: function(ev, room, toStartOfTimeline) {
|
|
|
|
if (toStartOfTimeline) return;
|
2016-02-25 14:06:47 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
2015-12-18 20:51:17 +03:00
|
|
|
onRoomReceipt: function(receiptEvent, room) {
|
|
|
|
// because if we read a notification, it will affect notification count
|
2016-01-07 13:38:44 +03:00
|
|
|
// only bother updating if there's a receipt from us
|
|
|
|
var receiptKeys = Object.keys(receiptEvent.getContent());
|
|
|
|
for (var i = 0; i < receiptKeys.length; ++i) {
|
|
|
|
var rcpt = receiptEvent.getContent()[receiptKeys[i]];
|
|
|
|
if (rcpt['m.read'] && rcpt['m.read'][MatrixClientPeg.get().credentials.userId]) {
|
2016-02-25 14:06:47 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2016-01-07 13:38:44 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-12-18 20:51:17 +03:00
|
|
|
},
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
onRoomName: function(room) {
|
2015-12-18 18:13:59 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onRoomTags: function(event, room) {
|
2015-12-18 18:13:59 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onRoomStateEvents: function(ev, state) {
|
2015-12-18 18:13:59 +03:00
|
|
|
this._delayedRefreshRoomList();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onRoomMemberName: function(ev, member) {
|
2015-12-18 18:13:59 +03:00
|
|
|
this._delayedRefreshRoomList();
|
|
|
|
},
|
|
|
|
|
2016-02-04 21:06:24 +03:00
|
|
|
_delayedRefreshRoomList: new rate_limited_func(function() {
|
|
|
|
this.refreshRoomList();
|
|
|
|
}, 500),
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
refreshRoomList: function() {
|
2015-12-18 18:13:59 +03:00
|
|
|
// console.log("DEBUG: Refresh room list delta=%s ms",
|
|
|
|
// (!this._lastRefreshRoomListTs ? "-" : (Date.now() - this._lastRefreshRoomListTs))
|
|
|
|
// );
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
// TODO: rather than bluntly regenerating and re-sorting everything
|
|
|
|
// every time we see any kind of room change from the JS SDK
|
|
|
|
// we could do incremental updates on our copy of the state
|
|
|
|
// based on the room which has actually changed. This would stop
|
|
|
|
// us re-rendering all the sublists every time anything changes anywhere
|
|
|
|
// in the state of the client.
|
|
|
|
this.setState(this.getRoomLists());
|
2015-12-18 18:13:59 +03:00
|
|
|
this._lastRefreshRoomListTs = Date.now();
|
2015-11-30 19:55:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getRoomLists: function() {
|
|
|
|
var self = this;
|
|
|
|
var s = { lists: {} };
|
|
|
|
|
2015-12-11 03:40:28 +03:00
|
|
|
s.lists["im.vector.fake.invite"] = [];
|
2015-11-30 19:55:00 +03:00
|
|
|
s.lists["m.favourite"] = [];
|
2015-12-11 03:40:28 +03:00
|
|
|
s.lists["im.vector.fake.recent"] = [];
|
2016-08-11 18:45:19 +03:00
|
|
|
s.lists["im.vector.fake.direct"] = [];
|
2015-11-30 19:55:00 +03:00
|
|
|
s.lists["m.lowpriority"] = [];
|
2015-12-11 03:40:28 +03:00
|
|
|
s.lists["im.vector.fake.archived"] = [];
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
MatrixClientPeg.get().getRooms().forEach(function(room) {
|
|
|
|
var me = room.getMember(MatrixClientPeg.get().credentials.userId);
|
2016-03-18 22:59:58 +03:00
|
|
|
if (!me) return;
|
2015-11-30 19:55:00 +03:00
|
|
|
|
2016-04-20 14:25:19 +03:00
|
|
|
// console.log("room = " + room.name + ", me.membership = " + me.membership +
|
2016-03-18 23:08:47 +03:00
|
|
|
// ", sender = " + me.events.member.getSender() +
|
2016-04-20 14:25:19 +03:00
|
|
|
// ", target = " + me.events.member.getStateKey() +
|
2016-03-18 23:08:47 +03:00
|
|
|
// ", prevMembership = " + me.events.member.getPrevContent().membership);
|
|
|
|
|
2016-03-18 22:59:58 +03:00
|
|
|
if (me.membership == "invite") {
|
2015-12-11 03:40:28 +03:00
|
|
|
s.lists["im.vector.fake.invite"].push(room);
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
2016-08-11 19:32:39 +03:00
|
|
|
else if (MatrixTools.isDirectMessageRoom(room, me, self.props.ConferenceHandler, HIDE_CONFERENCE_CHANS)) {
|
|
|
|
// "Direct Message" rooms
|
|
|
|
s.lists["im.vector.fake.direct"].push(room);
|
|
|
|
}
|
2016-03-18 22:59:58 +03:00
|
|
|
else if (me.membership == "join" || me.membership === "ban" ||
|
2016-03-18 23:08:47 +03:00
|
|
|
(me.membership === "leave" && me.events.member.getSender() !== me.events.member.getStateKey()))
|
|
|
|
{
|
2016-08-11 18:45:19 +03:00
|
|
|
// Used to split rooms via tags
|
|
|
|
var tagNames = Object.keys(room.tags);
|
2016-08-11 19:32:39 +03:00
|
|
|
|
|
|
|
if (tagNames.length) {
|
2016-08-11 18:45:19 +03:00
|
|
|
for (var i = 0; i < tagNames.length; i++) {
|
|
|
|
var tagName = tagNames[i];
|
|
|
|
s.lists[tagName] = s.lists[tagName] || [];
|
|
|
|
s.lists[tagNames[i]].push(room);
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
|
|
|
}
|
2016-08-11 18:45:19 +03:00
|
|
|
else {
|
|
|
|
s.lists["im.vector.fake.recent"].push(room);
|
|
|
|
}
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
2016-03-18 22:59:58 +03:00
|
|
|
else if (me.membership === "leave") {
|
|
|
|
s.lists["im.vector.fake.archived"].push(room);
|
|
|
|
}
|
|
|
|
else {
|
2016-03-18 23:01:19 +03:00
|
|
|
console.error("unrecognised membership: " + me.membership + " - this should never happen");
|
2016-03-18 22:59:58 +03:00
|
|
|
}
|
2015-11-30 19:55:00 +03:00
|
|
|
});
|
|
|
|
|
2015-12-11 03:40:28 +03:00
|
|
|
//console.log("calculated new roomLists; im.vector.fake.recent = " + s.lists["im.vector.fake.recent"]);
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
// we actually apply the sorting to this when receiving the prop in RoomSubLists.
|
|
|
|
|
|
|
|
return s;
|
|
|
|
},
|
|
|
|
|
2015-12-17 05:49:09 +03:00
|
|
|
_getScrollNode: function() {
|
|
|
|
var panel = ReactDOM.findDOMNode(this);
|
|
|
|
if (!panel) return null;
|
|
|
|
|
|
|
|
if (panel.classList.contains('gm-prevented')) {
|
|
|
|
return panel;
|
|
|
|
} else {
|
|
|
|
return panel.children[2]; // XXX: Fragile!
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-25 21:46:01 +03:00
|
|
|
_whenScrolling: function(e) {
|
2015-12-17 05:49:09 +03:00
|
|
|
this._repositionTooltip(e);
|
|
|
|
this._repositionIncomingCallBox(e, false);
|
2016-08-26 17:09:13 +03:00
|
|
|
this._updateStickyHeaders(false);
|
2015-12-17 05:49:09 +03:00
|
|
|
},
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
_repositionTooltip: function(e) {
|
2016-08-02 16:46:47 +03:00
|
|
|
// We access the parent of the parent, as the tooltip is inside a container
|
|
|
|
// Needs refactoring into a better multipurpose tooltip
|
|
|
|
if (this.tooltip && this.tooltip.parentElement && this.tooltip.parentElement.parentElement) {
|
2015-11-30 19:55:00 +03:00
|
|
|
var scroll = ReactDOM.findDOMNode(this);
|
2016-08-02 16:46:47 +03:00
|
|
|
this.tooltip.style.top = (3 + scroll.parentElement.offsetTop + this.tooltip.parentElement.parentElement.offsetTop - this._getScrollNode().scrollTop) + "px";
|
2015-12-17 05:49:09 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_repositionIncomingCallBox: function(e, firstTime) {
|
|
|
|
var incomingCallBox = document.getElementById("incomingCallBox");
|
|
|
|
if (incomingCallBox && incomingCallBox.parentElement) {
|
|
|
|
var scroll = this._getScrollNode();
|
|
|
|
var top = (scroll.offsetTop + incomingCallBox.parentElement.offsetTop - scroll.scrollTop);
|
|
|
|
|
|
|
|
if (firstTime) {
|
|
|
|
// scroll to make sure the callbox is on the screen...
|
2015-12-17 17:56:09 +03:00
|
|
|
if (top < 10) { // 10px of vertical margin at top of screen
|
2015-12-17 05:49:09 +03:00
|
|
|
scroll.scrollTop = incomingCallBox.parentElement.offsetTop - 10;
|
|
|
|
}
|
2015-12-17 17:56:09 +03:00
|
|
|
else if (top > scroll.clientHeight - incomingCallBox.offsetHeight + 50) {
|
|
|
|
scroll.scrollTop = incomingCallBox.parentElement.offsetTop - scroll.offsetHeight + incomingCallBox.offsetHeight - 50;
|
2015-12-17 05:49:09 +03:00
|
|
|
}
|
|
|
|
// recalculate top in case we clipped it.
|
|
|
|
top = (scroll.offsetTop + incomingCallBox.parentElement.offsetTop - scroll.scrollTop);
|
|
|
|
}
|
2015-12-17 17:56:09 +03:00
|
|
|
else {
|
|
|
|
// stop the box from scrolling off the screen
|
|
|
|
if (top < 10) {
|
|
|
|
top = 10;
|
|
|
|
}
|
|
|
|
else if (top > scroll.clientHeight - incomingCallBox.offsetHeight + 50) {
|
|
|
|
top = scroll.clientHeight - incomingCallBox.offsetHeight + 50;
|
|
|
|
}
|
|
|
|
}
|
2015-12-17 05:49:09 +03:00
|
|
|
|
2016-02-19 05:21:17 +03:00
|
|
|
// slightly ugly hack to offset if there's a toolbar present.
|
|
|
|
// we really should be calculating our absolute offsets of top by recursing through the DOM
|
|
|
|
toolbar = document.getElementsByClassName("mx_MatrixToolbar")[0];
|
|
|
|
if (toolbar) {
|
|
|
|
top += toolbar.offsetHeight;
|
|
|
|
}
|
|
|
|
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCallBox.style.top = top + "px";
|
|
|
|
incomingCallBox.style.left = scroll.offsetLeft + scroll.offsetWidth + "px";
|
2015-11-30 19:55:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-30 14:29:25 +03:00
|
|
|
// Doing the sticky headers as raw DOM, for speed, as it gets very stuttery if done
|
2016-08-30 12:45:17 +03:00
|
|
|
// properly through React
|
2016-08-26 17:09:13 +03:00
|
|
|
_initAndPositionStickyHeaders: function(initialise, scrollToPosition) {
|
2016-08-26 13:01:04 +03:00
|
|
|
var scrollArea = this._getScrollNode();
|
2016-08-28 13:39:47 +03:00
|
|
|
// Use the offset of the top of the scroll area from the window
|
|
|
|
// as this is used to calculate the CSS fixed top position for the stickies
|
2016-08-26 20:31:02 +03:00
|
|
|
var scrollAreaOffset = scrollArea.getBoundingClientRect().top;
|
2016-08-28 21:18:41 +03:00
|
|
|
// Use the offset of the top of the componet from the window
|
|
|
|
// as this is used to calculate the CSS fixed top position for the stickies
|
2016-08-28 18:25:20 +03:00
|
|
|
var scrollAreaHeight = ReactDOM.findDOMNode(this).getBoundingClientRect().height;
|
2016-08-25 21:46:01 +03:00
|
|
|
|
2016-08-26 11:56:07 +03:00
|
|
|
if (initialise) {
|
2016-08-30 12:45:17 +03:00
|
|
|
// Get a collection of sticky header containers references
|
|
|
|
this.stickies = document.getElementsByClassName("mx_RoomSubList_labelContainer");
|
2016-08-26 13:01:04 +03:00
|
|
|
|
2016-08-30 17:22:52 +03:00
|
|
|
if (!this.stickies.length) return;
|
|
|
|
|
2016-08-30 14:29:25 +03:00
|
|
|
// Make sure there is sufficient space to do sticky headers: 120px plus all the sticky headers
|
2016-08-30 12:45:17 +03:00
|
|
|
this.scrollAreaSufficient = (120 + (this.stickies[0].getBoundingClientRect().height * this.stickies.length)) < scrollAreaHeight;
|
2016-08-26 13:01:04 +03:00
|
|
|
|
2016-08-26 17:52:57 +03:00
|
|
|
// Initialise the sticky headers
|
2016-08-30 12:45:17 +03:00
|
|
|
if (typeof this.stickies === "object" && this.stickies.length > 0) {
|
2016-08-28 14:02:20 +03:00
|
|
|
// Initialise the sticky headers
|
2016-08-30 12:45:17 +03:00
|
|
|
Array.prototype.forEach.call(this.stickies, function(sticky, i) {
|
2016-08-28 14:02:20 +03:00
|
|
|
// Save the positions of all the stickies within scroll area.
|
|
|
|
// These positions are relative to the LHS Panel top
|
|
|
|
sticky.dataset.originalPosition = sticky.offsetTop - scrollArea.offsetTop;
|
|
|
|
|
|
|
|
// Save and set the sticky heights
|
|
|
|
var originalHeight = sticky.getBoundingClientRect().height;
|
|
|
|
sticky.dataset.originalHeight = originalHeight;
|
|
|
|
sticky.style.height = originalHeight;
|
|
|
|
|
|
|
|
return sticky;
|
|
|
|
});
|
2016-08-25 21:46:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-26 13:01:04 +03:00
|
|
|
var self = this;
|
2016-08-26 17:09:13 +03:00
|
|
|
var scrollStuckOffset = 0;
|
2016-08-28 21:18:41 +03:00
|
|
|
// Scroll to the passed in position, i.e. a header was clicked and in a scroll to state
|
|
|
|
// rather than a collapsable one (see RoomSubList.isCollapsableOnClick method for details)
|
2016-08-26 17:09:13 +03:00
|
|
|
if (scrollToPosition !== undefined) {
|
|
|
|
scrollArea.scrollTop = scrollToPosition;
|
2016-08-26 16:36:39 +03:00
|
|
|
}
|
2016-08-26 17:52:57 +03:00
|
|
|
// Stick headers to top and bottom, or free them
|
2016-08-30 12:45:17 +03:00
|
|
|
Array.prototype.forEach.call(this.stickies, function(sticky, i, stickyWrappers) {
|
2016-08-25 21:46:01 +03:00
|
|
|
var stickyPosition = sticky.dataset.originalPosition;
|
|
|
|
var stickyHeight = sticky.dataset.originalHeight;
|
|
|
|
var stickyHeader = sticky.childNodes[0];
|
|
|
|
var topStuckHeight = stickyHeight * i;
|
|
|
|
var bottomStuckHeight = stickyHeight * (stickyWrappers.length - i)
|
|
|
|
|
2016-08-26 17:52:57 +03:00
|
|
|
if (self.scrollAreaSufficient && stickyPosition < (scrollArea.scrollTop + topStuckHeight)) {
|
2016-08-25 21:46:01 +03:00
|
|
|
// Top stickies
|
2016-08-26 16:36:39 +03:00
|
|
|
sticky.dataset.stuck = "top";
|
2016-08-25 21:46:01 +03:00
|
|
|
stickyHeader.classList.add("mx_RoomSubList_fixed");
|
2016-08-26 20:31:02 +03:00
|
|
|
stickyHeader.style.top = scrollAreaOffset + topStuckHeight + "px";
|
2016-08-26 17:52:57 +03:00
|
|
|
// If stuck at top adjust the scroll back down to take account of all the stuck headers
|
2016-08-26 17:36:16 +03:00
|
|
|
if (scrollToPosition !== undefined && stickyPosition === scrollToPosition) {
|
|
|
|
scrollStuckOffset = topStuckHeight;
|
|
|
|
}
|
2016-08-28 21:18:41 +03:00
|
|
|
} else if (self.scrollAreaSufficient && stickyPosition > ((scrollArea.scrollTop + scrollAreaHeight) - bottomStuckHeight)) {
|
2016-08-25 21:46:01 +03:00
|
|
|
/// Bottom stickies
|
2016-08-26 16:36:39 +03:00
|
|
|
sticky.dataset.stuck = "bottom";
|
2016-08-25 21:46:01 +03:00
|
|
|
stickyHeader.classList.add("mx_RoomSubList_fixed");
|
2016-08-26 20:31:02 +03:00
|
|
|
stickyHeader.style.top = (scrollAreaOffset + scrollAreaHeight) - bottomStuckHeight + "px";
|
2016-08-25 21:46:01 +03:00
|
|
|
} else {
|
|
|
|
// Not sticky
|
2016-08-26 16:36:39 +03:00
|
|
|
sticky.dataset.stuck = "none";
|
2016-08-25 21:46:01 +03:00
|
|
|
stickyHeader.classList.remove("mx_RoomSubList_fixed");
|
|
|
|
stickyHeader.style.top = null;
|
|
|
|
}
|
|
|
|
});
|
2016-08-26 17:52:57 +03:00
|
|
|
// Adjust the scroll to take account of top stuck headers
|
2016-08-26 17:09:13 +03:00
|
|
|
if (scrollToPosition !== undefined) {
|
|
|
|
scrollArea.scrollTop -= scrollStuckOffset;
|
|
|
|
}
|
2016-08-25 21:46:01 +03:00
|
|
|
},
|
|
|
|
|
2016-08-26 17:09:13 +03:00
|
|
|
_updateStickyHeaders: function(initialise, scrollToPosition) {
|
2016-08-25 21:46:01 +03:00
|
|
|
var self = this;
|
|
|
|
|
2016-08-26 11:56:07 +03:00
|
|
|
if (initialise) {
|
2016-08-26 13:01:04 +03:00
|
|
|
// Useing setTimeout to ensure that the code is run after the painting
|
|
|
|
// of the newly rendered object as using requestAnimationFrame caused
|
|
|
|
// artefacts to appear on screen briefly
|
|
|
|
window.setTimeout(function() {
|
2016-08-26 17:09:13 +03:00
|
|
|
self._initAndPositionStickyHeaders(initialise, scrollToPosition);
|
2016-08-25 21:46:01 +03:00
|
|
|
});
|
|
|
|
} else {
|
2016-08-26 17:09:13 +03:00
|
|
|
this._initAndPositionStickyHeaders(initialise, scrollToPosition);
|
2016-08-25 21:46:01 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-01-22 18:46:38 +03:00
|
|
|
onShowMoreRooms: function() {
|
|
|
|
// kick gemini in the balls to get it to wake up
|
|
|
|
// XXX: uuuuuuugh.
|
|
|
|
this.refs.gemscroll.forceUpdate();
|
|
|
|
},
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
render: function() {
|
2015-12-01 18:45:11 +03:00
|
|
|
var RoomSubList = sdk.getComponent('structures.RoomSubList');
|
2015-11-30 19:55:00 +03:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
return (
|
2016-04-20 14:25:19 +03:00
|
|
|
<GeminiScrollbar className="mx_RoomList_scrollbar"
|
2016-08-25 21:46:01 +03:00
|
|
|
autoshow={true} onScroll={ self._whenScrolling } ref="gemscroll">
|
2015-11-30 19:55:00 +03:00
|
|
|
<div className="mx_RoomList">
|
2015-12-11 03:40:28 +03:00
|
|
|
<RoomSubList list={ self.state.lists['im.vector.fake.invite'] }
|
2015-11-30 19:55:00 +03:00
|
|
|
label="Invites"
|
|
|
|
editable={ false }
|
|
|
|
order="recent"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCall={ self.state.incomingCall }
|
2016-01-22 18:46:38 +03:00
|
|
|
collapsed={ self.props.collapsed }
|
2016-04-15 19:55:00 +03:00
|
|
|
searchFilter={ self.props.searchFilter }
|
2016-08-26 11:56:07 +03:00
|
|
|
onHeaderClick={ self.onSubListHeaderClick }
|
2016-04-15 19:55:00 +03:00
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
<RoomSubList list={ self.state.lists['m.favourite'] }
|
|
|
|
label="Favourites"
|
|
|
|
tagName="m.favourite"
|
|
|
|
verb="favourite"
|
|
|
|
editable={ true }
|
|
|
|
order="manual"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCall={ self.state.incomingCall }
|
2016-01-22 18:46:38 +03:00
|
|
|
collapsed={ self.props.collapsed }
|
2016-04-15 19:55:00 +03:00
|
|
|
searchFilter={ self.props.searchFilter }
|
2016-08-26 11:56:07 +03:00
|
|
|
onHeaderClick={ self.onSubListHeaderClick }
|
2016-04-15 19:55:00 +03:00
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
2015-11-30 19:55:00 +03:00
|
|
|
|
2016-08-22 16:10:51 +03:00
|
|
|
<RoomSubList list={ self.state.lists['im.vector.fake.direct'] }
|
|
|
|
label="Direct Messages"
|
|
|
|
editable={ false }
|
2015-11-30 19:55:00 +03:00
|
|
|
order="recent"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCall={ self.state.incomingCall }
|
2016-01-22 18:46:38 +03:00
|
|
|
collapsed={ self.props.collapsed }
|
2016-04-15 19:55:00 +03:00
|
|
|
searchFilter={ self.props.searchFilter }
|
2016-08-26 11:56:07 +03:00
|
|
|
onHeaderClick={ self.onSubListHeaderClick }
|
2016-04-15 19:55:00 +03:00
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
2015-11-30 19:55:00 +03:00
|
|
|
|
2016-08-22 16:10:51 +03:00
|
|
|
<RoomSubList list={ self.state.lists['im.vector.fake.recent'] }
|
|
|
|
label="Rooms"
|
|
|
|
editable={ true }
|
|
|
|
verb="restore"
|
2016-08-11 18:45:19 +03:00
|
|
|
order="recent"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
|
|
|
incomingCall={ self.state.incomingCall }
|
|
|
|
collapsed={ self.props.collapsed }
|
|
|
|
searchFilter={ self.props.searchFilter }
|
2016-08-26 11:56:07 +03:00
|
|
|
onHeaderClick={ self.onSubListHeaderClick }
|
2016-08-11 18:45:19 +03:00
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
|
|
|
|
2015-11-30 19:55:00 +03:00
|
|
|
{ Object.keys(self.state.lists).map(function(tagName) {
|
2016-08-11 18:45:19 +03:00
|
|
|
if (!tagName.match(/^(m\.(favourite|lowpriority)|im\.vector\.fake\.(invite|recent|direct|archived))$/)) {
|
2015-11-30 19:55:00 +03:00
|
|
|
return <RoomSubList list={ self.state.lists[tagName] }
|
|
|
|
key={ tagName }
|
|
|
|
label={ tagName }
|
|
|
|
tagName={ tagName }
|
|
|
|
verb={ "tag as " + tagName }
|
|
|
|
editable={ true }
|
|
|
|
order="manual"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCall={ self.state.incomingCall }
|
2016-01-22 18:46:38 +03:00
|
|
|
collapsed={ self.props.collapsed }
|
2016-04-15 19:55:00 +03:00
|
|
|
searchFilter={ self.props.searchFilter }
|
2016-08-26 11:56:07 +03:00
|
|
|
onHeaderClick={ self.onSubListHeaderClick }
|
2016-01-28 12:41:46 +03:00
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
2015-11-30 19:55:00 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
}) }
|
|
|
|
|
|
|
|
<RoomSubList list={ self.state.lists['m.lowpriority'] }
|
|
|
|
label="Low priority"
|
|
|
|
tagName="m.lowpriority"
|
|
|
|
verb="demote"
|
|
|
|
editable={ true }
|
|
|
|
order="recent"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
2015-12-17 05:49:09 +03:00
|
|
|
incomingCall={ self.state.incomingCall }
|
2016-01-22 18:46:38 +03:00
|
|
|
collapsed={ self.props.collapsed }
|
2016-04-15 19:55:00 +03:00
|
|
|
searchFilter={ self.props.searchFilter }
|
2016-08-26 11:56:07 +03:00
|
|
|
onHeaderClick={ self.onSubListHeaderClick }
|
2016-04-15 19:55:00 +03:00
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
2015-11-30 19:55:00 +03:00
|
|
|
|
2015-12-11 03:40:28 +03:00
|
|
|
<RoomSubList list={ self.state.lists['im.vector.fake.archived'] }
|
2015-11-30 19:55:00 +03:00
|
|
|
label="Historical"
|
|
|
|
editable={ false }
|
|
|
|
order="recent"
|
|
|
|
selectedRoom={ self.props.selectedRoom }
|
2015-12-18 14:55:43 +03:00
|
|
|
collapsed={ self.props.collapsed }
|
|
|
|
alwaysShowHeader={ true }
|
2015-12-18 18:13:59 +03:00
|
|
|
startAsHidden={ true }
|
|
|
|
showSpinner={ self.state.isLoadingLeftRooms }
|
2015-12-18 19:59:25 +03:00
|
|
|
onHeaderClick= { self.onArchivedHeaderClick }
|
2016-01-22 18:46:38 +03:00
|
|
|
incomingCall={ self.state.incomingCall }
|
2016-04-15 19:55:00 +03:00
|
|
|
searchFilter={ self.props.searchFilter }
|
|
|
|
onShowMoreRooms={ self.onShowMoreRooms } />
|
2015-11-30 19:55:00 +03:00
|
|
|
</div>
|
|
|
|
</GeminiScrollbar>
|
|
|
|
);
|
|
|
|
}
|
2015-12-04 17:24:02 +03:00
|
|
|
});
|