mirror of
https://github.com/lemeow125/React-NotesApp.git
synced 2024-11-17 06:29:28 +08:00
Polished and added more apis
This commit is contained in:
parent
66c934c34f
commit
0daa8cfa72
5 changed files with 75 additions and 33 deletions
|
@ -32,9 +32,9 @@ export function UserLogin(user: user) {
|
|||
return axios
|
||||
.post("http://localhost:8000/api/v1/accounts/token/login/", user)
|
||||
.then(async (response) => {
|
||||
console.log(response.data);
|
||||
localStorage.setItem("token", response.data);
|
||||
console.log(await UserInfo());
|
||||
localStorage.setItem("token", JSON.stringify(response.data.auth_token));
|
||||
console.log("Stored: ", JSON.parse(localStorage.getItem("token") || ""));
|
||||
StoreUser();
|
||||
return true;
|
||||
})
|
||||
.catch((error) => {
|
||||
|
@ -43,12 +43,46 @@ export function UserLogin(user: user) {
|
|||
});
|
||||
}
|
||||
|
||||
export function UserInfo() {
|
||||
const token = localStorage.getItem("token");
|
||||
export function StoreUser() {
|
||||
const token = JSON.parse(localStorage.getItem("token") || "");
|
||||
return axios
|
||||
.get("http://localhost:8000/api/v1/accounts/users/me/", {
|
||||
headers: {
|
||||
Authorization: "Token 8b3a393fc7601a5a1f2a831bc795905c05420782",
|
||||
Authorization: "Token " + token,
|
||||
},
|
||||
})
|
||||
.then((response) => {
|
||||
localStorage.setItem("user", JSON.stringify(response.data));
|
||||
})
|
||||
.catch((error) => {
|
||||
console.log("Error in storing user data");
|
||||
console.log(error);
|
||||
});
|
||||
}
|
||||
|
||||
export function UserInfo() {
|
||||
const token = JSON.parse(localStorage.getItem("token") || "");
|
||||
return axios
|
||||
.get("http://localhost:8000/api/v1/accounts/users/me/", {
|
||||
headers: {
|
||||
Authorization: "Token " + token,
|
||||
},
|
||||
})
|
||||
.then((response) => {
|
||||
return response.data;
|
||||
})
|
||||
.catch((error) => {
|
||||
console.log("Error in fetching user data");
|
||||
console.log(error);
|
||||
});
|
||||
}
|
||||
|
||||
export function GetUsername() {
|
||||
const token = JSON.parse(localStorage.getItem("token") || "");
|
||||
return axios
|
||||
.get("http://localhost:8000/api/v1/accounts/users/me/", {
|
||||
headers: {
|
||||
Authorization: "Token " + token,
|
||||
},
|
||||
})
|
||||
.then((response) => {
|
||||
|
|
|
@ -15,10 +15,10 @@ export default function Header() {
|
|||
...{ flex: 2 },
|
||||
}}
|
||||
>
|
||||
<HomeIcon size="5vh" color="white" />
|
||||
<HomeIcon size="5vh" color="white" />
|
||||
<HomeIcon size="5vh" color="white" />
|
||||
<HomeIcon size="5vh" color="white" />
|
||||
<HomeIcon size={32} color="white" />
|
||||
<HomeIcon size={32} color="white" />
|
||||
<HomeIcon size={32} color="white" />
|
||||
<HomeIcon size={32} color="white" />
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
|
|
|
@ -3,7 +3,7 @@ import * as React from "react";
|
|||
import { useNavigate } from "react-router-dom";
|
||||
|
||||
export interface props {
|
||||
size: string;
|
||||
size: number;
|
||||
color: string;
|
||||
}
|
||||
|
||||
|
@ -15,17 +15,18 @@ export default function HomeIcon(props: props) {
|
|||
style={{
|
||||
backgroundColor: "#005997",
|
||||
borderRadius: 16,
|
||||
width: props.size,
|
||||
height: props.size,
|
||||
width: props.size || 32,
|
||||
height: props.size || 32,
|
||||
margin: 4,
|
||||
alignContent: "center",
|
||||
alignItems: "center",
|
||||
}}
|
||||
onClick={() => navigate("/")}
|
||||
>
|
||||
<div style={{ justifyContent: "center", alignContent: "center" }}>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="100%"
|
||||
height="100%"
|
||||
width={props.size - 4}
|
||||
height={props.size - 4}
|
||||
viewBox="0 0 24 24"
|
||||
stroke-width="2"
|
||||
stroke={props.color}
|
||||
|
@ -38,7 +39,6 @@ export default function HomeIcon(props: props) {
|
|||
<path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"></path>
|
||||
<path d="M10 12h4v4h-4z"></path>
|
||||
</svg>
|
||||
</div>
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -3,9 +3,13 @@ import { useState } from "react";
|
|||
import { Button } from "@mui/material";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import styles from "../../styles";
|
||||
import { GetUsername, UserInfo } from "../Api/Api";
|
||||
|
||||
export default function LoginButton() {
|
||||
const [logged_in, setLoggedIn] = useState(false);
|
||||
const [user, setUser] = useState(
|
||||
JSON.parse(localStorage.getItem("user") || "").username
|
||||
);
|
||||
const navigate = useNavigate();
|
||||
if (!logged_in) {
|
||||
return (
|
||||
|
@ -26,7 +30,7 @@ export default function LoginButton() {
|
|||
}
|
||||
return (
|
||||
<div style={styles.flex_row}>
|
||||
<p style={styles.text_small}>Logged in as</p>
|
||||
<p style={styles.text_small}>Logged in as {user}</p>
|
||||
<div style={{ margin: 4 }} />
|
||||
<Button
|
||||
style={styles.button_red}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import * as React from "react";
|
||||
import styles from "../../styles";
|
||||
|
||||
import { useLocation, useNavigate } from "react-router-dom";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import Header from "../../Components/Header/Header";
|
||||
import { useState } from "react";
|
||||
import { Button } from "@mui/material";
|
||||
|
@ -48,6 +48,10 @@ export default function Login() {
|
|||
variant="contained"
|
||||
onClick={async () => {
|
||||
if (await UserLogin(user)) {
|
||||
setUser({
|
||||
username: "",
|
||||
password: "",
|
||||
});
|
||||
navigate("/");
|
||||
} else {
|
||||
setError("Invalid Login");
|
||||
|
|
Loading…
Reference in a new issue