2018-07-07 00:48:14 +00:00
|
|
|
/* global Whisper, _ */
|
|
|
|
|
|
|
|
// eslint-disable-next-line func-names
|
2018-04-27 21:25:04 +00:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
2018-07-07 00:48:14 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2014-07-22 18:55:26 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
Whisper.MessageListView = Whisper.ListView.extend({
|
|
|
|
tagName: 'ul',
|
|
|
|
className: 'message-list',
|
|
|
|
itemView: Whisper.MessageView,
|
|
|
|
events: {
|
|
|
|
scroll: 'onScroll',
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
initialize() {
|
2018-04-27 21:25:04 +00:00
|
|
|
Whisper.ListView.prototype.initialize.call(this);
|
2017-05-31 00:29:23 +00:00
|
|
|
|
2018-07-07 00:48:14 +00:00
|
|
|
this.triggerLazyScroll = _.debounce(() => {
|
|
|
|
this.$el.trigger('lazyScroll');
|
|
|
|
}, 500);
|
2018-04-27 21:25:04 +00:00
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
onScroll() {
|
2018-04-27 21:25:04 +00:00
|
|
|
this.measureScrollPosition();
|
|
|
|
if (this.$el.scrollTop() === 0) {
|
|
|
|
this.$el.trigger('loadMore');
|
|
|
|
}
|
|
|
|
if (this.atBottom()) {
|
|
|
|
this.$el.trigger('atBottom');
|
|
|
|
} else if (this.bottomOffset > this.outerHeight) {
|
|
|
|
this.$el.trigger('farFromBottom');
|
|
|
|
}
|
2017-05-31 00:29:23 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
this.triggerLazyScroll();
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
atBottom() {
|
2018-04-27 21:25:04 +00:00
|
|
|
return this.bottomOffset < 30;
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
measureScrollPosition() {
|
2018-04-27 21:25:04 +00:00
|
|
|
if (this.el.scrollHeight === 0) {
|
|
|
|
// hidden
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.outerHeight = this.$el.outerHeight();
|
|
|
|
this.scrollPosition = this.$el.scrollTop() + this.outerHeight;
|
|
|
|
this.scrollHeight = this.el.scrollHeight;
|
|
|
|
this.bottomOffset = this.scrollHeight - this.scrollPosition;
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
resetScrollPosition() {
|
2018-04-27 21:25:04 +00:00
|
|
|
this.$el.scrollTop(this.scrollPosition - this.$el.outerHeight());
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
scrollToBottomIfNeeded() {
|
2018-04-27 21:25:04 +00:00
|
|
|
// This is counter-intuitive. Our current bottomOffset is reflective of what
|
|
|
|
// we last measured, not necessarily the current state. And this is called
|
|
|
|
// after we just made a change to the DOM: inserting a message, or an image
|
|
|
|
// finished loading. So if we were near the bottom before, we _need_ to be
|
|
|
|
// at the bottom again. So we scroll to the bottom.
|
|
|
|
if (this.atBottom()) {
|
|
|
|
this.scrollToBottom();
|
|
|
|
}
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
scrollToBottom() {
|
2018-04-27 21:25:04 +00:00
|
|
|
this.$el.scrollTop(this.el.scrollHeight);
|
|
|
|
this.measureScrollPosition();
|
|
|
|
},
|
2018-07-07 00:48:14 +00:00
|
|
|
addOne(model) {
|
|
|
|
let view;
|
2018-04-27 21:25:04 +00:00
|
|
|
if (model.isExpirationTimerUpdate()) {
|
2018-07-07 00:48:14 +00:00
|
|
|
view = new Whisper.ExpirationTimerUpdateView({ model }).render();
|
2018-04-27 21:25:04 +00:00
|
|
|
} else if (model.get('type') === 'keychange') {
|
2018-07-07 00:48:14 +00:00
|
|
|
view = new Whisper.KeyChangeView({ model }).render();
|
2018-04-27 21:25:04 +00:00
|
|
|
} else if (model.get('type') === 'verified-change') {
|
2018-07-07 00:48:14 +00:00
|
|
|
view = new Whisper.VerifiedChangeView({ model }).render();
|
2018-04-27 21:25:04 +00:00
|
|
|
} else {
|
2018-07-07 00:48:14 +00:00
|
|
|
// eslint-disable-next-line new-cap
|
|
|
|
view = new this.itemView({ model }).render();
|
2018-04-27 21:25:04 +00:00
|
|
|
this.listenTo(view, 'beforeChangeHeight', this.measureScrollPosition);
|
|
|
|
this.listenTo(view, 'afterChangeHeight', this.scrollToBottomIfNeeded);
|
|
|
|
}
|
2017-05-17 21:34:02 +00:00
|
|
|
|
2018-07-07 00:48:14 +00:00
|
|
|
const index = this.collection.indexOf(model);
|
2018-04-27 21:25:04 +00:00
|
|
|
this.measureScrollPosition();
|
2017-05-27 00:24:51 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
if (model.get('unread') && !this.atBottom()) {
|
|
|
|
this.$el.trigger('newOffscreenMessage');
|
|
|
|
}
|
2017-05-19 01:33:35 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
if (index === this.collection.length - 1) {
|
|
|
|
// add to the bottom.
|
|
|
|
this.$el.append(view.el);
|
|
|
|
} else if (index === 0) {
|
|
|
|
// add to top
|
|
|
|
this.$el.prepend(view.el);
|
|
|
|
} else {
|
|
|
|
// insert
|
2018-07-07 00:48:14 +00:00
|
|
|
const next = this.$(`#${this.collection.at(index + 1).id}`);
|
|
|
|
const prev = this.$(`#${this.collection.at(index - 1).id}`);
|
2018-04-27 21:25:04 +00:00
|
|
|
if (next.length > 0) {
|
|
|
|
view.$el.insertBefore(next);
|
|
|
|
} else if (prev.length > 0) {
|
|
|
|
view.$el.insertAfter(prev);
|
|
|
|
} else {
|
|
|
|
// scan for the right spot
|
2018-07-07 00:48:14 +00:00
|
|
|
const elements = this.$el.children();
|
2018-04-27 21:25:04 +00:00
|
|
|
if (elements.length > 0) {
|
2018-07-07 00:48:14 +00:00
|
|
|
for (let i = 0; i < elements.length; i += 1) {
|
|
|
|
const m = this.collection.get(elements[i].id);
|
|
|
|
const mIndex = this.collection.indexOf(m);
|
|
|
|
if (mIndex > index) {
|
2018-04-27 21:25:04 +00:00
|
|
|
view.$el.insertBefore(elements[i]);
|
|
|
|
break;
|
|
|
|
}
|
2015-11-11 00:03:19 +00:00
|
|
|
}
|
2018-04-27 21:25:04 +00:00
|
|
|
} else {
|
|
|
|
this.$el.append(view.el);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.scrollToBottomIfNeeded();
|
|
|
|
},
|
|
|
|
});
|
2014-07-22 18:55:26 +00:00
|
|
|
})();
|