mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2025-07-06 21:11:41 -07:00
fix: simplify code and check login status on home page load
This commit is contained in:
parent
036e5779ba
commit
ddb3f442f8
2 changed files with 78 additions and 61 deletions
|
@ -47,11 +47,15 @@ function Bar() {
|
||||||
// name: "Settings",
|
// name: "Settings",
|
||||||
// to: "/settings",
|
// to: "/settings",
|
||||||
// },
|
// },
|
||||||
!disabledAuth && {
|
...(!disabledAuth
|
||||||
|
? [
|
||||||
|
{
|
||||||
name: "Log out",
|
name: "Log out",
|
||||||
divide: true,
|
divide: true,
|
||||||
onClick: onLogOutClick,
|
onClick: onLogOutClick,
|
||||||
},
|
},
|
||||||
|
]
|
||||||
|
: []),
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -74,8 +78,7 @@ function Bar() {
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
{/* The filter removes all elements that are "true" or "false" */}
|
{/* The filter removes all elements that are "true" or "false" */}
|
||||||
{loggedIn &&
|
{loggedIn && menuItems.length > 0 && (
|
||||||
menuItems.filter((e) => typeof e !== "boolean").length > 0 && (
|
|
||||||
<>
|
<>
|
||||||
<Button color="inherit" onClick={openMenu}>
|
<Button color="inherit" onClick={openMenu}>
|
||||||
<MenuIcon></MenuIcon>
|
<MenuIcon></MenuIcon>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useHistory } from "react-router-dom";
|
import { useHistory } from "react-router-dom";
|
||||||
|
import { useLocalStorage } from "react-use";
|
||||||
|
import axios from "axios";
|
||||||
|
|
||||||
import { Divider, Button, Grid, Typography, Box } from "@material-ui/core";
|
import { Divider, Button, Grid, Typography, Box } from "@material-ui/core";
|
||||||
import useStyles from "./HomeLoggedIn.styles";
|
import useStyles from "./HomeLoggedIn.styles";
|
||||||
|
@ -11,10 +13,22 @@ import { generateNetworkConfig } from "utils/NetworkConfig";
|
||||||
|
|
||||||
function HomeLoggedIn() {
|
function HomeLoggedIn() {
|
||||||
const [networks, setNetworks] = useState([]);
|
const [networks, setNetworks] = useState([]);
|
||||||
|
const [, setLoggedIn] = useLocalStorage("loggedIn", false);
|
||||||
|
const [, setDisableAuth] = useLocalStorage("disableAuth", false);
|
||||||
|
const [token, setToken] = useLocalStorage("token", null);
|
||||||
|
|
||||||
const classes = useStyles();
|
const classes = useStyles();
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
|
||||||
|
axios.get("/auth/login").then(function (response) {
|
||||||
|
if (response.data.enabled) {
|
||||||
|
setDisableAuth(false);
|
||||||
|
if (!token || token.length === 0) {
|
||||||
|
setLoggedIn(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
const createNetwork = async () => {
|
const createNetwork = async () => {
|
||||||
const network = await API.post("network", generateNetworkConfig());
|
const network = await API.post("network", generateNetworkConfig());
|
||||||
console.log(network);
|
console.log(network);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue