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.
		
		
		
		
		
			
		
			
				
	
	
		
			98 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
/* global Whisper, i18n, _ */
 | 
						|
 | 
						|
// eslint-disable-next-line func-names
 | 
						|
(function() {
 | 
						|
  'use strict';
 | 
						|
 | 
						|
  window.Whisper = window.Whisper || {};
 | 
						|
 | 
						|
  Whisper.NicknameDialogView = Whisper.View.extend({
 | 
						|
    className: 'loki-dialog nickname-dialog modal',
 | 
						|
    templateName: 'nickname-dialog',
 | 
						|
    initialize(options) {
 | 
						|
      this.message = options.message;
 | 
						|
      this.name = options.name || '';
 | 
						|
 | 
						|
      this.resolve = options.resolve;
 | 
						|
      this.okText = options.okText || i18n('ok');
 | 
						|
 | 
						|
      this.reject = options.reject;
 | 
						|
      this.cancelText = options.cancelText || i18n('cancel');
 | 
						|
 | 
						|
      this.clear = options.clear;
 | 
						|
      this.clearText = options.clearText || i18n('clear');
 | 
						|
 | 
						|
      this.title = options.title;
 | 
						|
 | 
						|
      this.render();
 | 
						|
 | 
						|
      this.$input = this.$('input');
 | 
						|
      this.$input.val(this.name);
 | 
						|
      this.$input.focus();
 | 
						|
 | 
						|
      this.validateNickname();
 | 
						|
    },
 | 
						|
    events: {
 | 
						|
      keyup: 'onKeyup',
 | 
						|
      'click .ok': 'ok',
 | 
						|
      'click .cancel': 'cancel',
 | 
						|
      'click .clear': 'clear',
 | 
						|
      change: 'validateNickname',
 | 
						|
    },
 | 
						|
    validateNickname() {
 | 
						|
      const nickname = this.$input.val();
 | 
						|
 | 
						|
      if (_.isEmpty(nickname)) {
 | 
						|
        this.$('.clear').hide();
 | 
						|
      } else {
 | 
						|
        this.$('.clear').show();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    render_attributes() {
 | 
						|
      return {
 | 
						|
        message: this.message,
 | 
						|
        showCancel: !this.hideCancel,
 | 
						|
        cancel: this.cancelText,
 | 
						|
        ok: this.okText,
 | 
						|
        clear: this.clearText,
 | 
						|
        title: this.title,
 | 
						|
      };
 | 
						|
    },
 | 
						|
    ok() {
 | 
						|
      const nickname = this.$input.val().trim();
 | 
						|
 | 
						|
      this.remove();
 | 
						|
      if (this.resolve) {
 | 
						|
        this.resolve(nickname);
 | 
						|
      }
 | 
						|
    },
 | 
						|
    cancel() {
 | 
						|
      this.remove();
 | 
						|
      if (this.reject) {
 | 
						|
        this.reject();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    clear() {
 | 
						|
      this.$input.val('').trigger('change');
 | 
						|
    },
 | 
						|
    onKeyup(event) {
 | 
						|
      this.validateNickname();
 | 
						|
      switch (event.key) {
 | 
						|
        case 'Enter':
 | 
						|
          this.ok();
 | 
						|
          break;
 | 
						|
        case 'Escape':
 | 
						|
        case 'Esc':
 | 
						|
          this.cancel();
 | 
						|
          break;
 | 
						|
        default:
 | 
						|
          return;
 | 
						|
      }
 | 
						|
      event.preventDefault();
 | 
						|
    },
 | 
						|
    focusCancel() {
 | 
						|
      this.$('.cancel').focus();
 | 
						|
    },
 | 
						|
  });
 | 
						|
})();
 |