mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-02 02:29:59 +00:00
c77086a9d5
* feat: Use Bootstrap 5; remove Bootstrap 4 * feat: Add link decoration override global var * fix: Change sr-only to visually-hidden * fix: Fix missing toggle button classes * fix: Use darker green to pass 3:1 contrast and allow foreground color generation * fix: Replace all mr- and ml- classes with me- (end) and ms- (start) classes * fix: Replace all pr- and pl- classes with pe- (end) and ps- (start) classes * fix: Replace custom-select with form-select d-inline-block * fix: Change max-width to Bootstrap 4's max-width * fix: Fix badge colors * fix: Replace deprecated btn-block class with d-block * fix: Temporary fix for missing btn-block styles * fix: Fix margin-left auto and margin-right auto * fix: Fix default border color * fix: Fix some button widths * fix: Fix form row margins * fix: Remove theme color maps; no longer necessary in Bootstrap 5 * fix: Remove unused gray * test commit * fix: Fix deprecated input-group-append usage * fix: Add missing col-form-label classes * fix: Fix some column widths * fix: Fix language dropdown style regression * fix: Fix toast background color * fix: Fix missing colors in red themes * fix: Fix default radio button appearance for toggles * fix: Fix missing margin in search form * fix: Fix search form widths * fix: Fix rate limit form columns * fix: Fix search filters layout * fix: Fix weird table background issue; re-compile from main updates * fix: Fix modlog filter layout * fix: Fix some horizontal margins * fix: Fix incorrect usage of input-group * chore: Empty commit to re-trigger Woodpecker job * fix: Fix incorrect Bootstrap 5 padding class * fix: Tighten up the home filter bars for the hell of it * fix: Fix home filter bar gap --------- Co-authored-by: SleeplessOne1917 <abias1122@gmail.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
224 lines
6.6 KiB
TypeScript
224 lines
6.6 KiB
TypeScript
import { Component, linkEvent } from "inferno";
|
|
import { GetSiteResponse, LoginResponse } from "lemmy-js-client";
|
|
import { i18n } from "../../i18next";
|
|
import { UserService } from "../../services";
|
|
import { HttpService, RequestState } from "../../services/HttpService";
|
|
import { isBrowser, myAuth, setIsoData, toast, validEmail } from "../../utils";
|
|
import { HtmlTags } from "../common/html-tags";
|
|
import { Spinner } from "../common/icon";
|
|
|
|
interface State {
|
|
loginRes: RequestState<LoginResponse>;
|
|
form: {
|
|
username_or_email?: string;
|
|
password?: string;
|
|
totp_2fa_token?: string;
|
|
};
|
|
showTotp: boolean;
|
|
siteRes: GetSiteResponse;
|
|
}
|
|
|
|
export class Login extends Component<any, State> {
|
|
private isoData = setIsoData(this.context);
|
|
|
|
state: State = {
|
|
loginRes: { state: "empty" },
|
|
form: {},
|
|
showTotp: false,
|
|
siteRes: this.isoData.site_res,
|
|
};
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
}
|
|
|
|
componentDidMount() {
|
|
// Navigate to home if already logged in
|
|
if (UserService.Instance.myUserInfo) {
|
|
this.context.router.history.push("/");
|
|
}
|
|
}
|
|
|
|
get documentTitle(): string {
|
|
return `${i18n.t("login")} - ${this.state.siteRes.site_view.site.name}`;
|
|
}
|
|
|
|
get isLemmyMl(): boolean {
|
|
return isBrowser() && window.location.hostname == "lemmy.ml";
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="container-lg">
|
|
<HtmlTags
|
|
title={this.documentTitle}
|
|
path={this.context.router.route.match.url}
|
|
/>
|
|
<div className="row">
|
|
<div className="col-12 col-lg-6 offset-lg-3">{this.loginForm()}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
loginForm() {
|
|
return (
|
|
<div>
|
|
<form onSubmit={linkEvent(this, this.handleLoginSubmit)}>
|
|
<h5>{i18n.t("login")}</h5>
|
|
<div className="mb-3 row">
|
|
<label
|
|
className="col-sm-2 col-form-label"
|
|
htmlFor="login-email-or-username"
|
|
>
|
|
{i18n.t("email_or_username")}
|
|
</label>
|
|
<div className="col-sm-10">
|
|
<input
|
|
type="text"
|
|
className="form-control"
|
|
id="login-email-or-username"
|
|
value={this.state.form.username_or_email}
|
|
onInput={linkEvent(this, this.handleLoginUsernameChange)}
|
|
autoComplete="email"
|
|
required
|
|
minLength={3}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="mb-3 row">
|
|
<label className="col-sm-2 col-form-label" htmlFor="login-password">
|
|
{i18n.t("password")}
|
|
</label>
|
|
<div className="col-sm-10">
|
|
<input
|
|
type="password"
|
|
id="login-password"
|
|
value={this.state.form.password}
|
|
onInput={linkEvent(this, this.handleLoginPasswordChange)}
|
|
className="form-control"
|
|
autoComplete="current-password"
|
|
required
|
|
maxLength={60}
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={linkEvent(this, this.handlePasswordReset)}
|
|
className="btn p-0 btn-link d-inline-block float-right text-muted small font-weight-bold pointer-events not-allowed"
|
|
disabled={
|
|
!!this.state.form.username_or_email &&
|
|
!validEmail(this.state.form.username_or_email)
|
|
}
|
|
title={i18n.t("no_password_reset")}
|
|
>
|
|
{i18n.t("forgot_password")}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{this.state.showTotp && (
|
|
<div className="mb-3 row">
|
|
<label
|
|
className="col-sm-6 col-form-label"
|
|
htmlFor="login-totp-token"
|
|
>
|
|
{i18n.t("two_factor_token")}
|
|
</label>
|
|
<div className="col-sm-6">
|
|
<input
|
|
type="number"
|
|
inputMode="numeric"
|
|
className="form-control"
|
|
id="login-totp-token"
|
|
pattern="[0-9]*"
|
|
autoComplete="one-time-code"
|
|
value={this.state.form.totp_2fa_token}
|
|
onInput={linkEvent(this, this.handleLoginTotpChange)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div className="mb-3 row">
|
|
<div className="col-sm-10">
|
|
<button type="submit" className="btn btn-secondary">
|
|
{this.state.loginRes.state == "loading" ? (
|
|
<Spinner />
|
|
) : (
|
|
i18n.t("login")
|
|
)}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
async handleLoginSubmit(i: Login, event: any) {
|
|
event.preventDefault();
|
|
const { password, totp_2fa_token, username_or_email } = i.state.form;
|
|
|
|
if (username_or_email && password) {
|
|
i.setState({ loginRes: { state: "loading" } });
|
|
|
|
const loginRes = await HttpService.client.login({
|
|
username_or_email,
|
|
password,
|
|
totp_2fa_token,
|
|
});
|
|
switch (loginRes.state) {
|
|
case "failed": {
|
|
if (loginRes.msg === "missing_totp_token") {
|
|
i.setState({ showTotp: true });
|
|
toast(i18n.t("enter_two_factor_code"), "info");
|
|
}
|
|
|
|
i.setState({ loginRes: { state: "failed", msg: loginRes.msg } });
|
|
break;
|
|
}
|
|
|
|
case "success": {
|
|
UserService.Instance.login(loginRes.data);
|
|
const site = await HttpService.client.getSite({
|
|
auth: myAuth(),
|
|
});
|
|
|
|
if (site.state === "success") {
|
|
UserService.Instance.myUserInfo = site.data.my_user;
|
|
}
|
|
|
|
i.props.history.action === "PUSH"
|
|
? i.props.history.back()
|
|
: i.props.history.replace("/");
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
handleLoginUsernameChange(i: Login, event: any) {
|
|
i.state.form.username_or_email = event.target.value.trim();
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleLoginTotpChange(i: Login, event: any) {
|
|
i.state.form.totp_2fa_token = event.target.value;
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleLoginPasswordChange(i: Login, event: any) {
|
|
i.state.form.password = event.target.value;
|
|
i.setState(i.state);
|
|
}
|
|
|
|
async handlePasswordReset(i: Login, event: any) {
|
|
event.preventDefault();
|
|
const email = i.state.form.username_or_email;
|
|
if (email) {
|
|
const res = await HttpService.client.passwordReset({ email });
|
|
if (res.state == "success") {
|
|
toast(i18n.t("reset_password_mail_sent"));
|
|
}
|
|
}
|
|
}
|
|
}
|