2015-01-19 01:16:24 +01:00
|
|
|
/* vim: ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-07-22 20:55:26 +02:00
|
|
|
(function () {
|
2015-01-30 07:59:08 +01:00
|
|
|
'use strict';
|
2015-03-06 00:44:53 +01:00
|
|
|
window.Whisper = window.Whisper || {};
|
2014-07-22 20:55:26 +02:00
|
|
|
|
2015-01-30 07:59:08 +01:00
|
|
|
Whisper.MessageListView = Whisper.ListView.extend({
|
|
|
|
tagName: 'ul',
|
2015-08-27 02:48:02 +02:00
|
|
|
className: 'message-list',
|
2015-01-30 07:59:08 +01:00
|
|
|
itemView: Whisper.MessageView,
|
|
|
|
events: {
|
2015-08-27 02:30:20 +02:00
|
|
|
'add': 'onAdd',
|
2015-07-15 08:08:36 +02:00
|
|
|
'update *': 'scrollToBottom',
|
2015-08-26 01:47:15 +02:00
|
|
|
'scroll': 'measureScrollPosition',
|
|
|
|
'reset-scroll': 'resetScrollPosition'
|
2015-01-30 07:59:08 +01:00
|
|
|
},
|
2015-08-27 02:30:20 +02:00
|
|
|
onAdd: function() {
|
|
|
|
this.$el.removeClass('loading');
|
|
|
|
this.scrollToBottom();
|
|
|
|
},
|
2015-07-14 23:11:11 +02:00
|
|
|
measureScrollPosition: function() {
|
2015-08-26 01:47:15 +02:00
|
|
|
this.scrollPosition = this.$el.scrollTop() + this.$el.outerHeight();
|
|
|
|
this.scrollHeight = this.el.scrollHeight;
|
|
|
|
this.shouldStickToBottom = this.scrollPosition === this.scrollHeight;
|
|
|
|
},
|
|
|
|
resetScrollPosition: function() {
|
|
|
|
var scrollPosition = this.scrollPosition;
|
|
|
|
if (this.scrollHeight !== this.el.scrollHeight) {
|
|
|
|
scrollPosition = this.el.scrollHeight * this.scrollPosition / this.scrollHeight;
|
|
|
|
}
|
|
|
|
this.$el.scrollTop(scrollPosition - this.$el.outerHeight());
|
2015-07-14 23:11:11 +02:00
|
|
|
},
|
|
|
|
scrollToBottomIfNeeded: function() {
|
2015-08-26 01:47:15 +02:00
|
|
|
if (this.shouldStickToBottom) {
|
|
|
|
this.$el.scrollTop(this.scrollHeight);
|
2015-07-14 23:11:11 +02:00
|
|
|
}
|
|
|
|
},
|
2015-01-30 07:59:08 +01:00
|
|
|
scrollToBottom: function() {
|
|
|
|
// TODO: Avoid scrolling if user has manually scrolled up?
|
|
|
|
this.$el.scrollTop(this.el.scrollHeight);
|
2015-07-14 23:11:11 +02:00
|
|
|
this.measureScrollPosition();
|
2015-01-30 07:59:08 +01:00
|
|
|
},
|
|
|
|
addAll: function() {
|
|
|
|
Whisper.ListView.prototype.addAll.apply(this, arguments); // super()
|
|
|
|
this.scrollToBottom();
|
|
|
|
}
|
|
|
|
});
|
2014-07-22 20:55:26 +02:00
|
|
|
})();
|