lightdm-uestibulum/js/lightdm-uestibulum.js
2016-12-23 02:00:16 -06:00

287 lines
8.3 KiB
JavaScript

(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 '<li class=user data-username="' + user.name + '">' +
this.getUserName(user) + '</li>';
}, this).join('\n'));
if (this.user) {
this.$el.find('#greeting').text(this.uiView.getGreeting());
this.$el.find('#user-display').text(this.getUserName(this.user));
}
this.delegateEvents();
},
showUserSelect: function() {
if (lightdm.lock_hint || lightdm.users.length === 1) return;
this.$el.removeClass('failed-auth');
this.$el.find('#users').addClass('select-user');
lightdm.cancel_authentication();
this.$el.find('input[type=password]').removeClass('active');
this.user = null;
},
selectUser: function(e) {
var username = $(e.target).attr('data-username');
this.$el.find('#users').removeClass('select-user');
this.user = _.find(lightdm.users, function(user) {
return user.name == username; });
lightdm.authenticate(this.user.name);
this.render();
},
showPrompt: function(text, type) {
if (type == 'password') {
var $pwdInput = this.$el.find('input[type=password]');
$pwdInput.addClass('active');
$pwdInput.focus();
}
else alert(type + ': ' + text);
},
enterPassword: function(e) {
this.$el.removeClass('failed-auth');
//if (e.key != 'Enter') return;
if (e.keyCode != 13) return;
this.$el.addClass('checking');
if (!lightdm.in_authentication) lightdm.authenticate(this.user.name);
lightdm.respond($(e.target).val());
}
});
U.SessionView = Backbone.View.extend({
el: '#session-panel',
events: {
'click #session-display': 'showSessionSelect',
'click li.session': 'selectSession'
},
initialize: function(options) {
_.bindAll(this, 'render', 'showSessionSelect', 'selectSession');
this.session = lightdm.sessions[0];
this.render();
},
render: function() {
this.$el.find('#sessions-list').html(
_.map(lightdm.sessions, function(session) {
return '<li class=session data-sessionkey="' + session.key + '">' +
session.name + '</li>'; }).join('<li>&nbsp;|&nbsp;</li>'));
if (this.session) {
this.$el.find('#session-display').text(this.session.name); }
},
showSessionSelect: function() {
this.$el.find('#sessions').addClass('select-session');
},
selectSession: function(e) {
this.$el.find('#sessions').removeClass('select-session');
var sessionKey = $(e.target).attr('data-sessionkey');
this.session = _.find(lightdm.sessions, function(session) {
return session.key == sessionKey; });
this.render();
}
});
U.UIView = Backbone.View.extend({
el: 'body',
events: {},
initialize: function(options) {
_.bindAll(this, 'render', 'setTheme');
window.autologin_timer_expired = function() {};
if (lightdm.lock_hint) this.$el.addClass('lock-screen');
this.bgImgModel = new U.ImageModel
this.backgroundView = new U.BackgroundView({imageModel: this.bgImgModel});
this.sessionView = new U.SessionView();
this.loginView = new U.LoginView({uiView: this, sessionView: this.sessionView});
this.clockView = new U.ClockView();
this.powerView = new U.PowerView();
this.setTheme(U.config.theme || 'jdb')
.then(this.render);
},
render: function() { this.theme.render(this); },
getGreeting: function() { this.theme.getGreeting(); },
setTheme: function(themeName) {
var promise;
var uiView = this;
if (U.themes[themeName]) promise = Promise.resolve(U.themes[themeName]);
else {
promise = Promise.all([
U.load('script', 'themes/' + themeName + '/index.js'),
U.load('link', 'themes/' + themeName + '/style.css') ]);
}
return promise.then(function() {
if (uiView.theme) uiView.theme.unload(uiView);
uiView.theme = U.themes[themeName];
uiView.theme.init(uiView);
return uiView.theme;
});
}
});
$(document).ready(function() {
U.uiView = new U.UIView();
console.log('window: ' + Object.getOwnPropertyNames(window).join(', '));
});
})();