You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			42 lines
		
	
	
		
			985 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			42 lines
		
	
	
		
			985 B
		
	
	
	
		
			JavaScript
		
	
/* global Whisper, i18n */
 | 
						|
 | 
						|
// eslint-disable-next-line func-names
 | 
						|
(function() {
 | 
						|
  'use strict';
 | 
						|
 | 
						|
  window.Whisper = window.Whisper || {};
 | 
						|
 | 
						|
  // TODO: take a title string which could replace the 'members' header
 | 
						|
  Whisper.GroupMemberList = Whisper.View.extend({
 | 
						|
    className: 'group-member-list panel',
 | 
						|
    templateName: 'group-member-list',
 | 
						|
    initialize(options) {
 | 
						|
      this.needVerify = options.needVerify;
 | 
						|
 | 
						|
      this.render();
 | 
						|
 | 
						|
      this.member_list_view = new Whisper.ContactListView({
 | 
						|
        collection: this.model,
 | 
						|
        className: 'members',
 | 
						|
        toInclude: {
 | 
						|
          listenBack: options.listenBack,
 | 
						|
        },
 | 
						|
      });
 | 
						|
      this.member_list_view.render();
 | 
						|
 | 
						|
      this.$('.container').append(this.member_list_view.el);
 | 
						|
    },
 | 
						|
    render_attributes() {
 | 
						|
      let summary;
 | 
						|
      if (this.needVerify) {
 | 
						|
        summary = i18n('membersNeedingVerification');
 | 
						|
      }
 | 
						|
 | 
						|
      return {
 | 
						|
        members: i18n('groupMembers'),
 | 
						|
        summary,
 | 
						|
      };
 | 
						|
    },
 | 
						|
  });
 | 
						|
})();
 |