2015-09-07 14:53:43 -07:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-18 14:16:24 -10:00
|
|
|
*/
|
2014-07-22 08:55:26 -10:00
|
|
|
(function () {
|
2015-01-29 20:59:08 -10:00
|
|
|
'use strict';
|
2015-03-05 15:44:53 -08:00
|
|
|
window.Whisper = window.Whisper || {};
|
2014-07-22 08:55:26 -10:00
|
|
|
|
2015-01-29 20:59:08 -10:00
|
|
|
Whisper.MessageListView = Whisper.ListView.extend({
|
|
|
|
tagName: 'ul',
|
2015-08-26 17:48:02 -07:00
|
|
|
className: 'message-list',
|
2015-01-29 20:59:08 -10:00
|
|
|
itemView: Whisper.MessageView,
|
|
|
|
events: {
|
2015-11-10 16:03:19 -08:00
|
|
|
'scroll': 'onScroll',
|
2015-08-25 16:47:15 -07:00
|
|
|
'reset-scroll': 'resetScrollPosition'
|
2015-01-29 20:59:08 -10:00
|
|
|
},
|
2015-11-10 16:03:19 -08:00
|
|
|
onScroll: function() {
|
|
|
|
this.measureScrollPosition();
|
|
|
|
if (this.$el.scrollTop() === 0) {
|
|
|
|
this.$el.trigger('loadMore');
|
|
|
|
}
|
2015-08-26 17:30:20 -07:00
|
|
|
},
|
2015-07-14 23:11:11 +02:00
|
|
|
measureScrollPosition: function() {
|
2015-08-27 16:25:33 -07:00
|
|
|
if (this.el.scrollHeight === 0) { // hidden
|
|
|
|
return;
|
|
|
|
}
|
2015-08-25 16:47:15 -07:00
|
|
|
this.scrollPosition = this.$el.scrollTop() + this.$el.outerHeight();
|
|
|
|
this.scrollHeight = this.el.scrollHeight;
|
|
|
|
this.shouldStickToBottom = this.scrollPosition === this.scrollHeight;
|
2015-11-12 10:35:29 -08:00
|
|
|
if (this.shouldStickToBottom) {
|
|
|
|
this.bottomOffset = 0;
|
|
|
|
} else {
|
|
|
|
this.bottomOffset = this.scrollHeight - this.$el.scrollTop();
|
|
|
|
}
|
2015-08-25 16:47:15 -07:00
|
|
|
},
|
|
|
|
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-11-12 10:35:29 -08:00
|
|
|
this.$el.scrollTop(this.el.scrollHeight - this.bottomOffset);
|
2015-11-10 16:03:19 -08:00
|
|
|
},
|
|
|
|
addOne: function(model) {
|
2016-09-26 23:15:20 -07:00
|
|
|
var view;
|
2016-09-28 16:47:57 -07:00
|
|
|
if (model.isExpirationTimerUpdate()) {
|
2016-09-26 23:15:20 -07:00
|
|
|
view = new Whisper.ExpirationTimerUpdateView({model: model}).render();
|
|
|
|
} else {
|
|
|
|
view = new this.itemView({model: model}).render();
|
2015-11-12 10:35:29 -08:00
|
|
|
this.listenTo(view, 'beforeChangeHeight', this.measureScrollPosition);
|
|
|
|
this.listenTo(view, 'afterChangeHeight', this.scrollToBottomIfNeeded);
|
2016-09-26 23:15:20 -07:00
|
|
|
}
|
|
|
|
if (this.collection.indexOf(model) === this.collection.length - 1) {
|
|
|
|
// add to the bottom.
|
|
|
|
this.$el.append(view.el);
|
|
|
|
this.$el.scrollTop(this.el.scrollHeight); // TODO: Avoid scrolling if user has manually scrolled up?
|
|
|
|
this.measureScrollPosition();
|
|
|
|
} else {
|
|
|
|
// add to the top.
|
|
|
|
this.measureScrollPosition();
|
|
|
|
this.$el.prepend(view.el);
|
|
|
|
this.scrollToBottomIfNeeded();
|
2015-11-10 16:03:19 -08:00
|
|
|
}
|
|
|
|
},
|
2015-01-29 20:59:08 -10:00
|
|
|
});
|
2014-07-22 08:55:26 -10:00
|
|
|
})();
|