signal-desktop/js/views/group_update_view.js

33 lines
739 B
JavaScript
Raw Normal View History

/* global Backbone, Whisper */
// eslint-disable-next-line func-names
2018-04-27 21:25:04 +00:00
(function() {
'use strict';
2018-04-27 21:25:04 +00:00
window.Whisper = window.Whisper || {};
2018-04-27 21:25:04 +00:00
Whisper.GroupUpdateView = Backbone.View.extend({
tagName: 'div',
className: 'group-update',
render() {
// TODO l10n
2018-04-27 21:25:04 +00:00
if (this.model.left) {
this.$el.text(`${this.model.left} left the group`);
2018-04-27 21:25:04 +00:00
return this;
}
2015-02-16 20:47:36 +00:00
const messages = ['Updated the group.'];
2018-04-27 21:25:04 +00:00
if (this.model.name) {
messages.push(`Title is now '${this.model.name}'.`);
2018-04-27 21:25:04 +00:00
}
if (this.model.joined) {
messages.push(`${this.model.joined.join(', ')} joined the group`);
2018-04-27 21:25:04 +00:00
}
2018-04-27 21:25:04 +00:00
this.$el.text(messages.join(' '));
2018-04-27 21:25:04 +00:00
return this;
},
});
})();