2015-09-07 21:53:43 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-08-04 19:15:37 +00:00
|
|
|
*/
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2017-06-09 01:08:41 +00:00
|
|
|
// This needs to make each member link to their verification view - except for yourself
|
|
|
|
// Do we update the display of each user to add Verified to their name if verified?
|
|
|
|
// What about the case where we're brought here because there are multiple users in the no-longer-verified state?
|
|
|
|
// We probably want to display some sort of helper text in that case at the least
|
|
|
|
// Or do we show only the problematic users in that case?
|
2015-08-04 19:15:37 +00:00
|
|
|
Whisper.GroupMemberList = Whisper.View.extend({
|
2016-03-21 22:37:53 +00:00
|
|
|
className: 'group-member-list panel',
|
2015-12-08 23:01:29 +00:00
|
|
|
templateName: 'group-member-list',
|
2017-06-10 19:18:24 +00:00
|
|
|
initialize: function(options) {
|
2015-08-04 19:15:37 +00:00
|
|
|
this.render();
|
2017-06-10 19:18:24 +00:00
|
|
|
console.log('GroupMemberList', options);
|
|
|
|
|
2015-09-03 20:33:17 +00:00
|
|
|
this.member_list_view = new Whisper.ContactListView({
|
2015-08-04 19:15:37 +00:00
|
|
|
collection: this.model.contactCollection,
|
2017-06-10 19:18:24 +00:00
|
|
|
className: 'members',
|
|
|
|
toInclude: {
|
|
|
|
listenBack: options.listenBack
|
|
|
|
}
|
2015-08-04 19:15:37 +00:00
|
|
|
});
|
|
|
|
this.member_list_view.render();
|
2016-03-21 22:37:53 +00:00
|
|
|
this.$('.container').append(this.member_list_view.el);
|
2015-08-04 19:15:37 +00:00
|
|
|
},
|
2015-12-26 01:03:32 +00:00
|
|
|
render_attributes: {
|
2017-06-10 19:18:24 +00:00
|
|
|
members: i18n('groupMembers')
|
2016-03-23 22:06:22 +00:00
|
|
|
}
|
2015-08-04 19:15:37 +00:00
|
|
|
});
|
|
|
|
})();
|