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.
		
		
		
		
		
			
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
| /*
 | |
|  * vim: ts=4:sw=4:expandtab
 | |
|  */
 | |
| (function () {
 | |
|     'use strict';
 | |
| 
 | |
|     window.Whisper = window.Whisper || {};
 | |
| 
 | |
|     var ErrorView = Whisper.View.extend({
 | |
|         className: 'error',
 | |
|         templateName: 'generic-error',
 | |
|         render_attributes: function() {
 | |
|             return this.model;
 | |
|         }
 | |
|     });
 | |
| 
 | |
|     var KeyConflictView = ErrorView.extend({
 | |
|         className: 'key-conflict',
 | |
|         templateName: 'key-conflict',
 | |
|         initialize: function(options) {
 | |
|             this.message = options.message;
 | |
|         },
 | |
|         events: {
 | |
|             'click': 'select'
 | |
|         },
 | |
|         render_attributes: function() {
 | |
|             var errorMessage;
 | |
|             if (this.message.isIncoming()) {
 | |
|                 errorMessage = 'incomingKeyConflict';
 | |
|             } else {
 | |
|                 errorMessage = 'outgoingKeyConflict';
 | |
|             }
 | |
|             return { message: i18n(errorMessage) };
 | |
|         },
 | |
|         select: function() {
 | |
|             this.$el.trigger('select', {message: this.message});
 | |
|         },
 | |
|     });
 | |
| 
 | |
|     Whisper.MessageErrorView = Backbone.View.extend({
 | |
|         className: 'error',
 | |
|         initialize: function(options) {
 | |
|             if (this.model.name === 'IncomingIdentityKeyError' ||
 | |
|                 this.model.name === 'OutgoingIdentityKeyError') {
 | |
|                 this.view = new KeyConflictView({
 | |
|                     model   : this.model,
 | |
|                     message : options.message
 | |
|                 });
 | |
|             } else {
 | |
|                 this.view = new ErrorView({ model: this.model });
 | |
|             }
 | |
|             this.$el.append(this.view.el);
 | |
|             this.view.render();
 | |
|         },
 | |
|         render: function() {
 | |
|             this.view.render();
 | |
|             return this;
 | |
|         }
 | |
|     });
 | |
| })();
 |