160 lines
4 KiB
TypeScript
160 lines
4 KiB
TypeScript
import React, { useEffect, useRef, useState } from "react";
|
|
import { AuthState, useAuthStore } from "../../store/auth";
|
|
|
|
import "./settings.scss";
|
|
import { DynamicIcon } from "lucide-react/dynamic";
|
|
|
|
function Settings() {
|
|
const auth = useAuthStore();
|
|
const [load, setLoad] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (auth.token === null) {
|
|
document.location.href = "/";
|
|
return;
|
|
}
|
|
|
|
auth.checkToken(auth.token).then((ok) => {
|
|
if (!ok) {
|
|
document.location.href = "/";
|
|
return;
|
|
}
|
|
|
|
setLoad(true);
|
|
});
|
|
}, [auth, load]);
|
|
|
|
if (!load) {
|
|
return (
|
|
<></>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="ka-settings">
|
|
<h2 className="ka-title">General</h2>
|
|
|
|
<AccountSetting auth={auth} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function SettingBox({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="setting-box">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function AccountSetting({ auth }: { auth: AuthState }) {
|
|
const orRef = useRef<HTMLInputElement>(null);
|
|
const pwRef = useRef<HTMLInputElement>(null);
|
|
const ckRef = useRef<HTMLInputElement>(null);
|
|
|
|
return (
|
|
<SettingBox>
|
|
<h4>Account Setting</h4>
|
|
<span>You can modify your account. This is a sensitive option. Please reconsider if you want to change your account information.</span>
|
|
<hr className="line" />
|
|
<div className="box-row">
|
|
<div className="box-col">
|
|
<h6>Change Password</h6>
|
|
<span>If you change your password, you will need to log in again.</span>
|
|
</div>
|
|
|
|
<form className="box-col" id="pw-change">
|
|
<PasswordInput placeholder="Password" ref={orRef} />
|
|
<PasswordInput placeholder="New Password" ref={pwRef} />
|
|
<PasswordInput placeholder="Check Password" ref={ckRef} />
|
|
|
|
<button type="submit" className="danger" onClick={ev => {
|
|
ev.preventDefault();
|
|
const origin = orRef.current?.value;
|
|
const password = pwRef.current?.value;
|
|
const check = ckRef.current?.value;
|
|
|
|
if (!origin || !password || !check) {
|
|
return;
|
|
}
|
|
|
|
if (origin === "" || password === "" || check === "") {
|
|
alert("You must need to write all inputs");
|
|
return;
|
|
}
|
|
|
|
if (password !== check) {
|
|
alert("New password is not matches!");
|
|
return;
|
|
}
|
|
|
|
const form = new URLSearchParams();
|
|
form.append("password", origin);
|
|
form.append("new_password", password);
|
|
|
|
fetch("/api/auth/update", {
|
|
body: form,
|
|
method: "PATCH",
|
|
headers: {
|
|
"Authorization": `Basic ${auth.token}`
|
|
}
|
|
}).then((res) => {
|
|
if (res.status !== 200) {
|
|
alert(`${res.status} ${res.statusText}`);
|
|
return;
|
|
}
|
|
|
|
alert("password changed!");
|
|
document.location.href = "/logout";
|
|
});
|
|
}}>Change Password</button>
|
|
</form>
|
|
</div>
|
|
<div className="box-row">
|
|
<div className="box-col">
|
|
<h6>Delete Account</h6>
|
|
<span>You can delete account. This action is irreversible. Please proceed with caution.</span>
|
|
</div>
|
|
|
|
<form className="box-col">
|
|
<button type="submit" className="danger" onClick={ev => {
|
|
ev.preventDefault();
|
|
|
|
fetch("/api/auth/delete", {
|
|
method: "DELETE",
|
|
headers: {
|
|
"Authorization": `Basic ${auth.token}`
|
|
}
|
|
}).then((res) => {
|
|
if (res.status !== 200) {
|
|
alert(`${res.status} ${res.statusText}`);
|
|
return;
|
|
}
|
|
|
|
alert("Your account has been deactivated and removed");
|
|
document.location.href = "/logout";
|
|
});
|
|
}}>Remove Account</button>
|
|
</form>
|
|
</div>
|
|
</SettingBox>
|
|
);
|
|
}
|
|
|
|
function PasswordInput({ placeholder, ref }: { placeholder: string; ref: React.RefObject<HTMLInputElement | null> }) {
|
|
const [show, setShow] = useState(false);
|
|
|
|
return (
|
|
<div className="input-pass">
|
|
<input type={!show ? "password" : "text"} ref={ref} placeholder={placeholder} required />
|
|
<a className="pw-btn" onClick={ev => {
|
|
ev.preventDefault();
|
|
setShow(!show);
|
|
}}>
|
|
<DynamicIcon name={show ? "eye-off" : "eye"} size={17} />
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Settings;
|