2015-09-07 21:53:43 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-19 00:16:24 +00:00
|
|
|
*/
|
2014-07-22 18:55:26 +00:00
|
|
|
(function () {
|
2015-01-30 06:59:08 +00:00
|
|
|
'use strict';
|
2015-03-05 23:44:53 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2014-07-22 18:55:26 +00:00
|
|
|
|
2015-01-30 06:59:08 +00:00
|
|
|
Whisper.MessageListView = Whisper.ListView.extend({
|
|
|
|
tagName: 'ul',
|
2015-08-27 00:48:02 +00:00
|
|
|
className: 'message-list',
|
2015-01-30 06:59:08 +00:00
|
|
|
itemView: Whisper.MessageView,
|
|
|
|
events: {
|
2015-08-27 00:30:20 +00:00
|
|
|
'add': 'onAdd',
|
2015-07-15 06:08:36 +00:00
|
|
|
'update *': 'scrollToBottom',
|
2015-08-25 23:47:15 +00:00
|
|
|
'scroll': 'measureScrollPosition',
|
|
|
|
'reset-scroll': 'resetScrollPosition'
|
2015-01-30 06:59:08 +00:00
|
|
|
},
|
2015-08-27 00:30:20 +00:00
|
|
|
onAdd: function() {
|
|
|
|
this.$el.removeClass('loading');
|
|
|
|
this.scrollToBottom();
|
|
|
|
},
|
2015-07-14 21:11:11 +00:00
|
|
|
measureScrollPosition: function() {
|
2015-08-27 23:25:33 +00:00
|
|
|
if (this.el.scrollHeight === 0) { // hidden
|
|
|
|
return;
|
|
|
|
}
|
2015-08-25 23:47:15 +00: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 21:11:11 +00:00
|
|
|
},
|
|
|
|
scrollToBottomIfNeeded: function() {
|
2015-08-25 23:47:15 +00:00
|
|
|
if (this.shouldStickToBottom) {
|
|
|
|
this.$el.scrollTop(this.scrollHeight);
|
2015-07-14 21:11:11 +00:00
|
|
|
}
|
|
|
|
},
|
2015-01-30 06:59:08 +00:00
|
|
|
scrollToBottom: function() {
|
|
|
|
// TODO: Avoid scrolling if user has manually scrolled up?
|
|
|
|
this.$el.scrollTop(this.el.scrollHeight);
|
2015-07-14 21:11:11 +00:00
|
|
|
this.measureScrollPosition();
|
2015-01-30 06:59:08 +00:00
|
|
|
},
|
|
|
|
addAll: function() {
|
|
|
|
Whisper.ListView.prototype.addAll.apply(this, arguments); // super()
|
|
|
|
this.scrollToBottom();
|
|
|
|
}
|
|
|
|
});
|
2014-07-22 18:55:26 +00:00
|
|
|
})();
|