Fix mock, power buttons.

This commit is contained in:
Jonathan Bernard 2016-11-19 21:04:19 -06:00
parent 0d87b857f3
commit ad893b2599
2 changed files with 23 additions and 9 deletions

View File

@ -28,13 +28,23 @@ if (!('lightdm' in window)) {
lightdm.layout = lightdm.layouts[0]; lightdm.layout = lightdm.layouts[0];
lightdm.sessions = [ lightdm.sessions = [
{ {
key: "key1", key: "fluxbox",
name: "session 1", name: "Fluxbox",
comment: "no comment" comment: "no comment"
}, },
{ {
key: "key2", key: "lubuntu",
name: "session 2", name: "Lubuntu",
comment: "no comment"
},
{
key: "openbox",
name: "Openbox",
comment: "no comment"
},
{
key: "weston",
name: "Weston",
comment: "no comment" comment: "no comment"
} }
]; ];
@ -42,6 +52,7 @@ if (!('lightdm' in window)) {
lightdm.default_session = lightdm.sessions[0]; lightdm.default_session = lightdm.sessions[0];
lightdm.authentication_user = null; lightdm.authentication_user = null;
lightdm.is_authenticated = false; lightdm.is_authenticated = false;
lightdm.in_authentication = false;
lightdm.can_suspend = true; lightdm.can_suspend = true;
lightdm.can_hibernate = true; lightdm.can_hibernate = true;
lightdm.can_restart = true; lightdm.can_restart = true;
@ -100,10 +111,10 @@ if (!('lightdm' in window)) {
} }
_lightdm_mock_check_argument_length(arguments, 1); _lightdm_mock_check_argument_length(arguments, 1);
var user = _lightdm_mock_get_user(lightdm.username); var user = _lightdm_mock_get_user(lightdm._username);
// That's right, passwords are the same as the username's! // That's right, passwords are the same as the username's!
if (!user && secret == lightdm._username) { if (user && secret == lightdm._username) {
lightdm.is_authenticated = true; lightdm.is_authenticated = true;
lightdm.authentication_user = user; lightdm.authentication_user = user;
} else { } else {
@ -112,6 +123,7 @@ if (!('lightdm' in window)) {
lightdm._username = null; lightdm._username = null;
} }
lightdm.in_authentication = false;
authentication_complete(); authentication_complete();
}; };
@ -121,6 +133,7 @@ if (!('lightdm' in window)) {
if (lightdm._username) { if (lightdm._username) {
throw "Already authenticating!"; throw "Already authenticating!";
} }
lightdm.in_authentication = true;
var user = _lightdm_mock_get_user(username); var user = _lightdm_mock_get_user(username);
if (!user) { if (!user) {
show_error(username + " is an invalid user"); show_error(username + " is an invalid user");
@ -136,6 +149,7 @@ if (!('lightdm' in window)) {
throw "we are not authenticating"; throw "we are not authenticating";
} }
lightdm._username = null; lightdm._username = null;
lightdm.in_authentication = false;
}; };
lightdm.suspend = function () { lightdm.suspend = function () {

View File

@ -26,9 +26,9 @@
events: { events: {
'click #power-button': 'showPowerOptions', 'click #power-button': 'showPowerOptions',
'mouseout #power-options': 'hidePowerOptions', 'mouseout #power-options': 'hidePowerOptions',
'click suspend': 'suspend', 'click #suspend': 'suspend',
'click restart': 'restart', 'click #restart': 'restart',
'click shutdown': 'shutdown' 'click #shutdown': 'shutdown'
}, },
initialize: function(options) { initialize: function(options) {