(function() { var U = window.uestibulum = { config { theme: 'jdb', hidpi: true }, themes: {} }; _.templateSettings = { interpolate: /\{\{(.+?)\}\}/g }; U.load = function(tag, url) { return new Promise(function(resolve, reject) { var element = document.createElement(tag); var parent = 'body'; var attr = 'src'; element.onload = resolve; element.onerror = reject; switch (tag) { case 'script': element.async = true; break; case 'link': element.type = 'text/css'; element.rel = 'stylesheet'; attr = 'href'; parent = 'head'; break; default: } element[attr] = url; document[parent].appendChild(element); }); }; U.ImageModel = Backbone.Model.extend({ defaults: { url: 'img/black.png' } }); U.BackgroundView = Backbone.View.extend({ el: '#background-image', initialize: function(options) { _.bindAll(this, 'render'); this.imgModel = options.imageModel; this.imgModel.on('change:url', this.render); }, render: function() { this.$el.attr('src', this.imgModel.get('url')); } }); U.ClockView = Backbone.View.extend({ el: '#clock-panel', render: function() { var now = new Date(); this.$el.find('.hours').text(now.getHours()); this.$el.find('.minutes').text(now.getMinutes() < 10 ? "0" + now.getMinutes(): now.getMinutes()); }, initialize: function(options) { _.bindAll(this, 'render'); setInterval(this.render, 1000); this.render(); } }); U.PowerView = Backbone.View.extend({ el: '#power-panel', events: { 'click #power-button': 'showPowerOptions', 'mouseout #power-options': 'hidePowerOptions', 'click #suspend': 'suspend', 'click #restart': 'restart', 'click #shutdown': 'shutdown' }, initialize: function(options) { _.bindAll(this, 'showPowerOptions', 'hidePowerOptions', 'restart', 'shutdown', 'suspend'); this.optionsEl = $('#power-options')[0]; }, showPowerOptions: function() { this.$el.addClass('active'); }, hidePowerOptions: function(e) { if (e.target != this.optionsEl) return; this.$el.removeClass('active'); }, restart: function() { lightdm.restart(); }, shutdown: function() { lightdm.shutdown(); }, suspend: function() { lightdm.suspend(); } }); U.LoginView = Backbone.View.extend({ el: '#login-panel', events: { 'click #user-display': 'showUserSelect', 'click li.user': 'selectUser', 'keypress input[type=password]': 'enterPassword' }, initialize: function(options) { _.bindAll(this, 'authComplete', 'enterPassword', 'getUserName', 'render', 'showPrompt', 'showUserSelect'); this.uiView = options.uiView; this.sessionView = options.sessionView; window.show_prompt = this.showPrompt; window.authentication_complete = this.authComplete; this.user = lightdm.users[0]; lightdm.authenticate(this.user.name); //lightdm.start_authentication(this.user.name); }, authComplete: function() { console.log('authComplete. is_authenticated: ' + lightdm.is_authenticated); if (lightdm.is_authenticated) { console.log('Logging in: lightdm.login(' + this.user.name + ',' + this.sessionView.key + ')'); //lightdm.start_session(this.sessionView.session.key); this.$el.removeClass('checking'); lightdm.login(this.user, this.sessionView.session.key); } else { this.$el.addClass('failed-auth'); this.$el.removeClass('checking'); lightdm.authenticate(this.loginView.user.name); //lightdm.start_authentication(this.loginView.user.name); } }, getUserName: function(user) { return user.display_name || user.real_name || user.name; }, render: function() { this.undelegateEvents(); var $userListEl = this.$el.find('#users-list'); $userListEl.html( _.map(lightdm.users, function(user) { return '