commento/frontend/js/login.js
Anton Linevych 9e3935b3b2 frontend: use gulp, eslint, code refactor
Apologies in advance for the insanely huge commit. This commit is
primarily based on Anton Linevych's amazing work found here [1]. While
he had gone through the pains of making small, atomic changes to each
file, I had put off reviewing the PR for a long time. By the time I
finally got around to it, the project had changed so much that it didn't
make sense to keep the commits the same way. So I've cherry-picked most
of his commits, with some changes here and there, and I've squashed them
into one commit.

[1] https://gitlab.com/linevych/commento-ce/tree/feature/frontend_building_improvements
2018-12-20 04:14:48 -05:00

76 lines
1.9 KiB
JavaScript

(function (global, document) {
"use strict";
(document);
// Shows messages produced from email confirmation attempts.
function displayConfirmedEmail() {
var confirmed = global.paramGet("confirmed");
if (confirmed === "true") {
$("#msg").html("Successfully confirmed! Login to continue.")
} else if (confirmed === "false") {
$("#err").html("That link has expired.")
}
}
// Shows messages produced from password reset attempts.
function displayChangedPassword() {
var changed = global.paramGet("changed");
if (changed === "true") {
$("#msg").html("Password changed successfully! Login to continue.")
}
}
// Shows messages produced from completed signups.
function displaySignedUp() {
var signedUp = global.paramGet("signedUp");
if (signedUp === "true") {
$("#msg").html("Registration successful! Login to continue.")
}
}
// Shows email confirmation and password reset messages, if any.
global.displayMessages = function() {
displayConfirmedEmail();
displayChangedPassword();
displaySignedUp();
};
// Logs the user in and redirects to the dashboard.
global.login = function() {
var allOk = global.unfilledMark(["#email", "#password"], function(el) {
el.css("border-bottom", "1px solid red");
});
if (!allOk) {
global.textSet("#err", "Please make sure all fields are filled");
return;
}
var json = {
"email": $("#email").val(),
"password": $("#password").val(),
};
global.buttonDisable("#login-button");
global.post(global.origin + "/api/owner/login", json, function(resp) {
global.buttonEnable("#login-button");
if (!resp.success) {
global.textSet("#err", resp.message);
return;
}
global.cookieSet("commentoOwnerToken", resp.ownerToken);
document.location = global.origin + "/dashboard";
});
};
} (window.commento, document));