Color
This commit is contained in:
parent
869a83b799
commit
c5ff15d6f4
|
@ -1,5 +1,5 @@
|
||||||
import React, { useContext, useState } from "react";
|
import React, { useContext, useState } from "react";
|
||||||
import { Alert, CircularProgress, Grid } from "@mui/material";
|
import { Alert, CircularProgress, Grid, useTheme } from "@mui/material";
|
||||||
import Container from "@mui/material/Container";
|
import Container from "@mui/material/Container";
|
||||||
import { axiosConfigWithoutToken } from "./config/axiosConfig";
|
import { axiosConfigWithoutToken } from "./config/axiosConfig";
|
||||||
import InnovenergyTextfield from "./components/Layout/InnovenergyTextfield";
|
import InnovenergyTextfield from "./components/Layout/InnovenergyTextfield";
|
||||||
|
@ -23,6 +23,7 @@ const Login = ({ setToken, setLanguage }: I_LoginProps) => {
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [error, setError] = useState();
|
const [error, setError] = useState();
|
||||||
const { saveCurrentUser } = useContext(UserContext);
|
const { saveCurrentUser } = useContext(UserContext);
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
const verifyToken = async (token: string) => {
|
const verifyToken = async (token: string) => {
|
||||||
axiosConfigWithoutToken.get("/GetAllInstallations", {
|
axiosConfigWithoutToken.get("/GetAllInstallations", {
|
||||||
|
@ -80,7 +81,7 @@ const Login = ({ setToken, setLanguage }: I_LoginProps) => {
|
||||||
Login
|
Login
|
||||||
</InnovenergyButton>
|
</InnovenergyButton>
|
||||||
</Grid>
|
</Grid>
|
||||||
{loading && <CircularProgress color="secondary" />}
|
{loading && <CircularProgress sx={{color: theme.palette.secondary.dark}} />}
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React, { useContext, useState } from "react";
|
import React, { useContext, useState } from "react";
|
||||||
import { Alert, CircularProgress, Grid, Typography } from "@mui/material";
|
import { Alert, CircularProgress, Grid, Typography, useTheme } from "@mui/material";
|
||||||
import Container from "@mui/material/Container";
|
import Container from "@mui/material/Container";
|
||||||
import axiosConfig from "./config/axiosConfig";
|
import axiosConfig from "./config/axiosConfig";
|
||||||
import InnovenergyTextfield from "./components/Layout/InnovenergyTextfield";
|
import InnovenergyTextfield from "./components/Layout/InnovenergyTextfield";
|
||||||
|
@ -20,6 +20,7 @@ const ResetPassword = () => {
|
||||||
.oneOf([Yup.ref("password")], "Passwords must match")
|
.oneOf([Yup.ref("password")], "Passwords must match")
|
||||||
.required(),
|
.required(),
|
||||||
});
|
});
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
const formik = useFormik({
|
const formik = useFormik({
|
||||||
initialValues: {
|
initialValues: {
|
||||||
|
@ -42,6 +43,7 @@ const ResetPassword = () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
<Container maxWidth="sm" sx={{ p: 2, alignContent: "center" }}>
|
<Container maxWidth="sm" sx={{ p: 2, alignContent: "center" }}>
|
||||||
<Typography variant="h6" marginBottom="20px" textAlign="center">
|
<Typography variant="h6" marginBottom="20px" textAlign="center">
|
||||||
Change password
|
Change password
|
||||||
|
@ -72,7 +74,7 @@ const ResetPassword = () => {
|
||||||
Submit
|
Submit
|
||||||
</InnovenergyButton>
|
</InnovenergyButton>
|
||||||
</Grid>
|
</Grid>
|
||||||
{loading && <CircularProgress color="secondary" />}
|
{loading && <CircularProgress sx={{color: theme.palette.secondary.dark}}/>}
|
||||||
</form>
|
</form>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
|
|
|
@ -6,6 +6,7 @@ import UsersWithDirectAccess from "./UsersWithDirectAccess";
|
||||||
import UsersWithInheritedAccess from "./UsersWithInheritedAccess";
|
import UsersWithInheritedAccess from "./UsersWithInheritedAccess";
|
||||||
import { useContext } from "react";
|
import { useContext } from "react";
|
||||||
import { UserContext } from "../../Context/UserContextProvider";
|
import { UserContext } from "../../Context/UserContextProvider";
|
||||||
|
import { colors } from "../../..";
|
||||||
|
|
||||||
const AccessManagement = () => {
|
const AccessManagement = () => {
|
||||||
const { getCurrentUser } = useContext(UserContext);
|
const { getCurrentUser } = useContext(UserContext);
|
||||||
|
@ -13,7 +14,7 @@ const AccessManagement = () => {
|
||||||
return (
|
return (
|
||||||
<UsersContextProvider>
|
<UsersContextProvider>
|
||||||
<Grid container sx={{ mt: 0 }}>
|
<Grid container sx={{ mt: 0 }}>
|
||||||
<Grid item xs={60} bgcolor={"#CCD6E4"}>
|
<Grid item xs={60} bgcolor={colors.greyDark}>
|
||||||
{getCurrentUser().hasWriteAccess && <AvailableUserDialog />}
|
{getCurrentUser().hasWriteAccess && <AvailableUserDialog />}
|
||||||
<InnovenergyList id="access-management-list">
|
<InnovenergyList id="access-management-list">
|
||||||
<UsersWithDirectAccess />
|
<UsersWithDirectAccess />
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Box, CircularProgress, Alert } from "@mui/material";
|
import { Box, CircularProgress, Alert, useTheme } from "@mui/material";
|
||||||
import { AxiosError } from "axios";
|
import { AxiosError } from "axios";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useParams } from "react-router-dom";
|
import { useParams } from "react-router-dom";
|
||||||
|
@ -7,6 +7,7 @@ import { I_Folder } from "../../util/types";
|
||||||
import AddNewDialog from "./AddNewDialog";
|
import AddNewDialog from "./AddNewDialog";
|
||||||
import FolderForm from "./FolderForm";
|
import FolderForm from "./FolderForm";
|
||||||
import MoveDialog from "./Tree/MoveDialog";
|
import MoveDialog from "./Tree/MoveDialog";
|
||||||
|
import { colors } from "/home/ig/code/git_trunk/typescript/Frontend/src/index";
|
||||||
|
|
||||||
const Folder = () => {
|
const Folder = () => {
|
||||||
const { id } = useParams();
|
const { id } = useParams();
|
||||||
|
@ -31,6 +32,7 @@ const Folder = () => {
|
||||||
const handleSubmit = (data: I_Folder, formikValues: Partial<I_Folder>) => {
|
const handleSubmit = (data: I_Folder, formikValues: Partial<I_Folder>) => {
|
||||||
return axiosConfig.put("/UpdateFolder", { ...data, ...formikValues });
|
return axiosConfig.put("/UpdateFolder", { ...data, ...formikValues });
|
||||||
};
|
};
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
if (values && values.id && values.id.toString() === id) {
|
if (values && values.id && values.id.toString() === id) {
|
||||||
const moveDialog = <MoveDialog values={values} />;
|
const moveDialog = <MoveDialog values={values} />;
|
||||||
|
@ -41,7 +43,7 @@ const Folder = () => {
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
py: 3,
|
py: 3,
|
||||||
bgcolor: "#CCD6E4",
|
bgcolor: colors.greyDark,
|
||||||
px: 1,
|
px: 1,
|
||||||
borderBottom: 1,
|
borderBottom: 1,
|
||||||
borderRight: 1,
|
borderRight: 1,
|
||||||
|
@ -51,7 +53,7 @@ const Folder = () => {
|
||||||
WebkitBorderTopRightRadius: 0,
|
WebkitBorderTopRightRadius: 0,
|
||||||
borderBottomLeftRadius: 4,
|
borderBottomLeftRadius: 4,
|
||||||
borderBottomRightRadius: 4,
|
borderBottomRightRadius: 4,
|
||||||
borderColor: "#90a7c5",
|
borderColor: colors.greyLight,
|
||||||
marginTop: 0.05,
|
marginTop: 0.05,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
@ -68,7 +70,7 @@ const Folder = () => {
|
||||||
<Box
|
<Box
|
||||||
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
||||||
>
|
>
|
||||||
<CircularProgress sx={{ m: 2 }} color="secondary" />
|
<CircularProgress sx={{ m: 2 ,color: theme.palette.secondary.dark}} />
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { CircularProgress, Grid } from "@mui/material";
|
import { CircularProgress, Grid, useTheme } from "@mui/material";
|
||||||
import { AxiosResponse } from "axios";
|
import { AxiosResponse } from "axios";
|
||||||
import { useFormik } from "formik";
|
import { useFormik } from "formik";
|
||||||
import { ReactNode, useContext, useState } from "react";
|
import { ReactNode, useContext, useState } from "react";
|
||||||
|
@ -52,6 +52,7 @@ const FolderForm = (props: I_CustomerFormProps) => {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -79,7 +80,7 @@ const FolderForm = (props: I_CustomerFormProps) => {
|
||||||
handleChange={formik.handleChange}
|
handleChange={formik.handleChange}
|
||||||
/>
|
/>
|
||||||
<Grid container justifyContent="flex-end" sx={{ pt: 1 }}>
|
<Grid container justifyContent="flex-end" sx={{ pt: 1 }}>
|
||||||
{loading && <CircularProgress color="secondary" />}
|
{loading && <CircularProgress sx={{color: theme.palette.secondary.dark}} />}
|
||||||
{!readOnly &&
|
{!readOnly &&
|
||||||
additionalButtons &&
|
additionalButtons &&
|
||||||
additionalButtons.map((button) => button)}
|
additionalButtons.map((button) => button)}
|
||||||
|
|
|
@ -10,6 +10,7 @@ import {
|
||||||
StyledTab,
|
StyledTab,
|
||||||
StyledTabBlue,
|
StyledTabBlue,
|
||||||
} from "../../util/installation.util";
|
} from "../../util/installation.util";
|
||||||
|
import { colors } from "../..";
|
||||||
|
|
||||||
const GroupTabs = () => {
|
const GroupTabs = () => {
|
||||||
const routeMatch = useRouteMatch([
|
const routeMatch = useRouteMatch([
|
||||||
|
@ -35,7 +36,6 @@ const GroupTabs = () => {
|
||||||
>
|
>
|
||||||
{currentType === "Folder" ? (
|
{currentType === "Folder" ? (
|
||||||
<StyledTabBlue
|
<StyledTabBlue
|
||||||
sx={{ bgcolor: "#90A7C5" }}
|
|
||||||
id="styled-tab-folder"
|
id="styled-tab-folder"
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "folder",
|
id: "folder",
|
||||||
|
@ -49,7 +49,6 @@ const GroupTabs = () => {
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<StyledTabBlue
|
<StyledTabBlue
|
||||||
sx={{ bgcolor: "#90A7C5" }}
|
|
||||||
id="styled-tab-installation"
|
id="styled-tab-installation"
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "installation",
|
id: "installation",
|
||||||
|
@ -67,7 +66,7 @@ const GroupTabs = () => {
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<StyledTabBlue
|
<StyledTabBlue
|
||||||
sx={{ bgcolor: "#90A7C5" }}
|
sx={{ bgcolor: colors.greyLight }}
|
||||||
id="styled-tab-manage-access"
|
id="styled-tab-manage-access"
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "manageAccess",
|
id: "manageAccess",
|
||||||
|
|
|
@ -8,8 +8,9 @@ import { Link } from "react-router-dom";
|
||||||
import routes from "../../../routes.json";
|
import routes from "../../../routes.json";
|
||||||
import { GroupContext } from "../../Context/GroupContextProvider";
|
import { GroupContext } from "../../Context/GroupContextProvider";
|
||||||
import { instanceOfFolder } from "../../../util/group.util";
|
import { instanceOfFolder } from "../../../util/group.util";
|
||||||
import { Grid, CircularProgress } from "@mui/material";
|
import { Grid, CircularProgress, useTheme } from "@mui/material";
|
||||||
import { useIntl } from "react-intl";
|
import { useIntl } from "react-intl";
|
||||||
|
import { colors } from "../../..";
|
||||||
|
|
||||||
const GroupTree = () => {
|
const GroupTree = () => {
|
||||||
const { setCurrentType, fetchData, data, loading } = useContext(GroupContext);
|
const { setCurrentType, fetchData, data, loading } = useContext(GroupContext);
|
||||||
|
@ -27,6 +28,7 @@ const GroupTree = () => {
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
const renderTree = (data: (I_Folder | I_Installation)[]): ReactNode => {
|
const renderTree = (data: (I_Folder | I_Installation)[]): ReactNode => {
|
||||||
return data.map((element) => {
|
return data.map((element) => {
|
||||||
|
@ -53,7 +55,7 @@ const GroupTree = () => {
|
||||||
onClick={() => setCurrentType(element.type)}
|
onClick={() => setCurrentType(element.type)}
|
||||||
sx={{
|
sx={{
|
||||||
".MuiTreeItem-content": { paddingY: "12px" },
|
".MuiTreeItem-content": { paddingY: "12px" },
|
||||||
bgcolor: "#CCD6E4",
|
bgcolor: colors.greyDark,
|
||||||
borderRadius: 2,
|
borderRadius: 2,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
@ -66,7 +68,7 @@ const GroupTree = () => {
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return (
|
return (
|
||||||
<Grid container justifyContent="center" width="100%">
|
<Grid container justifyContent="center" width="100%">
|
||||||
<CircularProgress color="secondary" />
|
<CircularProgress sx={{color: theme.palette.secondary.dark}} />
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import { Alert, Box, CircularProgress } from "@mui/material";
|
import { Alert, Box, CircularProgress, useTheme } from "@mui/material";
|
||||||
import { AxiosError } from "axios";
|
import { AxiosError } from "axios";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { useParams } from "react-router-dom";
|
import { useParams } from "react-router-dom";
|
||||||
import axiosConfig from "../../config/axiosConfig";
|
import axiosConfig from "../../config/axiosConfig";
|
||||||
import { I_Installation } from "../../util/types";
|
import { I_Installation } from "../../util/types";
|
||||||
import InstallationForm from "./InstallationForm";
|
import InstallationForm from "./InstallationForm";
|
||||||
|
import { colors } from "../..";
|
||||||
|
|
||||||
interface I_InstallationProps {
|
interface I_InstallationProps {
|
||||||
hasMoveButton?: boolean;
|
hasMoveButton?: boolean;
|
||||||
|
@ -14,6 +15,7 @@ const Installation = (props: I_InstallationProps) => {
|
||||||
const [values, setValues] = useState<I_Installation>();
|
const [values, setValues] = useState<I_Installation>();
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [error, setError] = useState<AxiosError>();
|
const [error, setError] = useState<AxiosError>();
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
|
@ -34,7 +36,7 @@ const Installation = (props: I_InstallationProps) => {
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
py: 3,
|
py: 3,
|
||||||
bgcolor: "#CCD6E4",
|
bgcolor: colors.greyDark,
|
||||||
px: 1,
|
px: 1,
|
||||||
borderLeft: 1,
|
borderLeft: 1,
|
||||||
borderRight: 1,
|
borderRight: 1,
|
||||||
|
@ -43,7 +45,7 @@ const Installation = (props: I_InstallationProps) => {
|
||||||
WebkitBorderTopRightRadius: 0,
|
WebkitBorderTopRightRadius: 0,
|
||||||
borderBottomLeftRadius: 4,
|
borderBottomLeftRadius: 4,
|
||||||
borderBottomRightRadius: 4,
|
borderBottomRightRadius: 4,
|
||||||
borderColor: "#90a7c5",
|
borderColor: colors.greyLight,
|
||||||
marginTop: 0.05,
|
marginTop: 0.05,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
@ -59,7 +61,7 @@ const Installation = (props: I_InstallationProps) => {
|
||||||
<Box
|
<Box
|
||||||
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
||||||
>
|
>
|
||||||
<CircularProgress sx={{ m: 2 }} color="secondary" />
|
<CircularProgress sx={{ m: 2 ,color: theme.palette.secondary.dark}}/>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
import List from "@mui/material/List";
|
import List from "@mui/material/List";
|
||||||
import ListItemButton from "@mui/material/ListItemButton";
|
import ListItemButton from "@mui/material/ListItemButton";
|
||||||
import ListItemText from "@mui/material/ListItemText";
|
import ListItemText from "@mui/material/ListItemText";
|
||||||
import { Alert, CircularProgress, Divider, Grid } from "@mui/material";
|
import { Alert, CircularProgress, Divider, Grid, useTheme } from "@mui/material";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import useRouteMatch from "../../hooks/useRouteMatch";
|
import useRouteMatch from "../../hooks/useRouteMatch";
|
||||||
import routes from "../../routes.json";
|
import routes from "../../routes.json";
|
||||||
import { Fragment, useContext, useEffect } from "react";
|
import { Fragment, useContext, useEffect } from "react";
|
||||||
import { I_Installation } from "../../util/types";
|
import { I_Installation } from "../../util/types";
|
||||||
import { InstallationContext } from "../Context/InstallationContextProvider";
|
import { InstallationContext } from "../Context/InstallationContextProvider";
|
||||||
|
import { colors } from "../..";
|
||||||
|
|
||||||
interface InstallationListProps {
|
interface InstallationListProps {
|
||||||
searchQuery: string;
|
searchQuery: string;
|
||||||
|
@ -44,8 +45,12 @@ const InstallationList = (props: InstallationListProps) => {
|
||||||
routes.installations + routes.list + routes.installation + ":id",
|
routes.installations + routes.list + routes.installation + ":id",
|
||||||
routes.installations + routes.list + routes.liveView + ":id",
|
routes.installations + routes.list + routes.liveView + ":id",
|
||||||
routes.installations + routes.list + routes.log + ":id",
|
routes.installations + routes.list + routes.log + ":id",
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetchData();
|
fetchData();
|
||||||
}, [fetchData]);
|
}, [fetchData]);
|
||||||
|
@ -53,7 +58,7 @@ const InstallationList = (props: InstallationListProps) => {
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return (
|
return (
|
||||||
<Grid container justifyContent="center" width="100%">
|
<Grid container justifyContent="center" width="100%">
|
||||||
<CircularProgress sx={{ m: 6 }} color="secondary" />
|
<CircularProgress sx={{ m: 6, color: theme.palette.secondary.dark }} />
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
} else if (data && data.length) {
|
} else if (data && data.length) {
|
||||||
|
@ -83,7 +88,7 @@ const InstallationList = (props: InstallationListProps) => {
|
||||||
to={
|
to={
|
||||||
getPathWithoutId(routeMatch?.pattern?.path) + installation.id
|
getPathWithoutId(routeMatch?.pattern?.path) + installation.id
|
||||||
}
|
}
|
||||||
style={{ textDecoration: "none", color: "#2b3e54" }}
|
style={{ textDecoration: "none", color: colors.black }}
|
||||||
>
|
>
|
||||||
<ListItemButton
|
<ListItemButton
|
||||||
id={"installation-list-button-" + installation.id}
|
id={"installation-list-button-" + installation.id}
|
||||||
|
@ -92,15 +97,15 @@ const InstallationList = (props: InstallationListProps) => {
|
||||||
sx={{
|
sx={{
|
||||||
mr: "1px",
|
mr: "1px",
|
||||||
borderStyle: "solid",
|
borderStyle: "solid",
|
||||||
backgroundColor: "#577ba840",
|
backgroundColor: theme.palette.primary.dark,
|
||||||
"&.Mui-selected": {
|
"&.Mui-selected": {
|
||||||
backgroundColor: "#90A7C5",
|
backgroundColor: colors.orangeSelected,
|
||||||
},
|
},
|
||||||
":hover": {
|
":hover": {
|
||||||
backgroundColor: "#AFC0D5",
|
backgroundColor: colors.orangeHover,
|
||||||
},
|
},
|
||||||
"&.Mui-selected:hover": {
|
"&.Mui-selected:hover": {
|
||||||
backgroundColor: "#90A7C5",
|
backgroundColor: colors.orangeSelected,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
|
@ -10,8 +10,8 @@ import {
|
||||||
StyledTabBlue,
|
StyledTabBlue,
|
||||||
StyledTabWhite,
|
StyledTabWhite,
|
||||||
} from "../../util/installation.util";
|
} from "../../util/installation.util";
|
||||||
import { colors } from "@mui/material";
|
|
||||||
import { Background } from "reactflow";
|
import { Background } from "reactflow";
|
||||||
|
import {colors} from '/home/ig/code/git_trunk/typescript/Frontend/src/index';
|
||||||
|
|
||||||
const InstallationTabs = () => {
|
const InstallationTabs = () => {
|
||||||
const routeMatch = useRouteMatch([
|
const routeMatch = useRouteMatch([
|
||||||
|
@ -35,7 +35,7 @@ const InstallationTabs = () => {
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<StyledTabBlue
|
<StyledTabBlue
|
||||||
sx={{ bgcolor: "#90A7C5" }}
|
sx={{ bgcolor: colors }}
|
||||||
id={"installation-tab-installation"}
|
id={"installation-tab-installation"}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "installation",
|
id: "installation",
|
||||||
|
@ -48,7 +48,7 @@ const InstallationTabs = () => {
|
||||||
to={routes.installation + id}
|
to={routes.installation + id}
|
||||||
/>
|
/>
|
||||||
<StyledTabWhite
|
<StyledTabWhite
|
||||||
sx={{ bgcolor: "#90A7C5" }}
|
sx={{ bgcolor: colors.greyLight}}
|
||||||
id={"installation-tab-liveView"}
|
id={"installation-tab-liveView"}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "liveView",
|
id: "liveView",
|
||||||
|
@ -61,7 +61,7 @@ const InstallationTabs = () => {
|
||||||
to={routes.liveView + id}
|
to={routes.liveView + id}
|
||||||
/>
|
/>
|
||||||
<StyledTab
|
<StyledTab
|
||||||
sx={{ bgcolor: "#90A7C5" }}
|
sx={{ bgcolor: colors.greyLight }}
|
||||||
id={"installation-tab-log"}
|
id={"installation-tab-log"}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
id: "log",
|
id: "log",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { TreeItem, TreeView } from "@mui/lab";
|
import { TreeItem, TreeView } from "@mui/lab";
|
||||||
import { Checkbox, Divider, colors } from "@mui/material";
|
import { Checkbox, Divider, useTheme } from "@mui/material";
|
||||||
import { useContext, ReactNode } from "react";
|
import { useContext, ReactNode } from "react";
|
||||||
import { LogContext } from "../../Context/LogContextProvider";
|
import { LogContext } from "../../Context/LogContextProvider";
|
||||||
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
||||||
|
@ -8,6 +8,7 @@ import useRouteMatch from "../../../hooks/useRouteMatch";
|
||||||
import routes from "../../../routes.json";
|
import routes from "../../../routes.json";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { blueGrey } from "@mui/material/colors";
|
import { blueGrey } from "@mui/material/colors";
|
||||||
|
import {colors} from "/home/ig/code/git_trunk/typescript/Frontend/src/index";
|
||||||
|
|
||||||
export interface ToggleElement {
|
export interface ToggleElement {
|
||||||
[key: string]: boolean;
|
[key: string]: boolean;
|
||||||
|
@ -49,7 +50,7 @@ const CheckboxTree = () => {
|
||||||
) => {
|
) => {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
};
|
};
|
||||||
|
const theme = useTheme();
|
||||||
const renderTree = (data: TreeElement[]): ReactNode => {
|
const renderTree = (data: TreeElement[]): ReactNode => {
|
||||||
return data.map((element) => {
|
return data.map((element) => {
|
||||||
const checked = checkedToggles.find((toggle) => element.id === toggle);
|
const checked = checkedToggles.find((toggle) => element.id === toggle);
|
||||||
|
@ -66,7 +67,10 @@ const CheckboxTree = () => {
|
||||||
<Checkbox
|
<Checkbox
|
||||||
checked={!!checked}
|
checked={!!checked}
|
||||||
onClick={(e) => handleClick(e, element, checked)}
|
onClick={(e) => handleClick(e, element, checked)}
|
||||||
color="info"
|
style ={{
|
||||||
|
color: theme.palette.text.primary ,
|
||||||
|
}}
|
||||||
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{splitName[splitName.length - 1]}
|
{splitName[splitName.length - 1]}
|
||||||
|
@ -74,7 +78,7 @@ const CheckboxTree = () => {
|
||||||
}
|
}
|
||||||
sx={{
|
sx={{
|
||||||
".MuiTreeItem-content": { paddingY: "5px" },
|
".MuiTreeItem-content": { paddingY: "5px" },
|
||||||
bgcolor: "#CCD6E4",
|
bgcolor: colors.greyDark,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{getNodes(element)}
|
{getNodes(element)}
|
||||||
|
|
|
@ -6,7 +6,8 @@ import { FormattedMessage } from "react-intl";
|
||||||
import ShortcutButton from "./ShortcutButton";
|
import ShortcutButton from "./ShortcutButton";
|
||||||
import { createTimes } from "../../../util/graph.util";
|
import { createTimes } from "../../../util/graph.util";
|
||||||
import { TimeRange, UnixTime } from "../../../dataCache/time";
|
import { TimeRange, UnixTime } from "../../../dataCache/time";
|
||||||
import { TextField } from "@mui/material";
|
import { TextField, useTheme } from "@mui/material";
|
||||||
|
import { colors } from "../../..";
|
||||||
|
|
||||||
interface DateRangePickerProps {
|
interface DateRangePickerProps {
|
||||||
setRange: (value: Date[]) => void;
|
setRange: (value: Date[]) => void;
|
||||||
|
@ -14,6 +15,7 @@ interface DateRangePickerProps {
|
||||||
getCacheSeries: (xaxisRange0: Date, xaxisRange1: Date) => void;
|
getCacheSeries: (xaxisRange0: Date, xaxisRange1: Date) => void;
|
||||||
}
|
}
|
||||||
const DateRangePicker = (props: DateRangePickerProps) => {
|
const DateRangePicker = (props: DateRangePickerProps) => {
|
||||||
|
const theme = useTheme();
|
||||||
const { setRange, range, getCacheSeries } = props;
|
const { setRange, range, getCacheSeries } = props;
|
||||||
|
|
||||||
const handleChange = (fromDate: Date, toDate: Date) => {
|
const handleChange = (fromDate: Date, toDate: Date) => {
|
||||||
|
@ -41,14 +43,14 @@ const DateRangePicker = (props: DateRangePickerProps) => {
|
||||||
value={dayjs(range[0])}
|
value={dayjs(range[0])}
|
||||||
sx={{
|
sx={{
|
||||||
".MuiInputLabel-root": {
|
".MuiInputLabel-root": {
|
||||||
color: "#2b3e54",
|
color: colors.black,
|
||||||
},
|
},
|
||||||
|
|
||||||
".Mui-disabled": {
|
".Mui-disabled": {
|
||||||
color: "red",
|
color: "red",
|
||||||
},
|
},
|
||||||
".Mui-focused fieldset.MuiOutlinedInput-notchedOutline": {
|
".Mui-focused fieldset.MuiOutlinedInput-notchedOutline": {
|
||||||
borderColor: "#2b3e54",
|
borderColor: theme.palette.secondary.main,
|
||||||
},
|
},
|
||||||
marginRight: 5,
|
marginRight: 5,
|
||||||
}}
|
}}
|
||||||
|
@ -65,15 +67,14 @@ const DateRangePicker = (props: DateRangePickerProps) => {
|
||||||
value={dayjs(range[1])}
|
value={dayjs(range[1])}
|
||||||
sx={{
|
sx={{
|
||||||
".MuiInputLabel-root": {
|
".MuiInputLabel-root": {
|
||||||
color: "#2b3e54",
|
color: colors.black,
|
||||||
},
|
},
|
||||||
|
|
||||||
".Mui-disabled": {
|
".Mui-disabled": {
|
||||||
color: "red",
|
color: "red",
|
||||||
},
|
},
|
||||||
".Mui-focused fieldset.MuiOutlinedInput-notchedOutline": {
|
".Mui-focused fieldset.MuiOutlinedInput-notchedOutline": {
|
||||||
borderColor: "#2b3e54",
|
borderColor: theme.palette.secondary.main, },
|
||||||
},
|
|
||||||
}}
|
}}
|
||||||
onChange={(newValue) => {
|
onChange={(newValue) => {
|
||||||
if (newValue) {
|
if (newValue) {
|
||||||
|
|
|
@ -21,7 +21,7 @@ import { AdapterDayjs } from "@mui/x-date-pickers/AdapterDayjs";
|
||||||
import { FormattedMessage } from "react-intl";
|
import { FormattedMessage } from "react-intl";
|
||||||
import DateRangePicker from "./DateRangePicker";
|
import DateRangePicker from "./DateRangePicker";
|
||||||
import { LocalizationProvider } from "@mui/x-date-pickers";
|
import { LocalizationProvider } from "@mui/x-date-pickers";
|
||||||
import { Alert } from "@mui/material";
|
import { Alert, useTheme } from "@mui/material";
|
||||||
|
|
||||||
const NUMBER_OF_NODES = 100;
|
const NUMBER_OF_NODES = 100;
|
||||||
|
|
||||||
|
@ -167,6 +167,8 @@ const ScalarGraph = () => {
|
||||||
[getCacheSeries]
|
[getCacheSeries]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
const theme = useTheme();
|
||||||
const renderGraphs = () => {
|
const renderGraphs = () => {
|
||||||
if (checkedToggles.length > 0) {
|
if (checkedToggles.length > 0) {
|
||||||
const coordinateTimeSeries = transformToGraphData(timeSeries);
|
const coordinateTimeSeries = transformToGraphData(timeSeries);
|
||||||
|
@ -243,7 +245,7 @@ const ScalarGraph = () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Alert sx={{ mt: 2 }} severity="info">
|
<Alert sx={{ mt: 2, bgcolor: theme.palette.primary.dark, color: theme.palette.text.primary}}>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id="makeASelection"
|
id="makeASelection"
|
||||||
defaultMessage="Please make a selection on the left"
|
defaultMessage="Please make a selection on the left"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Alert, Box } from "@mui/material";
|
import { Alert, Box, useTheme } from "@mui/material";
|
||||||
import TopologyColumn from "./TopologyColumn";
|
import TopologyColumn from "./TopologyColumn";
|
||||||
import { TimeSpan, UnixTime } from "../../../dataCache/time";
|
import { TimeSpan, UnixTime } from "../../../dataCache/time";
|
||||||
import {
|
import {
|
||||||
|
@ -11,6 +11,8 @@ import { fetchData } from "./ScalarGraph";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { FetchResult } from "../../../dataCache/dataCache";
|
import { FetchResult } from "../../../dataCache/dataCache";
|
||||||
import { FormattedMessage } from "react-intl";
|
import { FormattedMessage } from "react-intl";
|
||||||
|
import { colors } from "../../..";
|
||||||
|
import { error } from "console";
|
||||||
|
|
||||||
const TopologyView = () => {
|
const TopologyView = () => {
|
||||||
const [values, setValues] = useState<TopologyValues | null>(null);
|
const [values, setValues] = useState<TopologyValues | null>(null);
|
||||||
|
@ -37,6 +39,7 @@ const TopologyView = () => {
|
||||||
|
|
||||||
return () => clearInterval(interval);
|
return () => clearInterval(interval);
|
||||||
}, []);
|
}, []);
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
if (values) {
|
if (values) {
|
||||||
const highestConnectionValue = getHighestConnectionValue(values);
|
const highestConnectionValue = getHighestConnectionValue(values);
|
||||||
|
@ -54,7 +57,7 @@ const TopologyView = () => {
|
||||||
WebkitBorderTopRightRadius: 0,
|
WebkitBorderTopRightRadius: 0,
|
||||||
borderBottomLeftRadius: 4,
|
borderBottomLeftRadius: 4,
|
||||||
borderBottomRightRadius: 4,
|
borderBottomRightRadius: 4,
|
||||||
borderColor: "#CCD6E4",
|
borderColor: colors.greyDark,
|
||||||
borderTopColor: "white",
|
borderTopColor: "white",
|
||||||
marginTop: 0.05,
|
marginTop: 0.05,
|
||||||
fontFamily: `"Ubuntu", sans-serif`,
|
fontFamily: `"Ubuntu", sans-serif`,
|
||||||
|
@ -222,7 +225,7 @@ const TopologyView = () => {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Alert severity="info" sx={{ mt: 1 }}>
|
<Alert sx={{ mt: 1, bgcolor: theme.palette.primary.dark, color: theme.palette.text.primary }} severity="error" color="warning">
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id="noData"
|
id="noData"
|
||||||
defaultMessage="Couldn't find any live data"
|
defaultMessage="Couldn't find any live data"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Box, CircularProgress, Alert } from "@mui/material";
|
import { Box, CircularProgress, Alert, useTheme } from "@mui/material";
|
||||||
import { AxiosError } from "axios";
|
import { AxiosError } from "axios";
|
||||||
import { useState, useEffect, FC } from "react";
|
import { useState, useEffect, FC } from "react";
|
||||||
import { useParams } from "react-router-dom";
|
import { useParams } from "react-router-dom";
|
||||||
|
@ -33,6 +33,7 @@ const Detail = <T extends { id: number }>(props: I_DetailProps<T>) => {
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
});
|
});
|
||||||
}, [id, route]);
|
}, [id, route]);
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
if (values && values.id && values.id.toString() === id) {
|
if (values && values.id && values.id.toString() === id) {
|
||||||
return (
|
return (
|
||||||
|
@ -43,7 +44,7 @@ const Detail = <T extends { id: number }>(props: I_DetailProps<T>) => {
|
||||||
<Box
|
<Box
|
||||||
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
||||||
>
|
>
|
||||||
<CircularProgress sx={{ m: 2 }} color="secondary" />
|
<CircularProgress sx={{ m: 2, color: theme.palette.secondary.dark }} />
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Button, SxProps, Theme, colors } from "@mui/material";
|
import { Button, SxProps, Theme, colors, useTheme } from "@mui/material";
|
||||||
import { DAY_MARGIN } from "@mui/x-date-pickers/internals";
|
import { DAY_MARGIN } from "@mui/x-date-pickers/internals";
|
||||||
import { ReactNode } from "react";
|
import { ReactNode } from "react";
|
||||||
import { Background } from "reactflow";
|
import { Background } from "reactflow";
|
||||||
|
@ -12,18 +12,20 @@ interface I_InnovenergyButtonProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
const InnovenergyButton = (props: I_InnovenergyButtonProps) => {
|
const InnovenergyButton = (props: I_InnovenergyButtonProps) => {
|
||||||
|
const theme = useTheme();
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
color="secondary"
|
|
||||||
id={props.id}
|
id={props.id}
|
||||||
variant="contained"
|
variant="contained"
|
||||||
type={props.type}
|
type={props.type}
|
||||||
onClick={props.onClick}
|
onClick={props.onClick}
|
||||||
sx={props.sx}
|
sx={{...props.sx, bgcolor: theme.palette.secondary.main}}
|
||||||
>
|
>
|
||||||
{props.children}
|
{props.children}
|
||||||
</Button>
|
</Button>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export default InnovenergyButton;
|
export default InnovenergyButton;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Grid, InputLabel, TextField } from "@mui/material";
|
import { Grid, InputLabel, TextField, useTheme } from "@mui/material";
|
||||||
|
|
||||||
interface I_InnovenergyTextfieldProps {
|
interface I_InnovenergyTextfieldProps {
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -14,6 +14,7 @@ interface I_InnovenergyTextfieldProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
const InnovenergyTextfield = (props: I_InnovenergyTextfieldProps) => {
|
const InnovenergyTextfield = (props: I_InnovenergyTextfieldProps) => {
|
||||||
|
const theme = useTheme();
|
||||||
return (
|
return (
|
||||||
<Grid container direction="row" alignItems="center" spacing={2}>
|
<Grid container direction="row" alignItems="center" spacing={2}>
|
||||||
<Grid item xs={3}>
|
<Grid item xs={3}>
|
||||||
|
@ -21,7 +22,7 @@ const InnovenergyTextfield = (props: I_InnovenergyTextfieldProps) => {
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={9}>
|
<Grid item xs={9}>
|
||||||
<TextField
|
<TextField
|
||||||
color="info"
|
color="secondary"
|
||||||
id={props.id}
|
id={props.id}
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
name={props.name}
|
name={props.name}
|
||||||
|
|
|
@ -8,7 +8,7 @@ interface LanguageSelectProps {
|
||||||
const LanguageSelect = (props: LanguageSelectProps) => {
|
const LanguageSelect = (props: LanguageSelectProps) => {
|
||||||
return (
|
return (
|
||||||
<Select
|
<Select
|
||||||
color="info"
|
color="secondary"
|
||||||
id="language-select"
|
id="language-select"
|
||||||
value={props.language}
|
value={props.language}
|
||||||
label="Age"
|
label="Age"
|
||||||
|
|
|
@ -2,6 +2,7 @@ import { FormattedMessage } from "react-intl";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import axiosConfig from "../../config/axiosConfig";
|
import axiosConfig from "../../config/axiosConfig";
|
||||||
import InnovenergyButton from "./InnovenergyButton";
|
import InnovenergyButton from "./InnovenergyButton";
|
||||||
|
import {colors} from "/home/ig/code/git_trunk/typescript/Frontend/src/index"
|
||||||
|
|
||||||
interface LogoutButtonProps {
|
interface LogoutButtonProps {
|
||||||
removeToken: () => void;
|
removeToken: () => void;
|
||||||
|
@ -18,7 +19,7 @@ const LogoutButton = (props: LogoutButtonProps) => {
|
||||||
props.removeToken();
|
props.removeToken();
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
sx={{ mx: 1 }}
|
sx={{ mx: 1, bgcolor: colors.orangeSelected }}
|
||||||
>
|
>
|
||||||
<FormattedMessage id="logout" defaultMessage="Logout" />
|
<FormattedMessage id="logout" defaultMessage="Logout" />
|
||||||
</InnovenergyButton>
|
</InnovenergyButton>
|
||||||
|
|
|
@ -3,12 +3,14 @@ import useRouteMatch from "../../hooks/useRouteMatch";
|
||||||
import routes from "../../routes.json";
|
import routes from "../../routes.json";
|
||||||
import ListIcon from "@mui/icons-material/List";
|
import ListIcon from "@mui/icons-material/List";
|
||||||
import AccountTreeIcon from "@mui/icons-material/AccountTree";
|
import AccountTreeIcon from "@mui/icons-material/AccountTree";
|
||||||
import { ToggleButtonGroup, ToggleButton } from "@mui/material";
|
import { ToggleButtonGroup, ToggleButton, useTheme } from "@mui/material";
|
||||||
|
|
||||||
const ModeButtons = () => {
|
const ModeButtons = () => {
|
||||||
|
const theme = useTheme();
|
||||||
const routeMatch = useRouteMatch([
|
const routeMatch = useRouteMatch([
|
||||||
routes.installations + routes.tree + "*",
|
routes.installations + routes.tree + "*",
|
||||||
routes.installations + routes.list + "*",
|
routes.installations + routes.list + "*",
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -35,20 +37,21 @@ const ModeButtons = () => {
|
||||||
color="primary"
|
color="primary"
|
||||||
value={routeMatch?.pattern?.path}
|
value={routeMatch?.pattern?.path}
|
||||||
exclusive
|
exclusive
|
||||||
sx={{ mb: 1 }}
|
sx={{ mb: 1, bgcolor: theme.palette.primary.main,}}
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
<ToggleButton
|
<ToggleButton
|
||||||
color="info"
|
color="secondary"
|
||||||
id="mode-toggle-button-list"
|
id="mode-toggle-button-list"
|
||||||
value={routes.installations + routes.list + "*"}
|
value={routes.installations + routes.list + "*"}
|
||||||
component={Link}
|
component={Link}
|
||||||
to={routes.list}
|
to={routes.list}
|
||||||
|
|
||||||
>
|
>
|
||||||
<ListIcon id="mode-toggle-button-list-icon" />
|
<ListIcon id="mode-toggle-button-list-icon" />
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton
|
<ToggleButton
|
||||||
color="info"
|
color="secondary"
|
||||||
id="mode-toggle-button-tree"
|
id="mode-toggle-button-tree"
|
||||||
value={routes.installations + routes.tree + "*"}
|
value={routes.installations + routes.tree + "*"}
|
||||||
component={Link}
|
component={Link}
|
||||||
|
|
|
@ -5,6 +5,7 @@ import {
|
||||||
alpha,
|
alpha,
|
||||||
colors,
|
colors,
|
||||||
styled,
|
styled,
|
||||||
|
useTheme,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { FC, useState } from "react";
|
import { FC, useState } from "react";
|
||||||
import { useIntl } from "react-intl";
|
import { useIntl } from "react-intl";
|
||||||
|
@ -14,37 +15,46 @@ interface SearchSidebarProps {
|
||||||
id: string;
|
id: string;
|
||||||
height?: string;
|
height?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const SearchInputTextfield = styled((props: TextFieldProps) => (
|
const SearchInputTextfield = styled((props: TextFieldProps) => (
|
||||||
<TextField
|
<TextField
|
||||||
InputProps={{ disableUnderline: true } as Partial<OutlinedInputProps>}
|
InputProps={{ disableUnderline: true } as Partial<OutlinedInputProps>}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
))(({ theme }) => ({
|
))(({ theme }) => ({
|
||||||
"& .MuiFilledInput-root": {
|
"& .MuiFilledInput-root": {
|
||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
backgroundColor: "#577ba840",
|
backgroundColor: theme.palette.primary.dark,
|
||||||
border: "1px solid",
|
border: "2px solid",
|
||||||
borderColor: "#577ba840",
|
borderColor: theme.palette.primary.dark,
|
||||||
|
|
||||||
transition: theme.transitions.create([
|
transition: theme.transitions.create([
|
||||||
"border-color",
|
"border-color",
|
||||||
"background-color",
|
"background-color",
|
||||||
"box-shadow",
|
"box-shadow",
|
||||||
]),
|
]),
|
||||||
|
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
backgroundColor: "#577ba840",
|
backgroundColor: theme.palette.primary.dark,
|
||||||
},
|
},
|
||||||
"&.Mui-focused": {
|
"&.Mui-focused": {
|
||||||
backgroundColor: "#AFCOD5",
|
|
||||||
borderColor: "#577ba840",
|
backgroundColor: theme.palette.primary.dark,
|
||||||
color: "info",
|
borderColor: theme.palette.secondary.main,
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const SearchSidebar = (props: SearchSidebarProps) => {
|
const SearchSidebar = (props: SearchSidebarProps) => {
|
||||||
const { listComponent: ListComponent, id, height } = props;
|
const { listComponent: ListComponent, id, height } = props;
|
||||||
const [searchQuery, setSearchQuery] = useState("");
|
const [searchQuery, setSearchQuery] = useState("");
|
||||||
const intl = useIntl();
|
const intl = useIntl();
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ height: height ?? "750px", overflow: "hidden" }}>
|
<div style={{ height: height ?? "750px", overflow: "hidden" }}>
|
||||||
|
@ -62,6 +72,10 @@ const SearchSidebar = (props: SearchSidebarProps) => {
|
||||||
onChange={(e) => setSearchQuery(e.target.value)}
|
onChange={(e) => setSearchQuery(e.target.value)}
|
||||||
/> */}
|
/> */}
|
||||||
<SearchInputTextfield
|
<SearchInputTextfield
|
||||||
|
sx={{
|
||||||
|
".MuiInputLabel-root" :{
|
||||||
|
color: theme.palette.text.primary
|
||||||
|
}}}
|
||||||
id={id}
|
id={id}
|
||||||
variant="filled"
|
variant="filled"
|
||||||
onChange={(e) => setSearchQuery(e.target.value)}
|
onChange={(e) => setSearchQuery(e.target.value)}
|
||||||
|
@ -71,7 +85,6 @@ const SearchSidebar = (props: SearchSidebarProps) => {
|
||||||
id: "search",
|
id: "search",
|
||||||
defaultMessage: "Search",
|
defaultMessage: "Search",
|
||||||
})}
|
})}
|
||||||
color="info"
|
|
||||||
type="search"
|
type="search"
|
||||||
/>
|
/>
|
||||||
<ListComponent searchQuery={searchQuery} />
|
<ListComponent searchQuery={searchQuery} />
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Box, CircularProgress, Alert } from "@mui/material";
|
import { Box, CircularProgress, Alert, collapseClasses, useTheme } from "@mui/material";
|
||||||
import { AxiosError } from "axios";
|
import { AxiosError } from "axios";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useParams } from "react-router-dom";
|
import { useParams } from "react-router-dom";
|
||||||
|
@ -6,6 +6,7 @@ import axiosConfig from "../../config/axiosConfig";
|
||||||
import { I_User } from "../../util/user.util";
|
import { I_User } from "../../util/user.util";
|
||||||
import UserForm from "./UserForm";
|
import UserForm from "./UserForm";
|
||||||
import { useIntl } from "react-intl";
|
import { useIntl } from "react-intl";
|
||||||
|
import { colors } from "../..";
|
||||||
|
|
||||||
interface I_DetailProps {
|
interface I_DetailProps {
|
||||||
hasMoveButton?: boolean;
|
hasMoveButton?: boolean;
|
||||||
|
@ -39,13 +40,14 @@ const Detail = (props: I_DetailProps) => {
|
||||||
language: locale,
|
language: locale,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
if (values && values.id && values.id.toString() === id) {
|
if (values && values.id && values.id.toString() === id) {
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
py: 3,
|
py: 3,
|
||||||
bgcolor: "#CCD6E4",
|
bgcolor: colors.greyDark,
|
||||||
px: 1,
|
px: 1,
|
||||||
borderBottom: 1,
|
borderBottom: 1,
|
||||||
borderRight: 1,
|
borderRight: 1,
|
||||||
|
@ -55,7 +57,7 @@ const Detail = (props: I_DetailProps) => {
|
||||||
WebkitBorderTopRightRadius: 0,
|
WebkitBorderTopRightRadius: 0,
|
||||||
borderBottomLeftRadius: 4,
|
borderBottomLeftRadius: 4,
|
||||||
borderBottomRightRadius: 4,
|
borderBottomRightRadius: 4,
|
||||||
borderColor: "#90a7c5",
|
borderColor: colors.greyLight,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<UserForm values={values} handleSubmit={handleUpdate} />
|
<UserForm values={values} handleSubmit={handleUpdate} />
|
||||||
|
@ -66,7 +68,7 @@ const Detail = (props: I_DetailProps) => {
|
||||||
<Box
|
<Box
|
||||||
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
sx={{ width: 1 / 2, justifyContent: "center", display: "flex", mt: 10 }}
|
||||||
>
|
>
|
||||||
<CircularProgress sx={{ m: 2 }} color="secondary" />
|
<CircularProgress sx={{ m: 2 ,color: theme.palette.secondary.dark}} />
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Alert, CircularProgress, Grid, Snackbar } from "@mui/material";
|
import { Alert, CircularProgress, Grid, Snackbar, useTheme } from "@mui/material";
|
||||||
import { AxiosError, AxiosResponse } from "axios";
|
import { AxiosError, AxiosResponse } from "axios";
|
||||||
import { useFormik } from "formik";
|
import { useFormik } from "formik";
|
||||||
import { useContext, useState } from "react";
|
import { useContext, useState } from "react";
|
||||||
|
@ -25,6 +25,7 @@ const UserForm = (props: I_UserFormProps) => {
|
||||||
|
|
||||||
const currentUser = getCurrentUser();
|
const currentUser = getCurrentUser();
|
||||||
const readOnly = !currentUser.hasWriteAccess;
|
const readOnly = !currentUser.hasWriteAccess;
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
const formik = useFormik({
|
const formik = useFormik({
|
||||||
initialValues: {
|
initialValues: {
|
||||||
|
@ -88,7 +89,7 @@ const UserForm = (props: I_UserFormProps) => {
|
||||||
disabled={readOnly}
|
disabled={readOnly}
|
||||||
/>
|
/>
|
||||||
<Grid container justifyContent="flex-end" sx={{ pt: 1 }}>
|
<Grid container justifyContent="flex-end" sx={{ pt: 1 }}>
|
||||||
{loading && <CircularProgress color="secondary" />}
|
{loading && <CircularProgress sx={{color: theme.palette.secondary.dark}} />}
|
||||||
{currentUser.hasWriteAccess && (
|
{currentUser.hasWriteAccess && (
|
||||||
<InnovenergyButton type="submit">
|
<InnovenergyButton type="submit">
|
||||||
<FormattedMessage id="submit" defaultMessage="Submit" />
|
<FormattedMessage id="submit" defaultMessage="Submit" />
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
import List from "@mui/material/List";
|
import List from "@mui/material/List";
|
||||||
import ListItemButton from "@mui/material/ListItemButton";
|
import ListItemButton from "@mui/material/ListItemButton";
|
||||||
import ListItemText from "@mui/material/ListItemText";
|
import ListItemText from "@mui/material/ListItemText";
|
||||||
import { Divider } from "@mui/material";
|
import { Divider, useTheme } from "@mui/material";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import useRouteMatch from "../../hooks/useRouteMatch";
|
import useRouteMatch from "../../hooks/useRouteMatch";
|
||||||
import routes from "../../routes.json";
|
import routes from "../../routes.json";
|
||||||
import { Fragment, useContext } from "react";
|
import { Fragment, useContext } from "react";
|
||||||
import { UsersContext } from "../Context/UsersContextProvider";
|
import { UsersContext } from "../Context/UsersContextProvider";
|
||||||
import { I_User } from "../../util/user.util";
|
import { I_User } from "../../util/user.util";
|
||||||
|
import { colors } from "../..";
|
||||||
|
|
||||||
const getPathWithoutId = (path?: string) => {
|
const getPathWithoutId = (path?: string) => {
|
||||||
if (path) {
|
if (path) {
|
||||||
|
@ -35,6 +36,7 @@ const UserList = (props: UserListProps) => {
|
||||||
const filteredData = filterData(props.searchQuery, availableUsers);
|
const filteredData = filterData(props.searchQuery, availableUsers);
|
||||||
|
|
||||||
const routeMatch = useRouteMatch([routes.users + routes.user + ":id"]);
|
const routeMatch = useRouteMatch([routes.users + routes.user + ":id"]);
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
if (filteredData && filteredData.length) {
|
if (filteredData && filteredData.length) {
|
||||||
return (
|
return (
|
||||||
|
@ -44,7 +46,6 @@ const UserList = (props: UserListProps) => {
|
||||||
bgcolor: "background.paper",
|
bgcolor: "background.paper",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
overflow: "auto",
|
overflow: "auto",
|
||||||
maxHeight: 400,
|
|
||||||
py: 0,
|
py: 0,
|
||||||
mt: 1,
|
mt: 1,
|
||||||
}}
|
}}
|
||||||
|
@ -63,15 +64,15 @@ const UserList = (props: UserListProps) => {
|
||||||
sx={{
|
sx={{
|
||||||
mr: "1px",
|
mr: "1px",
|
||||||
borderStyle: "solid",
|
borderStyle: "solid",
|
||||||
backgroundColor: "#577ba840",
|
backgroundColor: theme.palette.primary.dark,
|
||||||
"&.Mui-selected": {
|
"&.Mui-selected": {
|
||||||
backgroundColor: "#90A7C5",
|
backgroundColor: colors.orangeSelected,
|
||||||
},
|
},
|
||||||
":hover": {
|
":hover": {
|
||||||
backgroundColor: "#AFC0D5",
|
backgroundColor: colors.orangeHover,
|
||||||
},
|
},
|
||||||
"&.Mui-selected:hover": {
|
"&.Mui-selected:hover": {
|
||||||
backgroundColor: "#90A7C5",
|
backgroundColor: colors.orangeSelected,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
|
@ -13,6 +13,6 @@ code {
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
|
|
||||||
background-color: #F2F4F8;
|
background-color: #f3f4f8;
|
||||||
|
|
||||||
}
|
}
|
|
@ -5,11 +5,21 @@ import App from "./App";
|
||||||
import reportWebVitals from "./reportWebVitals";
|
import reportWebVitals from "./reportWebVitals";
|
||||||
import { createTheme, ThemeProvider } from "@mui/material";
|
import { createTheme, ThemeProvider } from "@mui/material";
|
||||||
import UserContextProvider from "./components/Context/UserContextProvider";
|
import UserContextProvider from "./components/Context/UserContextProvider";
|
||||||
|
import { orange } from "@mui/material/colors";
|
||||||
|
|
||||||
const root = ReactDOM.createRoot(
|
const root = ReactDOM.createRoot(
|
||||||
document.getElementById("root") as HTMLElement
|
document.getElementById("root") as HTMLElement
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export const colors = {
|
||||||
|
black: '#2b3e54',
|
||||||
|
fond: '#f3f4f7',
|
||||||
|
greyDark: '#d1d7de',
|
||||||
|
greyLight:'#e1e4e7',
|
||||||
|
orangeSelected: '#ffd280',
|
||||||
|
orangeHover: '#ffe4b3',
|
||||||
|
}
|
||||||
|
|
||||||
const theme = createTheme({
|
const theme = createTheme({
|
||||||
components: {
|
components: {
|
||||||
MuiButtonBase: {
|
MuiButtonBase: {
|
||||||
|
@ -20,22 +30,21 @@ const theme = createTheme({
|
||||||
},
|
},
|
||||||
palette: {
|
palette: {
|
||||||
text: {
|
text: {
|
||||||
primary: "#2b3e54",
|
primary: colors.black,
|
||||||
secondary: "#000000",
|
secondary: "#000000",
|
||||||
disabled: "#000000",
|
disabled: "#000000",
|
||||||
},
|
},
|
||||||
|
primary: {
|
||||||
|
main: colors.fond,
|
||||||
|
light: colors.greyLight,
|
||||||
|
dark: colors.greyDark,
|
||||||
|
},
|
||||||
secondary: {
|
secondary: {
|
||||||
main: "#90A7C5",
|
main: colors.orangeSelected,
|
||||||
dark: "#CCD6E4",
|
light: colors.orangeHover,
|
||||||
},
|
|
||||||
info: {
|
|
||||||
main: "#2b3e54",
|
|
||||||
},
|
|
||||||
warning: {
|
|
||||||
main: "#90a7c5",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
},
|
||||||
typography: {
|
typography: {
|
||||||
fontFamily: `"Ubuntu", sans-serif`,
|
fontFamily: `"Ubuntu", sans-serif`,
|
||||||
fontWeightRegular: 300,
|
fontWeightRegular: 300,
|
||||||
|
|
|
@ -22,9 +22,6 @@ export const StyledTab = styled((props: any) => (
|
||||||
marginTop: "1px",
|
marginTop: "1px",
|
||||||
bottom: -1,
|
bottom: -1,
|
||||||
},
|
},
|
||||||
"&.Mui-focusVisible": {
|
|
||||||
backgroundColor: "rgba(100, 95, 228, 0.32)",
|
|
||||||
},
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const StyledTabBlue = styled((props: any) => (
|
export const StyledTabBlue = styled((props: any) => (
|
||||||
|
@ -50,9 +47,7 @@ export const StyledTabBlue = styled((props: any) => (
|
||||||
borderColor: "#90A7c5 #90A7c5 #CCD6E4",
|
borderColor: "#90A7c5 #90A7c5 #CCD6E4",
|
||||||
marginTop: "1px",
|
marginTop: "1px",
|
||||||
},
|
},
|
||||||
"&.Mui-focusVisible": {
|
|
||||||
backgroundColor: "rgba(100, 95, 228, 0.32)",
|
|
||||||
},
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const StyledTabBig = styled((props: any) => (
|
export const StyledTabBig = styled((props: any) => (
|
||||||
|
@ -78,9 +73,7 @@ export const StyledTabBig = styled((props: any) => (
|
||||||
marginTop: "1px",
|
marginTop: "1px",
|
||||||
bottom: -2,
|
bottom: -2,
|
||||||
},
|
},
|
||||||
"&.Mui-focusVisible": {
|
|
||||||
backgroundColor: "rgba(100, 95, 228, 0.32)",
|
|
||||||
},
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const StyledTabWhite = styled((props: any) => (
|
export const StyledTabWhite = styled((props: any) => (
|
||||||
|
@ -105,9 +98,7 @@ export const StyledTabWhite = styled((props: any) => (
|
||||||
marginTop: "1px",
|
marginTop: "1px",
|
||||||
bottom: -1,
|
bottom: -1,
|
||||||
},
|
},
|
||||||
"&.Mui-focusVisible": {
|
|
||||||
backgroundColor: "rgba(100, 95, 228, 0.32)",
|
|
||||||
},
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const AntTabsBig = styled(Tabs)({
|
export const AntTabsBig = styled(Tabs)({
|
||||||
|
|
Loading…
Reference in New Issue