1
0
Fork 0
VaultUI/src/pages/Login.js

152 lines
4.2 KiB
JavaScript
Raw Normal View History

2021-05-03 09:25:42 +01:00
import { Margin } from "../elements/Margin.js";
import { MarginInline } from "../elements/MarginInline.js";
2021-04-15 13:01:58 +01:00
import { Page } from "../types/Page.js";
2021-05-07 23:21:38 +01:00
import { changePage, setErrorText, setPageContent } from "../pageUtils";
2021-05-07 11:53:26 +01:00
import { lookupSelf } from "../api/lookupSelf";
import { makeElement } from "../htmlUtils";
2021-05-07 23:08:02 +01:00
import { pageState } from "../globalPageState.ts";
2021-05-07 11:54:44 +01:00
import { usernameLogin } from "../api/usernameLogin";
import i18next from 'i18next';
2021-04-15 13:01:58 +01:00
export class LoginPage extends Page {
constructor() {
super();
}
render() {
let tokenLoginForm = makeElement({
tag: "form",
children: [
Margin(makeElement({
tag: "input",
class: ["uk-input", "uk-form-width-medium"],
attributes: {
required: true,
type: "password",
placeholder: i18next.t("token_input"),
2021-04-15 13:01:58 +01:00
name: "token"
}
})),
MarginInline(makeElement({
tag: "button",
class: ["uk-button", "uk-button-primary"],
text: i18next.t("log_in_btn"),
2021-04-15 13:01:58 +01:00
attributes: {
type: "submit"
}
}))
]
});
let usernameLoginForm = makeElement({
tag: "form",
children: [
Margin(makeElement({
tag: "input",
id: "usernameInput",
class: ["uk-input", "uk-form-width-medium"],
attributes: {
required: true,
type: "text",
placeholder: i18next.t("username_input"),
2021-04-15 13:01:58 +01:00
name: "username"
}
})),
Margin(makeElement({
tag: "input",
id: "passwordInput",
class: ["uk-input", "uk-form-width-medium"],
attributes: {
required: true,
type: "password",
placeholder: i18next.t("password_input"),
2021-04-15 13:01:58 +01:00
name: "password"
}
})),
MarginInline(makeElement({
tag: "button",
class: ["uk-button", "uk-button-primary"],
text: i18next.t("log_in_btn"),
2021-04-15 13:01:58 +01:00
attributes: {
type: "submit"
}
}))
]
});
setPageContent(makeElement({
tag: "div",
children: [
makeElement({
tag: "ul",
class: ["uk-subnav", "uk-subnav-pill"],
attributes: { "uk-switcher": "" },
children: [
makeElement({
tag: "li",
id: "tokenInput",
children: makeElement({
tag: "a",
text: i18next.t("log_in_with_token")
2021-04-15 13:01:58 +01:00
})
}),
makeElement({
tag: "li",
children: makeElement({
tag: "a",
text: i18next.t("log_in_with_username")
2021-04-15 13:01:58 +01:00
})
})
]
}),
makeElement({
tag: "p",
id: "errorText",
class: "uk-text-danger"
}),
makeElement({
tag: "ul",
class: ["uk-switcher", "uk-margin"],
children: [
makeElement({
tag: "li",
children: tokenLoginForm
}),
makeElement({
tag: "li",
children: usernameLoginForm
})
]
})
]
}));
tokenLoginForm.addEventListener("submit", function (e) {
e.preventDefault();
let formData = new FormData(tokenLoginForm);
const token = formData.get("token");
pageState.token = token;
2021-04-18 10:42:57 +01:00
lookupSelf().then(_ => {
2021-04-17 11:24:43 +01:00
changePage("HOME");
2021-04-15 13:01:58 +01:00
}).catch(e => {
document.getElementById("tokenInput").classList.add("uk-form-danger");
setErrorText(e.message);
});
});
usernameLoginForm.addEventListener("submit", function (e) {
e.preventDefault();
let formData = new FormData(usernameLoginForm);
usernameLogin(formData.get("username"), formData.get("password")).then(res => {
pageState.token = res;
2021-04-17 11:24:43 +01:00
changePage("HOME");
2021-04-15 13:01:58 +01:00
}).catch(e => {
document.getElementById("usernameInput").classList.add("uk-form-danger");
document.getElementById("passwordInput").classList.add("uk-form-danger");
setErrorText(e.message);
});
});
}
get name() {
return i18next.t("log_in_title");
2021-04-15 13:01:58 +01:00
}
}