2015-09-07 23:53:43 +02:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-19 01:16:24 +01:00
|
|
|
*/
|
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-11-11 01:03:19 +01:00
|
|
|
'update *': 'scrollToBottomIfNeeded',
|
|
|
|
'scroll': 'onScroll',
|
2015-08-26 01:47:15 +02:00
|
|
|
'reset-scroll': 'resetScrollPosition'
|
2015-01-30 07:59:08 +01:00
|
|
|
},
|
2015-11-11 01:03:19 +01:00
|
|
|
onScroll: function() {
|
|
|
|
this.measureScrollPosition();
|
|
|
|
if (this.$el.scrollTop() === 0) {
|
|
|
|
this.$el.trigger('loadMore');
|
|
|
|
}
|
2015-08-27 02:30:20 +02:00
|
|
|
},
|
2015-07-14 23:11:11 +02:00
|
|
|
measureScrollPosition: function() {
|
2015-08-28 01:25:33 +02:00
|
|
|
if (this.el.scrollHeight === 0) { // hidden
|
|
|
|
return;
|
|
|
|
}
|
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();
|
2015-11-11 01:03:19 +01:00
|
|
|
},
|
|
|
|
addOne: function(model) {
|
|
|
|
if (this.itemView) {
|
|
|
|
var view = new this.itemView({model: model}).render();
|
|
|
|
if (this.collection.indexOf(model) === this.collection.length - 1) {
|
|
|
|
// add to the bottom.
|
|
|
|
this.$el.append(view.el);
|
|
|
|
this.scrollToBottom();
|
|
|
|
} else {
|
|
|
|
// add to the top.
|
|
|
|
var offset = this.el.scrollHeight - this.$el.scrollTop();
|
|
|
|
this.$el.prepend(view.el);
|
|
|
|
this.$el.scrollTop(this.el.scrollHeight - offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.$el.removeClass('loading');
|
|
|
|
},
|
2015-01-30 07:59:08 +01:00
|
|
|
});
|
2014-07-22 20:55:26 +02:00
|
|
|
})();
|