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.
		
		
		
		
		
			
		
			
				
	
	
		
			244 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			244 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			JavaScript
		
	
/*
 | 
						|
 * vim: ts=4:sw=4:expandtab
 | 
						|
 */
 | 
						|
(function () {
 | 
						|
    'use strict';
 | 
						|
 | 
						|
    window.Whisper = window.Whisper || {};
 | 
						|
 | 
						|
    var SocketView = Whisper.View.extend({
 | 
						|
        className: 'status',
 | 
						|
        initialize: function() {
 | 
						|
            setInterval(this.updateStatus.bind(this), 5000);
 | 
						|
        },
 | 
						|
        updateStatus: function() {
 | 
						|
            var className, message = '';
 | 
						|
            switch(getSocketStatus && getSocketStatus()) {
 | 
						|
                case WebSocket.CONNECTING:
 | 
						|
                    className = 'connecting';
 | 
						|
                    break;
 | 
						|
                case WebSocket.OPEN:
 | 
						|
                    className = 'open';
 | 
						|
                    break;
 | 
						|
                case WebSocket.CLOSING:
 | 
						|
                    className = 'closing';
 | 
						|
                    break;
 | 
						|
                case WebSocket.CLOSED:
 | 
						|
                    className = 'closed';
 | 
						|
                    message = i18n('disconnected');
 | 
						|
                    break;
 | 
						|
            }
 | 
						|
            if (!this.$el.hasClass(className)) {
 | 
						|
                this.$el.attr('class', className);
 | 
						|
                this.$el.text(message);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
    Whisper.ConversationStack = Whisper.View.extend({
 | 
						|
        className: 'conversation-stack',
 | 
						|
        open: function(conversation) {
 | 
						|
            var id = 'conversation-' + conversation.cid;
 | 
						|
            if (id !== this.el.firstChild.id) {
 | 
						|
                this.$el.first().find('video, audio').each(function() {
 | 
						|
                    this.pause();
 | 
						|
                });
 | 
						|
                var $el = this.$('#'+id);
 | 
						|
                if ($el === null || $el.length === 0) {
 | 
						|
                    var view = new Whisper.ConversationView({
 | 
						|
                        model: conversation,
 | 
						|
                        appWindow: this.model.appWindow
 | 
						|
                    });
 | 
						|
                    $el = view.$el;
 | 
						|
                }
 | 
						|
                $el.prependTo(this.el);
 | 
						|
                conversation.trigger('opened');
 | 
						|
            }
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
    Whisper.FontSizeView = Whisper.View.extend({
 | 
						|
        defaultSize: 14,
 | 
						|
        maxSize: 30,
 | 
						|
        minSize: 14,
 | 
						|
        initialize: function() {
 | 
						|
            this.currentSize = this.defaultSize;
 | 
						|
            this.render();
 | 
						|
        },
 | 
						|
        events: { 'mousewheel': 'zoomText' },
 | 
						|
        zoomText: function(e) {
 | 
						|
            if (e.ctrlKey === true) {
 | 
						|
                if (e.originalEvent.deltaY > 0) {
 | 
						|
                    if (this.currentSize > this.minSize) {
 | 
						|
                        this.currentSize--;
 | 
						|
                        this.render();
 | 
						|
                    }
 | 
						|
                } else if (e.originalEvent.deltaY < 0) {
 | 
						|
                    if (this.currentSize < this.maxSize) {
 | 
						|
                        this.currentSize++;
 | 
						|
                        this.render();
 | 
						|
                    }
 | 
						|
                }
 | 
						|
            }
 | 
						|
        },
 | 
						|
        render: function() {
 | 
						|
            this.$el.css('font-size', this.currentSize + 'px');
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
    Whisper.InboxView = Whisper.View.extend({
 | 
						|
        templateName: 'two-column',
 | 
						|
        className: 'inbox',
 | 
						|
        applyTheme: function() {
 | 
						|
            var theme = storage.get('theme-setting') || 'android';
 | 
						|
            this.$el.removeClass('ios')
 | 
						|
                    .removeClass('android')
 | 
						|
                    .addClass(theme);
 | 
						|
        },
 | 
						|
        initialize: function (options) {
 | 
						|
            this.render();
 | 
						|
            this.applyTheme();
 | 
						|
            new Whisper.FontSizeView({ el: this.el });
 | 
						|
            this.conversation_stack = new Whisper.ConversationStack({
 | 
						|
                el: this.$('.conversation-stack'),
 | 
						|
                model: { appWindow: options.appWindow }
 | 
						|
            });
 | 
						|
 | 
						|
            var inboxCollection = getInboxCollection();
 | 
						|
            this.inboxListView = new Whisper.ConversationListView({
 | 
						|
                el         : this.$('.inbox'),
 | 
						|
                collection : inboxCollection
 | 
						|
            }).render();
 | 
						|
 | 
						|
            this.inboxListView.listenTo(inboxCollection,
 | 
						|
                    'add change:timestamp change:name change:number',
 | 
						|
                    this.inboxListView.sort);
 | 
						|
 | 
						|
            this.searchView = new Whisper.ConversationSearchView({
 | 
						|
                el    : this.$('.search-results'),
 | 
						|
                input : this.$('input.search')
 | 
						|
            });
 | 
						|
 | 
						|
            this.searchView.$el.hide();
 | 
						|
 | 
						|
            this.listenTo(this.searchView, 'hide', function() {
 | 
						|
                this.searchView.$el.hide();
 | 
						|
                this.inboxListView.$el.show();
 | 
						|
            });
 | 
						|
            this.listenTo(this.searchView, 'show', function() {
 | 
						|
                this.searchView.$el.show();
 | 
						|
                this.inboxListView.$el.hide();
 | 
						|
            });
 | 
						|
            this.listenTo(this.searchView, 'open',
 | 
						|
                this.openConversation.bind(this, null));
 | 
						|
 | 
						|
            new SocketView().render().$el.appendTo(this.$('.socket-status'));
 | 
						|
 | 
						|
            extension.windows.onClosed(function() {
 | 
						|
                this.inboxListView.stopListening();
 | 
						|
            }.bind(this));
 | 
						|
 | 
						|
            if (extension.expired()) {
 | 
						|
                var banner = new Whisper.ExpiredAlertBanner().render();
 | 
						|
                banner.$el.prependTo(this.$el);
 | 
						|
                this.$el.addClass('expired');
 | 
						|
            }
 | 
						|
        },
 | 
						|
        render_attributes: {
 | 
						|
            welcomeToSignal         : i18n('welcomeToSignal'),
 | 
						|
            selectAContact          : i18n('selectAContact'),
 | 
						|
            searchForPeopleOrGroups : i18n('searchForPeopleOrGroups'),
 | 
						|
            submitDebugLog          : i18n('submitDebugLog'),
 | 
						|
            settings                : i18n('settings'),
 | 
						|
            restartSignal           : i18n('restartSignal'),
 | 
						|
        },
 | 
						|
        events: {
 | 
						|
            'click': 'onClick',
 | 
						|
            'click #header': 'focusHeader',
 | 
						|
            'click .conversation': 'focusConversation',
 | 
						|
            'click .global-menu .hamburger': 'toggleMenu',
 | 
						|
            'click .show-debug-log': 'showDebugLog',
 | 
						|
            'click .showSettings': 'showSettings',
 | 
						|
            'select .gutter .conversation-list-item': 'openConversation',
 | 
						|
            'input input.search': 'filterContacts',
 | 
						|
            'click .restart-signal': 'reloadBackgroundPage',
 | 
						|
            'show .lightbox': 'showLightbox'
 | 
						|
        },
 | 
						|
        focusConversation: function(e) {
 | 
						|
            if (e && this.$(e.target).closest('.placeholder').length) {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
 | 
						|
            this.$('#header, .gutter').addClass('inactive');
 | 
						|
            this.$('.conversation-stack').removeClass('inactive');
 | 
						|
        },
 | 
						|
        focusHeader: function() {
 | 
						|
            this.$('.conversation-stack').addClass('inactive');
 | 
						|
            this.$('#header, .gutter').removeClass('inactive');
 | 
						|
            this.$('.conversation:first .menu').trigger('close');
 | 
						|
        },
 | 
						|
        reloadBackgroundPage: function() {
 | 
						|
            chrome.runtime.reload();
 | 
						|
        },
 | 
						|
        showSettings: function() {
 | 
						|
            var view = new Whisper.SettingsView();
 | 
						|
            view.$el.appendTo(this.el);
 | 
						|
            view.$el.on('change-theme', this.applyTheme.bind(this));
 | 
						|
        },
 | 
						|
        filterContacts: function(e) {
 | 
						|
            this.searchView.filterContacts(e);
 | 
						|
            var input = this.$('input.search');
 | 
						|
            if (input.val().length > 0) {
 | 
						|
                input.addClass('active');
 | 
						|
            } else {
 | 
						|
                input.removeClass('active');
 | 
						|
            }
 | 
						|
        },
 | 
						|
        openConversation: function(e, conversation) {
 | 
						|
            this.searchView.hideHints();
 | 
						|
            conversation = ConversationController.create(conversation);
 | 
						|
            this.conversation_stack.open(conversation);
 | 
						|
            this.focusConversation();
 | 
						|
        },
 | 
						|
        toggleMenu: function() {
 | 
						|
            this.$('.global-menu .menu-list').toggle();
 | 
						|
        },
 | 
						|
        showDebugLog: function() {
 | 
						|
            this.$('.debug-log').remove();
 | 
						|
            new Whisper.DebugLogView().$el.appendTo(this.el);
 | 
						|
        },
 | 
						|
        showLightbox: function(e) {
 | 
						|
            this.$el.append(e.target);
 | 
						|
        },
 | 
						|
        closeRecording: function(e) {
 | 
						|
            if (e && this.$(e.target).closest('.capture-audio').length > 0 ) {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
            this.$('.conversation:first .recorder').trigger('close');
 | 
						|
        },
 | 
						|
        closeMenu: function(e) {
 | 
						|
            if (e && this.$(e.target).parent('.global-menu').length > 0 ) {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
 | 
						|
            this.$('.global-menu .menu-list').hide();
 | 
						|
        },
 | 
						|
        onClick: function(e) {
 | 
						|
            this.closeMenu(e);
 | 
						|
            this.closeRecording(e);
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
    Whisper.ExpiredAlertBanner = Whisper.View.extend({
 | 
						|
        templateName: 'expired_alert',
 | 
						|
        className: 'expiredAlert clearfix',
 | 
						|
        render_attributes: function() {
 | 
						|
            return {
 | 
						|
                expiredWarning: i18n('expiredWarning'),
 | 
						|
                upgrade: i18n('upgrade'),
 | 
						|
            };
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
})();
 |