Compare commits
5 Commits
0.2.1
...
5fb810bd5a
| Author | SHA1 | Date | |
|---|---|---|---|
| 5fb810bd5a | |||
| 2a12e33e22 | |||
| 7dd685ae49 | |||
| 86bb9ab222 | |||
| de59ef1f7d |
@@ -1,48 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import { ThemeProvider, createTheme } from "@mui/material/styles";
|
|
||||||
import { getDesignTokens } from "./shared-theme/themePrimitives";
|
|
||||||
import { inputsCustomizations } from "./shared-theme/customizations/inputs";
|
|
||||||
import { dataDisplayCustomizations } from "./shared-theme/customizations/dataDisplay";
|
|
||||||
import { feedbackCustomizations } from "./shared-theme/customizations/feedback";
|
|
||||||
import { navigationCustomizations } from "./shared-theme/customizations/navigation";
|
|
||||||
import { surfacesCustomizations } from "./shared-theme/customizations/surfaces";
|
|
||||||
|
|
||||||
export const ColorModeContext = React.createContext({
|
|
||||||
toggleColorMode: () => {},
|
|
||||||
mode: "light" as "light" | "dark",
|
|
||||||
});
|
|
||||||
|
|
||||||
export default function AppTheme({ children }: { children: React.ReactNode }) {
|
|
||||||
const [mode, setMode] = React.useState<"light" | "dark">("light");
|
|
||||||
|
|
||||||
const colorMode = React.useMemo(
|
|
||||||
() => ({
|
|
||||||
toggleColorMode: () => {
|
|
||||||
setMode((prevMode) => (prevMode === "light" ? "dark" : "light"));
|
|
||||||
},
|
|
||||||
mode,
|
|
||||||
}),
|
|
||||||
[mode]
|
|
||||||
);
|
|
||||||
|
|
||||||
const theme = React.useMemo(
|
|
||||||
() =>
|
|
||||||
createTheme({
|
|
||||||
...getDesignTokens(mode),
|
|
||||||
components: {
|
|
||||||
...inputsCustomizations,
|
|
||||||
...dataDisplayCustomizations,
|
|
||||||
...feedbackCustomizations,
|
|
||||||
...navigationCustomizations,
|
|
||||||
...surfacesCustomizations,
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
[mode]
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ColorModeContext.Provider value={colorMode}>
|
|
||||||
<ThemeProvider theme={theme}>{children}</ThemeProvider>
|
|
||||||
</ColorModeContext.Provider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -10,8 +10,14 @@ import {
|
|||||||
Button
|
Button
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
|
|
||||||
import ConfigurableDashboard from "./components/Dashboard";
|
import DashboardView from "./components/Dashboard";
|
||||||
import { DashboardState } from "./components/Dashboard";
|
|
||||||
|
import {
|
||||||
|
DashboardState,
|
||||||
|
DashboardStateSetters,
|
||||||
|
DashboardFlow,
|
||||||
|
} from "./components/Dashboard";
|
||||||
|
|
||||||
import { configuration } from "./dashboard-config";
|
import { configuration } from "./dashboard-config";
|
||||||
import {
|
import {
|
||||||
useReport,
|
useReport,
|
||||||
@@ -19,7 +25,13 @@ import {
|
|||||||
} from "./features/report";
|
} from "./features/report";
|
||||||
|
|
||||||
export default function Dashboard() {
|
export default function Dashboard() {
|
||||||
const [flow, setFlow] = React.useState<"outflows" | "inflows">("outflows");
|
const [state, setState] = React.useState<DashboardState>({
|
||||||
|
flow: "outflows",
|
||||||
|
periodType: "rolling",
|
||||||
|
selectedPeriodId: null,
|
||||||
|
selectedGroupKey: null,
|
||||||
|
comparison: false,
|
||||||
|
});
|
||||||
|
|
||||||
const [appliedPayees, setAppliedPayees] = React.useState<string[]>([]);
|
const [appliedPayees, setAppliedPayees] = React.useState<string[]>([]);
|
||||||
const [appliedTags, setAppliedTags] = React.useState<string[]>([]);
|
const [appliedTags, setAppliedTags] = React.useState<string[]>([]);
|
||||||
@@ -32,7 +44,7 @@ export default function Dashboard() {
|
|||||||
|
|
||||||
const report = useReport({
|
const report = useReport({
|
||||||
periods: ["daily", "weekly", "monthly", "all"],
|
periods: ["daily", "weekly", "monthly", "all"],
|
||||||
flow: flow,
|
flow: state.flow,
|
||||||
payee: appliedPayees.length > 0 ? appliedPayees : undefined,
|
payee: appliedPayees.length > 0 ? appliedPayees : undefined,
|
||||||
tags: appliedTags.length > 0 ? appliedTags : undefined,
|
tags: appliedTags.length > 0 ? appliedTags : undefined,
|
||||||
});
|
});
|
||||||
@@ -69,14 +81,124 @@ export default function Dashboard() {
|
|||||||
}
|
}
|
||||||
}, [report.data?.data]);
|
}, [report.data?.data]);
|
||||||
|
|
||||||
|
const toggleFlow =
|
||||||
|
React.useCallback(() => {
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
|
||||||
|
flow:
|
||||||
|
prev.flow ===
|
||||||
|
"outflows"
|
||||||
|
? "inflows"
|
||||||
|
: "outflows",
|
||||||
|
|
||||||
|
selectedGroupKey:
|
||||||
|
null,
|
||||||
|
|
||||||
|
selectedPeriodId:
|
||||||
|
null,
|
||||||
|
}));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const setFlow =
|
||||||
|
React.useCallback(
|
||||||
|
(
|
||||||
|
flow: DashboardFlow
|
||||||
|
) => {
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
|
||||||
|
flow,
|
||||||
|
|
||||||
|
selectedGroupKey:
|
||||||
|
null,
|
||||||
|
|
||||||
|
selectedPeriodId:
|
||||||
|
null,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
[]
|
||||||
|
);
|
||||||
|
|
||||||
|
const togglePeriodType =
|
||||||
|
React.useCallback(() => {
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
|
||||||
|
periodType:
|
||||||
|
prev.periodType ===
|
||||||
|
"rolling"
|
||||||
|
? "calendar"
|
||||||
|
: "rolling",
|
||||||
|
}));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const toggleComparison =
|
||||||
|
React.useCallback(() => {
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
|
||||||
|
comparison:
|
||||||
|
!prev.comparison,
|
||||||
|
}));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const setSelectedPeriodId =
|
||||||
|
React.useCallback(
|
||||||
|
(
|
||||||
|
selectedPeriodId: DashboardState["selectedPeriodId"]
|
||||||
|
) => {
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
|
||||||
|
selectedPeriodId,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
[]
|
||||||
|
);
|
||||||
|
|
||||||
|
const setSelectedGroupKey =
|
||||||
|
React.useCallback(
|
||||||
|
(
|
||||||
|
selectedGroupKey: DashboardState["selectedGroupKey"]
|
||||||
|
) => {
|
||||||
|
setState((prev) => ({
|
||||||
|
...prev,
|
||||||
|
|
||||||
|
selectedGroupKey,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
[]
|
||||||
|
);
|
||||||
|
|
||||||
|
const stateSetters: DashboardStateSetters =
|
||||||
|
React.useMemo(
|
||||||
|
() => ({
|
||||||
|
toggleFlow,
|
||||||
|
|
||||||
|
setFlow,
|
||||||
|
|
||||||
|
togglePeriodType,
|
||||||
|
|
||||||
|
toggleComparison,
|
||||||
|
|
||||||
|
setSelectedPeriodId,
|
||||||
|
|
||||||
|
setSelectedGroupKey,
|
||||||
|
}),
|
||||||
|
[
|
||||||
|
toggleFlow,
|
||||||
|
setFlow,
|
||||||
|
togglePeriodType,
|
||||||
|
toggleComparison,
|
||||||
|
setSelectedPeriodId,
|
||||||
|
setSelectedGroupKey,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
const isLoading = report.isLoading;
|
const isLoading = report.isLoading;
|
||||||
const error = report.error;
|
const error = report.error;
|
||||||
|
|
||||||
/** Callback for the ConfigurableDashboard's flow toggle */
|
|
||||||
const handleFlowChange = React.useCallback((newState: DashboardState) => {
|
|
||||||
setFlow(newState.flow);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
if (isLoading && !report.data) {
|
if (isLoading && !report.data) {
|
||||||
return (
|
return (
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
||||||
@@ -157,11 +279,12 @@ export default function Dashboard() {
|
|||||||
</Button>
|
</Button>
|
||||||
</Paper>
|
</Paper>
|
||||||
</Container>
|
</Container>
|
||||||
<ConfigurableDashboard
|
<DashboardView
|
||||||
config={configuration}
|
config={configuration}
|
||||||
data={data}
|
data={data}
|
||||||
|
state={state}
|
||||||
|
stateSetters={stateSetters}
|
||||||
isFetching={report.isFetching}
|
isFetching={report.isFetching}
|
||||||
onFlowChange={handleFlowChange}
|
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import DarkModeIcon from "@mui/icons-material/DarkMode";
|
|||||||
import LightModeIcon from "@mui/icons-material/LightMode";
|
import LightModeIcon from "@mui/icons-material/LightMode";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { useAuth } from "../react-auth";
|
import { useAuth } from "../react-auth";
|
||||||
import { ColorModeContext } from "./AppTheme";
|
import { ColorModeContext } from "./shared-theme/AppTheme";
|
||||||
|
|
||||||
interface HeaderProps {
|
interface HeaderProps {
|
||||||
routerMapping: {
|
routerMapping: {
|
||||||
|
|||||||
13
src/Home.tsx
13
src/Home.tsx
@@ -1,10 +1,12 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Box, Typography, Button, Container, Stack } from "@mui/material";
|
import { Box, Typography, Button, Container, Stack } from "@mui/material";
|
||||||
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import ArrowForwardIcon from "@mui/icons-material/ArrowForward";
|
import ArrowForwardIcon from "@mui/icons-material/ArrowForward";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
@@ -46,14 +48,13 @@ export default function Home() {
|
|||||||
sx={{
|
sx={{
|
||||||
p: { xs: 4, md: 8 },
|
p: { xs: 4, md: 8 },
|
||||||
backdropFilter: "blur(20px)",
|
backdropFilter: "blur(20px)",
|
||||||
backgroundColor: (theme) =>
|
backgroundColor: (t) => alpha(t.palette.common.white, t.palette.mode === "dark" ? 0.04 : 0.6),
|
||||||
theme.palette.mode === "dark" ? "rgba(255, 255, 255, 0.03)" : "rgba(255, 255, 255, 0.6)",
|
|
||||||
border: "1px solid",
|
border: "1px solid",
|
||||||
borderColor: "divider",
|
borderColor: "divider",
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
boxShadow: (theme) =>
|
boxShadow: (t) =>
|
||||||
theme.palette.mode === "dark"
|
t.palette.mode === "dark"
|
||||||
? "0 8px 32px 0 rgba(0, 0, 0, 0.37)"
|
? "0 8px 32px 0 rgba(0, 0, 0, 0.5)"
|
||||||
: "0 8px 32px 0 rgba(31, 38, 135, 0.07)",
|
: "0 8px 32px 0 rgba(31, 38, 135, 0.07)",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -94,7 +95,7 @@ export default function Home() {
|
|||||||
transition: "transform 0.2s ease-in-out, box-shadow 0.2s",
|
transition: "transform 0.2s ease-in-out, box-shadow 0.2s",
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
transform: "translateY(-3px)",
|
transform: "translateY(-3px)",
|
||||||
boxShadow: "0 8px 20px rgba(236,72,153,0.4)",
|
boxShadow: (t) => `0 8px 20px ${alpha(t.palette.primary.main, 0.4)}`,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -32,31 +32,23 @@ export interface DashboardSection {
|
|||||||
settings?: Record<string, any>;
|
settings?: Record<string, any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ColorDefinition {
|
|
||||||
primary: string;
|
|
||||||
background: string;
|
|
||||||
text: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ThemeAwarePalette {
|
|
||||||
light: ColorDefinition;
|
|
||||||
dark: ColorDefinition;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface DashboardConfig {
|
export interface DashboardConfig {
|
||||||
sections: DashboardSection[];
|
sections: DashboardSection[];
|
||||||
style: {
|
|
||||||
palette: Record<DashboardFlow, ThemeAwarePalette>;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DashboardProps {
|
export interface DashboardViewProps {
|
||||||
config: DashboardConfig;
|
config: DashboardConfig;
|
||||||
data: ReportData;
|
data: ReportData;
|
||||||
|
state: DashboardState;
|
||||||
|
stateSetters: DashboardStateSetters;
|
||||||
isFetching: boolean;
|
isFetching: boolean;
|
||||||
onFlowChange?: (state: DashboardState) => void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ColorScheme {
|
||||||
|
primary: string;
|
||||||
|
surface: string;
|
||||||
|
text: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ComponentProps extends DashboardSection {
|
export interface ComponentProps extends DashboardSection {
|
||||||
reportData: ReportData;
|
reportData: ReportData;
|
||||||
@@ -65,9 +57,5 @@ export interface ComponentProps extends DashboardSection {
|
|||||||
stateSetters: DashboardStateSetters;
|
stateSetters: DashboardStateSetters;
|
||||||
isFetching: boolean;
|
isFetching: boolean;
|
||||||
|
|
||||||
colorScheme: {
|
colorScheme: ColorScheme;
|
||||||
primary: string;
|
|
||||||
light: string;
|
|
||||||
text: string;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,202 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import {
|
|
||||||
Box,
|
|
||||||
Container,
|
|
||||||
Grid,
|
|
||||||
ToggleButton,
|
|
||||||
ToggleButtonGroup,
|
|
||||||
Button
|
|
||||||
} from "@mui/material";
|
|
||||||
import { useTheme, alpha } from "@mui/material/styles";
|
|
||||||
import { DashboardProps, DashboardState, DashboardStateSetters, DashboardFlow } from "./Dashboard.models";
|
|
||||||
|
|
||||||
export default function Dashboard({
|
|
||||||
config,
|
|
||||||
data,
|
|
||||||
isFetching,
|
|
||||||
onFlowChange,
|
|
||||||
}: DashboardProps) {
|
|
||||||
const theme = useTheme();
|
|
||||||
const themeMode = theme.palette.mode;
|
|
||||||
|
|
||||||
const [state, setState] = React.useState<DashboardState>({
|
|
||||||
flow: "outflows",
|
|
||||||
periodType: "rolling",
|
|
||||||
selectedPeriodId: null,
|
|
||||||
selectedGroupKey: null,
|
|
||||||
comparison: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const toggleFlow = () => {
|
|
||||||
setState(prev => {
|
|
||||||
const nextFlow: DashboardFlow = prev.flow === "outflows" ? "inflows" : "outflows";
|
|
||||||
const nextState: DashboardState = {
|
|
||||||
...prev,
|
|
||||||
flow: nextFlow,
|
|
||||||
selectedGroupKey: null,
|
|
||||||
selectedPeriodId: null,
|
|
||||||
};
|
|
||||||
onFlowChange?.(nextState);
|
|
||||||
return nextState;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleFlowChange = (
|
|
||||||
_event: React.MouseEvent<HTMLElement>,
|
|
||||||
newFlow: DashboardFlow | null
|
|
||||||
) => {
|
|
||||||
if (newFlow !== null && newFlow !== state.flow) {
|
|
||||||
setState(prev => {
|
|
||||||
const nextState: DashboardState = {
|
|
||||||
...prev,
|
|
||||||
flow: newFlow,
|
|
||||||
selectedGroupKey: null,
|
|
||||||
selectedPeriodId: null,
|
|
||||||
};
|
|
||||||
onFlowChange?.(nextState);
|
|
||||||
return nextState;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const togglePeriodType = () => {
|
|
||||||
setState(prev => ({
|
|
||||||
...prev,
|
|
||||||
periodType: prev.periodType === "rolling" ? "calendar" : "rolling",
|
|
||||||
}));
|
|
||||||
};
|
|
||||||
|
|
||||||
const toggleComparison = () => {
|
|
||||||
setState(prev => ({
|
|
||||||
...prev,
|
|
||||||
comparison: !prev.comparison,
|
|
||||||
}));
|
|
||||||
};
|
|
||||||
|
|
||||||
const setSelectedPeriodId = (selectedPeriodId: typeof state.selectedPeriodId) => {
|
|
||||||
setState(prev => ({ ...prev, selectedPeriodId }));
|
|
||||||
};
|
|
||||||
|
|
||||||
const setSelectedGroupKey = (groupKey: typeof state.selectedGroupKey) => {
|
|
||||||
setState(prev => ({ ...prev, selectedGroupKey: groupKey }));
|
|
||||||
};
|
|
||||||
|
|
||||||
const stateSetters: DashboardStateSetters = {
|
|
||||||
togglePeriodType,
|
|
||||||
toggleComparison,
|
|
||||||
toggleFlow,
|
|
||||||
setSelectedPeriodId,
|
|
||||||
setSelectedGroupKey,
|
|
||||||
};
|
|
||||||
|
|
||||||
const { flow, selectedGroupKey } = state;
|
|
||||||
|
|
||||||
const colors = React.useMemo(() => {
|
|
||||||
const palette = config.style.palette[flow];
|
|
||||||
const modeColors = palette[themeMode];
|
|
||||||
|
|
||||||
return {
|
|
||||||
primary: modeColors.primary,
|
|
||||||
light: modeColors.background || alpha(modeColors.primary, 0.1),
|
|
||||||
text:
|
|
||||||
modeColors.text ||
|
|
||||||
(themeMode === "light" ? theme.palette.text.primary : "#fff"),
|
|
||||||
};
|
|
||||||
|
|
||||||
// if (modeColors) {
|
|
||||||
// return {
|
|
||||||
// primary: modeColors.primary,
|
|
||||||
// light: modeColors.background || alpha(modeColors.primary, 0.1),
|
|
||||||
// text:
|
|
||||||
// modeColors.text ||
|
|
||||||
// (themeMode === "light" ? theme.palette.text.primary : "#fff"),
|
|
||||||
// };
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// const themeColor =
|
|
||||||
// flow === "outflows" ? theme.palette.error : theme.palette.success;
|
|
||||||
//
|
|
||||||
// return {
|
|
||||||
// primary: themeColor.main,
|
|
||||||
// light: alpha(themeColor.main, themeMode === "light" ? 0.08 : 0.15),
|
|
||||||
// text: themeColor.main,
|
|
||||||
// };
|
|
||||||
}, [config.style?.palette, flow, themeMode, theme.palette]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container
|
|
||||||
sx={{
|
|
||||||
mt: 4,
|
|
||||||
mb: 4,
|
|
||||||
background: `linear-gradient(180deg, ${colors.light} 0%, transparent 100%)`,
|
|
||||||
borderRadius: 4,
|
|
||||||
p: 2,
|
|
||||||
transition: "background 0.3s ease",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
|
||||||
alignItems: "center",
|
|
||||||
mb: 3,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ToggleButtonGroup
|
|
||||||
value={flow}
|
|
||||||
exclusive
|
|
||||||
onChange={handleFlowChange}
|
|
||||||
sx={{
|
|
||||||
borderRadius: 3,
|
|
||||||
overflow: "hidden",
|
|
||||||
"& .MuiToggleButton-root": {
|
|
||||||
px: 3,
|
|
||||||
textTransform: "none",
|
|
||||||
color: "text.secondary",
|
|
||||||
},
|
|
||||||
"&.Mui-selected": {
|
|
||||||
bgcolor: colors.primary,
|
|
||||||
color: "white",
|
|
||||||
borderColor: colors.primary,
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ToggleButton value="outflows">Outflows</ToggleButton>
|
|
||||||
<ToggleButton value="inflows">Inflows</ToggleButton>
|
|
||||||
</ToggleButtonGroup>
|
|
||||||
|
|
||||||
{selectedGroupKey && Object.keys(selectedGroupKey).length > 0 && (
|
|
||||||
<Button
|
|
||||||
size="small"
|
|
||||||
sx={{ mt: 1, textTransform: "none" }}
|
|
||||||
onClick={() => setSelectedGroupKey(null)}
|
|
||||||
>
|
|
||||||
Clear Drill-down
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</Box>
|
|
||||||
|
|
||||||
<Grid container spacing={4}>
|
|
||||||
{config.sections.map((section) => {
|
|
||||||
const Component = section.component;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Grid key={section.id} size={12}>
|
|
||||||
<Component
|
|
||||||
{...section}
|
|
||||||
|
|
||||||
reportData={data}
|
|
||||||
|
|
||||||
state={state}
|
|
||||||
stateSetters={stateSetters}
|
|
||||||
isFetching={isFetching}
|
|
||||||
|
|
||||||
colorScheme={colors}
|
|
||||||
/>
|
|
||||||
</Grid>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Grid>
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
105
src/components/Dashboard/Dashboard.view.tsx
Normal file
105
src/components/Dashboard/Dashboard.view.tsx
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Container,
|
||||||
|
Grid,
|
||||||
|
ToggleButton,
|
||||||
|
ToggleButtonGroup,
|
||||||
|
Button
|
||||||
|
} from "@mui/material";
|
||||||
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
|
import { DashboardViewProps } from "./Dashboard.models";
|
||||||
|
|
||||||
|
export default function DashboardView({
|
||||||
|
config,
|
||||||
|
data,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
isFetching,
|
||||||
|
}: DashboardViewProps) {
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
|
const {
|
||||||
|
flow,
|
||||||
|
selectedGroupKey,
|
||||||
|
} = state;
|
||||||
|
|
||||||
|
const colorScheme = flow === "outflows" ? theme.palette.flows.outflows : theme.palette.flows.inflows;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container
|
||||||
|
sx={{
|
||||||
|
mt: 4,
|
||||||
|
mb: 4,
|
||||||
|
background: `linear-gradient(180deg, ${alpha(colorScheme.primary, theme.palette.mode === "dark" ? 0.06 : 0.04)} 0%, transparent 100%)`,
|
||||||
|
borderRadius: 4,
|
||||||
|
p: 2,
|
||||||
|
transition: "background 0.3s ease",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
alignItems: "center",
|
||||||
|
mb: 3,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ToggleButtonGroup
|
||||||
|
value={flow}
|
||||||
|
exclusive
|
||||||
|
onChange={stateSetters.toggleFlow}
|
||||||
|
sx={{
|
||||||
|
borderRadius: 3,
|
||||||
|
overflow: "hidden",
|
||||||
|
"& .MuiToggleButton-root": {
|
||||||
|
px: 3,
|
||||||
|
textTransform: "none",
|
||||||
|
color: "text.secondary",
|
||||||
|
},
|
||||||
|
"&.Mui-selected": {
|
||||||
|
bgcolor: colorScheme.primary,
|
||||||
|
color: "white",
|
||||||
|
borderColor: colorScheme.primary,
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ToggleButton value="outflows">Outflows</ToggleButton>
|
||||||
|
<ToggleButton value="inflows">Inflows</ToggleButton>
|
||||||
|
</ToggleButtonGroup>
|
||||||
|
|
||||||
|
{selectedGroupKey && Object.keys(selectedGroupKey).length > 0 && (
|
||||||
|
<Button
|
||||||
|
size="small"
|
||||||
|
sx={{ mt: 1, textTransform: "none" }}
|
||||||
|
onClick={() => stateSetters.setSelectedGroupKey(null)}
|
||||||
|
>
|
||||||
|
Clear Drill-down
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Grid container spacing={4}>
|
||||||
|
{config.sections.map((section) => {
|
||||||
|
const Component = section.component;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Grid key={section.id} size={12}>
|
||||||
|
<Component
|
||||||
|
{...section}
|
||||||
|
|
||||||
|
reportData={data}
|
||||||
|
|
||||||
|
state={state}
|
||||||
|
stateSetters={stateSetters}
|
||||||
|
isFetching={isFetching}
|
||||||
|
|
||||||
|
colorScheme={colorScheme}
|
||||||
|
/>
|
||||||
|
</Grid>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Grid>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
export { default } from "./Dashboard";
|
export { default } from "./Dashboard.view";
|
||||||
export * from "./Dashboard.models";
|
export * from "./Dashboard.models";
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ export default function HistoryChartView({
|
|||||||
boxShadow: "none",
|
boxShadow: "none",
|
||||||
border: "1px solid",
|
border: "1px solid",
|
||||||
borderColor: "divider",
|
borderColor: "divider",
|
||||||
bgcolor: isDark ? "background.paper" : colorScheme.light,
|
bgcolor: isDark ? "background.paper" : colorScheme.surface,
|
||||||
opacity: isFetching ? 0.6 : 1,
|
opacity: isFetching ? 0.6 : 1,
|
||||||
transition: "opacity 0.3s ease",
|
transition: "opacity 0.3s ease",
|
||||||
pointerEvents: isFetching ? "none" : "auto",
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import {
|
|||||||
Box,
|
Box,
|
||||||
IconButton,
|
IconButton,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
|
import { alpha } from "@mui/material/styles";
|
||||||
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
||||||
import { LatestItemsViewProps } from "./LatestItems.props";
|
import { LatestItemsViewProps } from "./LatestItems.props";
|
||||||
|
|
||||||
@@ -46,7 +47,7 @@ export default function LatestItemsView({
|
|||||||
<Avatar
|
<Avatar
|
||||||
variant="rounded"
|
variant="rounded"
|
||||||
sx={{
|
sx={{
|
||||||
bgcolor: `${accentColor}22`,
|
bgcolor: alpha(accentColor, 0.13),
|
||||||
width: 48,
|
width: 48,
|
||||||
height: 48,
|
height: 48,
|
||||||
borderRadius: 3,
|
borderRadius: 3,
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ export default function ProgressCardView({
|
|||||||
onClick,
|
onClick,
|
||||||
}: ProgressCardViewProps) {
|
}: ProgressCardViewProps) {
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const isDark = theme.palette.mode === "dark";
|
|
||||||
|
|
||||||
const percentage = getPercentage(progressAmount, totalAmount);
|
const percentage = getPercentage(progressAmount, totalAmount);
|
||||||
const formattedProgress = formatCurrency(progressAmount);
|
const formattedProgress = formatCurrency(progressAmount);
|
||||||
@@ -41,7 +40,7 @@ export default function ProgressCardView({
|
|||||||
borderRadius: settings.compact ? 3 : 4,
|
borderRadius: settings.compact ? 3 : 4,
|
||||||
transform: selected ? "scale(1.02)" : "scale(1)",
|
transform: selected ? "scale(1.02)" : "scale(1)",
|
||||||
transition: "transform 0.2s ease, box-shadow 0.2s ease",
|
transition: "transform 0.2s ease, box-shadow 0.2s ease",
|
||||||
bgcolor: colorScheme.light,
|
bgcolor: colorScheme.surface,
|
||||||
color: colorScheme.text,
|
color: colorScheme.text,
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
@@ -51,9 +50,8 @@ export default function ProgressCardView({
|
|||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
border: selected
|
border: selected
|
||||||
? `2px solid ${colorScheme.primary}`
|
? `2px solid ${colorScheme.primary}`
|
||||||
: isDark
|
: "1px solid",
|
||||||
? "1px solid rgba(255,255,255,0.1)"
|
borderColor: selected ? colorScheme.primary : "divider",
|
||||||
: "1px solid rgba(0,0,0,0.06)",
|
|
||||||
boxShadow: "none",
|
boxShadow: "none",
|
||||||
opacity: isFetching ? 0.6 : 1,
|
opacity: isFetching ? 0.6 : 1,
|
||||||
pointerEvents: isFetching ? "none" : "auto",
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
@@ -70,7 +68,6 @@ export default function ProgressCardView({
|
|||||||
textOverflow: "ellipsis",
|
textOverflow: "ellipsis",
|
||||||
whiteSpace: "nowrap",
|
whiteSpace: "nowrap",
|
||||||
letterSpacing: 0.5,
|
letterSpacing: 0.5,
|
||||||
textShadow: isDark ? "0 1px 2px rgba(0,0,0,0.3)" : "none",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{title}
|
{title}
|
||||||
@@ -83,7 +80,6 @@ export default function ProgressCardView({
|
|||||||
sx={{
|
sx={{
|
||||||
mb: 0.5,
|
mb: 0.5,
|
||||||
lineHeight: 1.2,
|
lineHeight: 1.2,
|
||||||
textShadow: isDark ? "0 2px 4px rgba(0,0,0,0.3)" : "none",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{formattedProgress}
|
{formattedProgress}
|
||||||
@@ -92,7 +88,7 @@ export default function ProgressCardView({
|
|||||||
<Divider
|
<Divider
|
||||||
sx={{
|
sx={{
|
||||||
my: 1,
|
my: 1,
|
||||||
borderColor: isDark ? "rgba(255,255,255,0.15)" : "rgba(0,0,0,0.1)",
|
borderColor: "divider",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
@@ -118,7 +114,7 @@ export default function ProgressCardView({
|
|||||||
height: settings.compact ? 6 : 10,
|
height: settings.compact ? 6 : 10,
|
||||||
borderRadius: 5,
|
borderRadius: 5,
|
||||||
[`&.${linearProgressClasses.colorPrimary}`]: {
|
[`&.${linearProgressClasses.colorPrimary}`]: {
|
||||||
backgroundColor: isDark ? "rgba(255, 255, 255, 0.12)" : "rgba(0, 0, 0, 0.08)",
|
backgroundColor: alpha(theme.palette.divider, 0.5),
|
||||||
},
|
},
|
||||||
[`& .${linearProgressClasses.bar}`]: {
|
[`& .${linearProgressClasses.bar}`]: {
|
||||||
borderRadius: 5,
|
borderRadius: 5,
|
||||||
|
|||||||
@@ -37,32 +37,4 @@ export const configuration: DashboardConfig = {
|
|||||||
component: LatestItems,
|
component: LatestItems,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
style: {
|
|
||||||
palette: {
|
|
||||||
outflows: {
|
|
||||||
light: {
|
|
||||||
primary: "#d32f2f",
|
|
||||||
background: "#fdecea",
|
|
||||||
text: "#b71c1c"
|
|
||||||
},
|
|
||||||
dark: {
|
|
||||||
primary: "#f44336",
|
|
||||||
background: "rgba(244, 67, 54, 0.15)",
|
|
||||||
text: "#ffcdd2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
inflows: {
|
|
||||||
light: {
|
|
||||||
primary: "#2e7d32",
|
|
||||||
background: "#e8f5e9",
|
|
||||||
text: "#1b5e20"
|
|
||||||
},
|
|
||||||
dark: {
|
|
||||||
primary: "#4caf50",
|
|
||||||
background: "rgba(76, 175, 80, 0.15)",
|
|
||||||
text: "#c8e6c9"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import process from 'process';
|
|||||||
import { AuthProvider } from "../react-auth";
|
import { AuthProvider } from "../react-auth";
|
||||||
import Header from './Header';
|
import Header from './Header';
|
||||||
import Footer from './Footer';
|
import Footer from './Footer';
|
||||||
import AppTheme from './AppTheme';
|
import AppTheme from './shared-theme/AppTheme';
|
||||||
|
|
||||||
window.Buffer = Buffer;
|
window.Buffer = Buffer;
|
||||||
window.process = process;
|
window.process = process;
|
||||||
|
|||||||
@@ -1,53 +1,103 @@
|
|||||||
import * as React from 'react';
|
import * as React from "react";
|
||||||
import { ThemeProvider, createTheme } from '@mui/material/styles';
|
import {
|
||||||
import type { ThemeOptions } from '@mui/material/styles';
|
ThemeProvider,
|
||||||
import { inputsCustomizations } from './customizations/inputs';
|
createTheme,
|
||||||
import { dataDisplayCustomizations } from './customizations/dataDisplay';
|
CssBaseline,
|
||||||
import { feedbackCustomizations } from './customizations/feedback';
|
Box,
|
||||||
import { navigationCustomizations } from './customizations/navigation';
|
} from "@mui/material";
|
||||||
import { surfacesCustomizations } from './customizations/surfaces';
|
|
||||||
import { colorSchemes, typography, shadows, shape } from './themePrimitives';
|
|
||||||
|
|
||||||
interface AppThemeProps {
|
import { getDesignTokens } from "./themePrimitives";
|
||||||
|
import { getSemanticColors } from "./themeConfig";
|
||||||
|
|
||||||
|
import { inputsCustomizations } from "./customizations/inputs";
|
||||||
|
import { dataDisplayCustomizations } from "./customizations/dataDisplay";
|
||||||
|
import { feedbackCustomizations } from "./customizations/feedback";
|
||||||
|
import { navigationCustomizations } from "./customizations/navigation";
|
||||||
|
import { surfacesCustomizations } from "./customizations/surfaces";
|
||||||
|
|
||||||
|
export type ColorMode = "light" | "dark";
|
||||||
|
|
||||||
|
type ColorModeContextValue = {
|
||||||
|
mode: ColorMode;
|
||||||
|
setMode: (mode: ColorMode) => void;
|
||||||
|
toggleColorMode: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const ColorModeContext =
|
||||||
|
React.createContext<ColorModeContextValue>({
|
||||||
|
mode: "light",
|
||||||
|
setMode: () => {},
|
||||||
|
toggleColorMode: () => {},
|
||||||
|
});
|
||||||
|
|
||||||
|
type AppThemeProps = {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
/**
|
defaultMode?: ColorMode;
|
||||||
* This is for the docs site. You can ignore it or remove it.
|
};
|
||||||
*/
|
|
||||||
disableCustomTheme?: boolean;
|
export default function AppTheme({
|
||||||
themeComponents?: ThemeOptions['components'];
|
children,
|
||||||
}
|
defaultMode = "light",
|
||||||
|
}: AppThemeProps) {
|
||||||
|
const [mode, setMode] =
|
||||||
|
React.useState<ColorMode>(defaultMode);
|
||||||
|
|
||||||
|
const toggleColorMode = React.useCallback(() => {
|
||||||
|
setMode((prev) =>
|
||||||
|
prev === "light" ? "dark" : "light"
|
||||||
|
);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const contextValue = React.useMemo(
|
||||||
|
() => ({
|
||||||
|
mode,
|
||||||
|
setMode,
|
||||||
|
toggleColorMode,
|
||||||
|
}),
|
||||||
|
[mode, toggleColorMode]
|
||||||
|
);
|
||||||
|
|
||||||
|
const semantic = React.useMemo(
|
||||||
|
() => getSemanticColors(mode),
|
||||||
|
[mode]
|
||||||
|
);
|
||||||
|
|
||||||
|
const theme = React.useMemo(
|
||||||
|
() =>
|
||||||
|
createTheme({
|
||||||
|
...getDesignTokens(mode),
|
||||||
|
semantic,
|
||||||
|
|
||||||
export default function AppTheme(props: AppThemeProps) {
|
|
||||||
const { children, disableCustomTheme, themeComponents } = props;
|
|
||||||
const theme = React.useMemo(() => {
|
|
||||||
return disableCustomTheme
|
|
||||||
? {}
|
|
||||||
: createTheme({
|
|
||||||
// For more details about CSS variables configuration, see https://mui.com/material-ui/customization/css-theme-variables/configuration/
|
|
||||||
cssVariables: {
|
|
||||||
colorSchemeSelector: 'data-mui-color-scheme',
|
|
||||||
cssVarPrefix: 'template',
|
|
||||||
},
|
|
||||||
colorSchemes, // Recently added in v6 for building light & dark mode app, see https://mui.com/material-ui/customization/palette/#color-schemes
|
|
||||||
typography,
|
|
||||||
shadows,
|
|
||||||
shape,
|
|
||||||
components: {
|
components: {
|
||||||
...inputsCustomizations,
|
...inputsCustomizations,
|
||||||
...dataDisplayCustomizations,
|
...dataDisplayCustomizations,
|
||||||
...feedbackCustomizations,
|
...feedbackCustomizations,
|
||||||
...navigationCustomizations,
|
...navigationCustomizations,
|
||||||
...surfacesCustomizations,
|
...surfacesCustomizations,
|
||||||
...themeComponents,
|
|
||||||
},
|
},
|
||||||
});
|
}),
|
||||||
}, [disableCustomTheme, themeComponents]);
|
[mode, semantic]
|
||||||
if (disableCustomTheme) {
|
);
|
||||||
return <React.Fragment>{children}</React.Fragment>;
|
|
||||||
}
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider theme={theme} disableTransitionOnChange>
|
<ColorModeContext.Provider value={contextValue}>
|
||||||
|
<ThemeProvider theme={theme}>
|
||||||
|
<CssBaseline />
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
"--bg-page": semantic.surface.page,
|
||||||
|
"--bg-card": semantic.surface.card,
|
||||||
|
"--bg-elevated": semantic.surface.elevated,
|
||||||
|
"--border-default": semantic.border.default,
|
||||||
|
"--border-subtle": semantic.border.subtle,
|
||||||
|
"--text-primary": semantic.text.primary,
|
||||||
|
"--text-secondary": semantic.text.secondary,
|
||||||
|
"--text-muted": semantic.text.muted,
|
||||||
|
}}
|
||||||
|
>
|
||||||
{children}
|
{children}
|
||||||
|
</Box>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
</ColorModeContext.Provider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,89 +0,0 @@
|
|||||||
import * as React from 'react';
|
|
||||||
import DarkModeIcon from '@mui/icons-material/DarkModeRounded';
|
|
||||||
import LightModeIcon from '@mui/icons-material/LightModeRounded';
|
|
||||||
import Box from '@mui/material/Box';
|
|
||||||
import IconButton, { IconButtonOwnProps } from '@mui/material/IconButton';
|
|
||||||
import Menu from '@mui/material/Menu';
|
|
||||||
import MenuItem from '@mui/material/MenuItem';
|
|
||||||
import { useColorScheme } from '@mui/material/styles';
|
|
||||||
|
|
||||||
export default function ColorModeIconDropdown(props: IconButtonOwnProps) {
|
|
||||||
const { mode, systemMode, setMode } = useColorScheme();
|
|
||||||
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
|
|
||||||
const open = Boolean(anchorEl);
|
|
||||||
const handleClick = (event: React.MouseEvent<HTMLElement>) => {
|
|
||||||
setAnchorEl(event.currentTarget);
|
|
||||||
};
|
|
||||||
const handleClose = () => {
|
|
||||||
setAnchorEl(null);
|
|
||||||
};
|
|
||||||
const handleMode = (targetMode: 'system' | 'light' | 'dark') => () => {
|
|
||||||
setMode(targetMode);
|
|
||||||
handleClose();
|
|
||||||
};
|
|
||||||
if (!mode) {
|
|
||||||
return (
|
|
||||||
<Box
|
|
||||||
data-screenshot="toggle-mode"
|
|
||||||
sx={(theme) => ({
|
|
||||||
verticalAlign: 'bottom',
|
|
||||||
display: 'inline-flex',
|
|
||||||
width: '2.25rem',
|
|
||||||
height: '2.25rem',
|
|
||||||
borderRadius: (theme.vars || theme).shape.borderRadius,
|
|
||||||
border: '1px solid',
|
|
||||||
borderColor: (theme.vars || theme).palette.divider,
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const resolvedMode = (systemMode || mode) as 'light' | 'dark';
|
|
||||||
const icon = {
|
|
||||||
light: <LightModeIcon />,
|
|
||||||
dark: <DarkModeIcon />,
|
|
||||||
}[resolvedMode];
|
|
||||||
return (
|
|
||||||
<React.Fragment>
|
|
||||||
<IconButton
|
|
||||||
data-screenshot="toggle-mode"
|
|
||||||
onClick={handleClick}
|
|
||||||
disableRipple
|
|
||||||
size="small"
|
|
||||||
aria-controls={open ? 'color-scheme-menu' : undefined}
|
|
||||||
aria-haspopup="true"
|
|
||||||
aria-expanded={open ? 'true' : undefined}
|
|
||||||
{...props}
|
|
||||||
>
|
|
||||||
{icon}
|
|
||||||
</IconButton>
|
|
||||||
<Menu
|
|
||||||
anchorEl={anchorEl}
|
|
||||||
id="account-menu"
|
|
||||||
open={open}
|
|
||||||
onClose={handleClose}
|
|
||||||
onClick={handleClose}
|
|
||||||
slotProps={{
|
|
||||||
paper: {
|
|
||||||
variant: 'outlined',
|
|
||||||
elevation: 0,
|
|
||||||
sx: {
|
|
||||||
my: '4px',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
transformOrigin={{ horizontal: 'right', vertical: 'top' }}
|
|
||||||
anchorOrigin={{ horizontal: 'right', vertical: 'bottom' }}
|
|
||||||
>
|
|
||||||
<MenuItem selected={mode === 'system'} onClick={handleMode('system')}>
|
|
||||||
System
|
|
||||||
</MenuItem>
|
|
||||||
<MenuItem selected={mode === 'light'} onClick={handleMode('light')}>
|
|
||||||
Light
|
|
||||||
</MenuItem>
|
|
||||||
<MenuItem selected={mode === 'dark'} onClick={handleMode('dark')}>
|
|
||||||
Dark
|
|
||||||
</MenuItem>
|
|
||||||
</Menu>
|
|
||||||
</React.Fragment>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
import * as React from 'react';
|
|
||||||
import { useColorScheme } from '@mui/material/styles';
|
|
||||||
import MenuItem from '@mui/material/MenuItem';
|
|
||||||
import Select, { SelectProps } from '@mui/material/Select';
|
|
||||||
|
|
||||||
export default function ColorModeSelect(props: SelectProps) {
|
|
||||||
const { mode, setMode } = useColorScheme();
|
|
||||||
if (!mode) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<Select
|
|
||||||
value={mode}
|
|
||||||
onChange={(event) =>
|
|
||||||
setMode(event.target.value as 'system' | 'light' | 'dark')
|
|
||||||
}
|
|
||||||
SelectDisplayProps={{
|
|
||||||
// @ts-ignore
|
|
||||||
'data-screenshot': 'toggle-mode',
|
|
||||||
}}
|
|
||||||
{...props}
|
|
||||||
>
|
|
||||||
<MenuItem value="system">System</MenuItem>
|
|
||||||
<MenuItem value="light">Light</MenuItem>
|
|
||||||
<MenuItem value="dark">Dark</MenuItem>
|
|
||||||
</Select>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -14,8 +14,8 @@ export const feedbackCustomizations: Components<Theme> = {
|
|||||||
color: orange[500],
|
color: orange[500],
|
||||||
},
|
},
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
backgroundColor: `${alpha(orange[900], 0.5)}`,
|
backgroundColor: alpha(orange[900], 0.35),
|
||||||
border: `1px solid ${alpha(orange[800], 0.5)}`,
|
border: `1px solid ${alpha(orange[800], 0.3)}`,
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -125,15 +125,15 @@ export const inputsCustomizations: Components<Theme> = {
|
|||||||
backgroundColor: gray[200],
|
backgroundColor: gray[200],
|
||||||
},
|
},
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
backgroundColor: gray[800],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.06)',
|
||||||
borderColor: gray[700],
|
borderColor: (theme.vars || theme).palette.divider,
|
||||||
|
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
backgroundColor: gray[900],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.1)',
|
||||||
borderColor: gray[600],
|
borderColor: 'hsla(0, 0%, 100%, 0.15)',
|
||||||
},
|
},
|
||||||
'&:active': {
|
'&:active': {
|
||||||
backgroundColor: gray[900],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.1)',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@@ -183,12 +183,12 @@ export const inputsCustomizations: Components<Theme> = {
|
|||||||
backgroundColor: gray[200],
|
backgroundColor: gray[200],
|
||||||
},
|
},
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
color: gray[50],
|
color: 'hsl(0, 0%, 92%)',
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
backgroundColor: gray[700],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.08)',
|
||||||
},
|
},
|
||||||
'&:active': {
|
'&:active': {
|
||||||
backgroundColor: alpha(gray[700], 0.7),
|
backgroundColor: 'hsla(0, 0%, 100%, 0.12)',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@@ -241,14 +241,14 @@ export const inputsCustomizations: Components<Theme> = {
|
|||||||
backgroundColor: gray[200],
|
backgroundColor: gray[200],
|
||||||
},
|
},
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
backgroundColor: gray[800],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.06)',
|
||||||
borderColor: gray[700],
|
borderColor: (theme.vars || theme).palette.divider,
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
backgroundColor: gray[900],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.1)',
|
||||||
borderColor: gray[600],
|
borderColor: 'hsla(0, 0%, 100%, 0.15)',
|
||||||
},
|
},
|
||||||
'&:active': {
|
'&:active': {
|
||||||
backgroundColor: gray[900],
|
backgroundColor: 'hsla(0, 0%, 100%, 0.1)',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
variants: [
|
variants: [
|
||||||
@@ -288,7 +288,7 @@ export const inputsCustomizations: Components<Theme> = {
|
|||||||
[`& .${toggleButtonGroupClasses.selected}`]: {
|
[`& .${toggleButtonGroupClasses.selected}`]: {
|
||||||
color: '#fff',
|
color: '#fff',
|
||||||
},
|
},
|
||||||
boxShadow: `0 4px 16px ${alpha(brand[700], 0.5)}`,
|
boxShadow: `0 2px 8px ${alpha(brand[700], 0.3)}`,
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@@ -302,7 +302,7 @@ export const inputsCustomizations: Components<Theme> = {
|
|||||||
fontWeight: 500,
|
fontWeight: 500,
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
color: gray[400],
|
color: gray[400],
|
||||||
boxShadow: '0 4px 16px rgba(0, 0, 0, 0.5)',
|
boxShadow: '0 2px 8px rgba(0, 0, 0, 0.25)',
|
||||||
[`&.${toggleButtonClasses.selected}`]: {
|
[`&.${toggleButtonClasses.selected}`]: {
|
||||||
color: brand[300],
|
color: brand[300],
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -49,9 +49,8 @@ export const navigationCustomizations: Components<Theme> = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
background: gray[900],
|
background: (theme.vars || theme).palette.background.paper,
|
||||||
boxShadow:
|
boxShadow: '0 4px 16px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3)',
|
||||||
'hsla(220, 30%, 5%, 0.7) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.8) 0px 8px 16px -5px',
|
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@@ -84,17 +83,17 @@ export const navigationCustomizations: Components<Theme> = {
|
|||||||
|
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
borderRadius: (theme.vars || theme).shape.borderRadius,
|
borderRadius: (theme.vars || theme).shape.borderRadius,
|
||||||
borderColor: gray[700],
|
borderColor: (theme.vars || theme).palette.divider,
|
||||||
backgroundColor: (theme.vars || theme).palette.background.paper,
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
||||||
boxShadow: `inset 0 1px 0 1px ${alpha(gray[700], 0.15)}, inset 0 -1px 0 1px hsla(220, 0%, 0%, 0.7)`,
|
boxShadow: 'inset 0 1px 0 hsla(0, 0%, 100%, 0.05)',
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
borderColor: alpha(gray[700], 0.7),
|
borderColor: 'hsla(0, 0%, 100%, 0.15)',
|
||||||
backgroundColor: (theme.vars || theme).palette.background.paper,
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
||||||
boxShadow: 'none',
|
boxShadow: 'none',
|
||||||
},
|
},
|
||||||
[`&.${selectClasses.focused}`]: {
|
[`&.${selectClasses.focused}`]: {
|
||||||
outlineOffset: 0,
|
outlineOffset: 0,
|
||||||
borderColor: gray[900],
|
borderColor: 'hsl(210, 55%, 55%)',
|
||||||
},
|
},
|
||||||
'&:before, &:after': {
|
'&:before, &:after': {
|
||||||
display: 'none',
|
display: 'none',
|
||||||
@@ -108,7 +107,7 @@ export const navigationCustomizations: Components<Theme> = {
|
|||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
'&:focus-visible': {
|
'&:focus-visible': {
|
||||||
backgroundColor: gray[900],
|
backgroundColor: (theme.vars || theme).palette.background.default,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
@@ -151,6 +150,7 @@ export const navigationCustomizations: Components<Theme> = {
|
|||||||
styleOverrides: {
|
styleOverrides: {
|
||||||
paper: ({ theme }) => ({
|
paper: ({ theme }) => ({
|
||||||
backgroundColor: (theme.vars || theme).palette.background.default,
|
backgroundColor: (theme.vars || theme).palette.background.default,
|
||||||
|
borderRight: `1px solid ${(theme.vars || theme).palette.divider}`,
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -204,8 +204,8 @@ export const navigationCustomizations: Components<Theme> = {
|
|||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
':hover': {
|
':hover': {
|
||||||
color: (theme.vars || theme).palette.text.primary,
|
color: (theme.vars || theme).palette.text.primary,
|
||||||
backgroundColor: gray[800],
|
backgroundColor: alpha((theme.vars || theme).palette.common.white, 0.08),
|
||||||
borderColor: gray[700],
|
borderColor: (theme.vars || theme).palette.divider,
|
||||||
},
|
},
|
||||||
[`&.${tabClasses.selected}`]: {
|
[`&.${tabClasses.selected}`]: {
|
||||||
color: '#fff',
|
color: '#fff',
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ export const surfacesCustomizations: Components<Theme> = {
|
|||||||
'&:hover': { backgroundColor: gray[50] },
|
'&:hover': { backgroundColor: gray[50] },
|
||||||
'&:focus-visible': { backgroundColor: 'transparent' },
|
'&:focus-visible': { backgroundColor: 'transparent' },
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
'&:hover': { backgroundColor: gray[800] },
|
'&:hover': { backgroundColor: alpha(theme.palette.common.white, 0.06) },
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@@ -67,7 +67,7 @@ export const surfacesCustomizations: Components<Theme> = {
|
|||||||
border: `1px solid ${(theme.vars || theme).palette.divider}`,
|
border: `1px solid ${(theme.vars || theme).palette.divider}`,
|
||||||
boxShadow: 'none',
|
boxShadow: 'none',
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
backgroundColor: gray[800],
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
||||||
}),
|
}),
|
||||||
variants: [
|
variants: [
|
||||||
{
|
{
|
||||||
@@ -79,7 +79,7 @@ export const surfacesCustomizations: Components<Theme> = {
|
|||||||
boxShadow: 'none',
|
boxShadow: 'none',
|
||||||
background: 'hsl(0, 0%, 100%)',
|
background: 'hsl(0, 0%, 100%)',
|
||||||
...theme.applyStyles('dark', {
|
...theme.applyStyles('dark', {
|
||||||
background: alpha(gray[900], 0.4),
|
background: alpha((theme.vars || theme).palette.background.paper, 0.6),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
72
src/shared-theme/themeConfig.ts
Normal file
72
src/shared-theme/themeConfig.ts
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
import { gray } from "./themePrimitives";
|
||||||
|
import { alpha } from "@mui/material/styles";
|
||||||
|
|
||||||
|
declare module "@mui/material/styles" {
|
||||||
|
interface Theme {
|
||||||
|
semantic: SemanticColors;
|
||||||
|
}
|
||||||
|
interface ThemeOptions {
|
||||||
|
semantic?: SemanticColors;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SemanticColorMode = "light" | "dark";
|
||||||
|
|
||||||
|
export interface SemanticColors {
|
||||||
|
surface: {
|
||||||
|
page: string;
|
||||||
|
card: string;
|
||||||
|
elevated: string;
|
||||||
|
};
|
||||||
|
border: {
|
||||||
|
default: string;
|
||||||
|
subtle: string;
|
||||||
|
};
|
||||||
|
text: {
|
||||||
|
primary: string;
|
||||||
|
secondary: string;
|
||||||
|
muted: string;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const darkBg = 'hsl(0, 0%, 9%)';
|
||||||
|
const darkPaper = 'hsl(0, 0%, 14%)';
|
||||||
|
const darkElevated = 'hsl(0, 0%, 19%)';
|
||||||
|
|
||||||
|
export function getSemanticColors(mode: SemanticColorMode): SemanticColors {
|
||||||
|
if (mode === "dark") {
|
||||||
|
return {
|
||||||
|
surface: {
|
||||||
|
page: darkBg,
|
||||||
|
card: darkPaper,
|
||||||
|
elevated: darkElevated,
|
||||||
|
},
|
||||||
|
border: {
|
||||||
|
default: 'hsla(0, 0%, 100%, 0.08)',
|
||||||
|
subtle: 'hsla(0, 0%, 100%, 0.04)',
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
primary: 'hsl(0, 0%, 92%)',
|
||||||
|
secondary: 'hsl(0, 0%, 60%)',
|
||||||
|
muted: 'hsl(0, 0%, 45%)',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
surface: {
|
||||||
|
page: "hsl(0, 0%, 99%)",
|
||||||
|
card: "hsl(220, 35%, 97%)",
|
||||||
|
elevated: gray[100],
|
||||||
|
},
|
||||||
|
border: {
|
||||||
|
default: alpha(gray[300], 0.4),
|
||||||
|
subtle: alpha(gray[200], 0.3),
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
primary: gray[800],
|
||||||
|
secondary: gray[600],
|
||||||
|
muted: gray[500],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -23,6 +23,10 @@ declare module '@mui/material/styles' {
|
|||||||
|
|
||||||
interface Palette {
|
interface Palette {
|
||||||
baseShadow: string;
|
baseShadow: string;
|
||||||
|
flows: {
|
||||||
|
outflows: { primary: string; surface: string; text: string };
|
||||||
|
inflows: { primary: string; surface: string; text: string };
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,7 +56,9 @@ export const gray = {
|
|||||||
500: 'hsl(220, 20%, 42%)',
|
500: 'hsl(220, 20%, 42%)',
|
||||||
600: 'hsl(220, 20%, 35%)',
|
600: 'hsl(220, 20%, 35%)',
|
||||||
700: 'hsl(220, 20%, 25%)',
|
700: 'hsl(220, 20%, 25%)',
|
||||||
|
750: 'hsl(220, 20%, 18%)',
|
||||||
800: 'hsl(220, 30%, 6%)',
|
800: 'hsl(220, 30%, 6%)',
|
||||||
|
850: 'hsl(220, 22%, 11%)',
|
||||||
900: 'hsl(220, 35%, 3%)',
|
900: 'hsl(220, 35%, 3%)',
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -95,10 +101,14 @@ export const red = {
|
|||||||
900: 'hsl(0, 93%, 6%)',
|
900: 'hsl(0, 93%, 6%)',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const darkBg = 'hsl(0, 0%, 9%)';
|
||||||
|
const darkPaper = 'hsl(0, 0%, 14%)';
|
||||||
|
const darkElevated = 'hsl(0, 0%, 19%)';
|
||||||
|
|
||||||
export const getDesignTokens = (mode: PaletteMode) => {
|
export const getDesignTokens = (mode: PaletteMode) => {
|
||||||
customShadows[1] =
|
customShadows[1] =
|
||||||
mode === 'dark'
|
mode === 'dark'
|
||||||
? 'hsla(220, 30%, 5%, 0.7) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.8) 0px 8px 16px -5px'
|
? '0 4px 16px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3)'
|
||||||
: 'hsla(220, 30%, 5%, 0.07) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.07) 0px 8px 16px -5px';
|
: 'hsla(220, 30%, 5%, 0.07) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.07) 0px 8px 16px -5px';
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -111,9 +121,9 @@ export const getDesignTokens = (mode: PaletteMode) => {
|
|||||||
contrastText: brand[50],
|
contrastText: brand[50],
|
||||||
...(mode === 'dark' && {
|
...(mode === 'dark' && {
|
||||||
contrastText: brand[50],
|
contrastText: brand[50],
|
||||||
light: brand[300],
|
light: 'hsl(210, 50%, 65%)',
|
||||||
main: brand[400],
|
main: 'hsl(210, 55%, 55%)',
|
||||||
dark: brand[700],
|
dark: 'hsl(210, 50%, 35%)',
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
info: {
|
info: {
|
||||||
@@ -122,10 +132,10 @@ export const getDesignTokens = (mode: PaletteMode) => {
|
|||||||
dark: brand[600],
|
dark: brand[600],
|
||||||
contrastText: gray[50],
|
contrastText: gray[50],
|
||||||
...(mode === 'dark' && {
|
...(mode === 'dark' && {
|
||||||
contrastText: brand[300],
|
contrastText: 'hsl(210, 30%, 80%)',
|
||||||
light: brand[500],
|
light: 'hsl(210, 40%, 50%)',
|
||||||
main: brand[700],
|
main: 'hsl(210, 35%, 40%)',
|
||||||
dark: brand[900],
|
dark: 'hsl(210, 30%, 25%)',
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
warning: {
|
warning: {
|
||||||
@@ -133,9 +143,9 @@ export const getDesignTokens = (mode: PaletteMode) => {
|
|||||||
main: orange[400],
|
main: orange[400],
|
||||||
dark: orange[800],
|
dark: orange[800],
|
||||||
...(mode === 'dark' && {
|
...(mode === 'dark' && {
|
||||||
light: orange[400],
|
light: 'hsl(45, 60%, 55%)',
|
||||||
main: orange[500],
|
main: 'hsl(45, 55%, 45%)',
|
||||||
dark: orange[700],
|
dark: 'hsl(45, 50%, 30%)',
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
@@ -143,9 +153,9 @@ export const getDesignTokens = (mode: PaletteMode) => {
|
|||||||
main: red[400],
|
main: red[400],
|
||||||
dark: red[800],
|
dark: red[800],
|
||||||
...(mode === 'dark' && {
|
...(mode === 'dark' && {
|
||||||
light: red[400],
|
light: 'hsl(0, 55%, 60%)',
|
||||||
main: red[500],
|
main: 'hsl(0, 55%, 50%)',
|
||||||
dark: red[700],
|
dark: 'hsl(0, 50%, 35%)',
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
success: {
|
success: {
|
||||||
@@ -153,34 +163,46 @@ export const getDesignTokens = (mode: PaletteMode) => {
|
|||||||
main: green[400],
|
main: green[400],
|
||||||
dark: green[800],
|
dark: green[800],
|
||||||
...(mode === 'dark' && {
|
...(mode === 'dark' && {
|
||||||
light: green[400],
|
light: 'hsl(120, 40%, 55%)',
|
||||||
main: green[500],
|
main: 'hsl(120, 40%, 45%)',
|
||||||
dark: green[700],
|
dark: 'hsl(120, 35%, 30%)',
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
grey: {
|
grey: {
|
||||||
...gray,
|
...gray,
|
||||||
},
|
},
|
||||||
divider: mode === 'dark' ? alpha(gray[700], 0.6) : alpha(gray[300], 0.4),
|
divider: mode === 'dark' ? 'hsla(0, 0%, 100%, 0.08)' : alpha(gray[300], 0.4),
|
||||||
background: {
|
background: {
|
||||||
default: 'hsl(0, 0%, 99%)',
|
default: 'hsl(0, 0%, 99%)',
|
||||||
paper: 'hsl(220, 35%, 97%)',
|
paper: 'hsl(220, 35%, 97%)',
|
||||||
...(mode === 'dark' && { default: gray[900], paper: 'hsl(220, 30%, 7%)' }),
|
...(mode === 'dark' && { default: darkBg, paper: darkPaper }),
|
||||||
},
|
},
|
||||||
text: {
|
text: {
|
||||||
primary: gray[800],
|
primary: gray[800],
|
||||||
secondary: gray[600],
|
secondary: gray[600],
|
||||||
warning: orange[400],
|
warning: orange[400],
|
||||||
...(mode === 'dark' && { primary: 'hsl(0, 0%, 100%)', secondary: gray[400] }),
|
...(mode === 'dark' && { primary: 'hsl(0, 0%, 92%)', secondary: 'hsl(0, 0%, 60%)' }),
|
||||||
},
|
},
|
||||||
action: {
|
action: {
|
||||||
hover: alpha(gray[200], 0.2),
|
hover: alpha(gray[200], 0.2),
|
||||||
selected: `${alpha(gray[200], 0.3)}`,
|
selected: `${alpha(gray[200], 0.3)}`,
|
||||||
...(mode === 'dark' && {
|
...(mode === 'dark' && {
|
||||||
hover: alpha(gray[600], 0.2),
|
hover: 'hsla(0, 0%, 100%, 0.06)',
|
||||||
selected: alpha(gray[600], 0.3),
|
selected: 'hsla(0, 0%, 100%, 0.1)',
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
flows: {
|
||||||
|
outflows: {
|
||||||
|
primary: mode === 'dark' ? 'hsl(0, 55%, 60%)' : '#d32f2f',
|
||||||
|
surface: mode === 'dark' ? 'hsla(0, 35%, 25%, 0.6)' : '#fdecea',
|
||||||
|
text: mode === 'dark' ? 'hsl(0, 60%, 80%)' : '#b71c1c',
|
||||||
|
},
|
||||||
|
inflows: {
|
||||||
|
primary: mode === 'dark' ? 'hsl(120, 40%, 55%)' : '#2e7d32',
|
||||||
|
surface: mode === 'dark' ? 'hsla(120, 25%, 22%, 0.6)' : '#e8f5e9',
|
||||||
|
text: mode === 'dark' ? 'hsl(120, 40%, 78%)' : '#1b5e20',
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
typography: {
|
typography: {
|
||||||
fontFamily: 'Inter, sans-serif',
|
fontFamily: 'Inter, sans-serif',
|
||||||
@@ -285,6 +307,18 @@ export const colorSchemes = {
|
|||||||
hover: alpha(gray[200], 0.2),
|
hover: alpha(gray[200], 0.2),
|
||||||
selected: `${alpha(gray[200], 0.3)}`,
|
selected: `${alpha(gray[200], 0.3)}`,
|
||||||
},
|
},
|
||||||
|
flows: {
|
||||||
|
outflows: {
|
||||||
|
primary: '#d32f2f',
|
||||||
|
surface: '#fdecea',
|
||||||
|
text: '#b71c1c',
|
||||||
|
},
|
||||||
|
inflows: {
|
||||||
|
primary: '#2e7d32',
|
||||||
|
surface: '#e8f5e9',
|
||||||
|
text: '#1b5e20',
|
||||||
|
},
|
||||||
|
},
|
||||||
baseShadow:
|
baseShadow:
|
||||||
'hsla(220, 30%, 5%, 0.07) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.07) 0px 8px 16px -5px',
|
'hsla(220, 30%, 5%, 0.07) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.07) 0px 8px 16px -5px',
|
||||||
},
|
},
|
||||||
@@ -293,49 +327,60 @@ export const colorSchemes = {
|
|||||||
palette: {
|
palette: {
|
||||||
primary: {
|
primary: {
|
||||||
contrastText: brand[50],
|
contrastText: brand[50],
|
||||||
light: brand[300],
|
light: 'hsl(210, 50%, 65%)',
|
||||||
main: brand[400],
|
main: 'hsl(210, 55%, 55%)',
|
||||||
dark: brand[700],
|
dark: 'hsl(210, 50%, 35%)',
|
||||||
},
|
},
|
||||||
info: {
|
info: {
|
||||||
contrastText: brand[300],
|
contrastText: 'hsl(210, 30%, 80%)',
|
||||||
light: brand[500],
|
light: 'hsl(210, 40%, 50%)',
|
||||||
main: brand[700],
|
main: 'hsl(210, 35%, 40%)',
|
||||||
dark: brand[900],
|
dark: 'hsl(210, 30%, 25%)',
|
||||||
},
|
},
|
||||||
warning: {
|
warning: {
|
||||||
light: orange[400],
|
light: 'hsl(45, 60%, 55%)',
|
||||||
main: orange[500],
|
main: 'hsl(45, 55%, 45%)',
|
||||||
dark: orange[700],
|
dark: 'hsl(45, 50%, 30%)',
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
light: red[400],
|
light: 'hsl(0, 55%, 60%)',
|
||||||
main: red[500],
|
main: 'hsl(0, 55%, 50%)',
|
||||||
dark: red[700],
|
dark: 'hsl(0, 50%, 35%)',
|
||||||
},
|
},
|
||||||
success: {
|
success: {
|
||||||
light: green[400],
|
light: 'hsl(120, 40%, 55%)',
|
||||||
main: green[500],
|
main: 'hsl(120, 40%, 45%)',
|
||||||
dark: green[700],
|
dark: 'hsl(120, 35%, 30%)',
|
||||||
},
|
},
|
||||||
grey: {
|
grey: {
|
||||||
...gray,
|
...gray,
|
||||||
},
|
},
|
||||||
divider: alpha(gray[700], 0.6),
|
divider: 'hsla(0, 0%, 100%, 0.08)',
|
||||||
background: {
|
background: {
|
||||||
default: gray[900],
|
default: darkBg,
|
||||||
paper: 'hsl(220, 30%, 7%)',
|
paper: darkPaper,
|
||||||
},
|
},
|
||||||
text: {
|
text: {
|
||||||
primary: 'hsl(0, 0%, 100%)',
|
primary: 'hsl(0, 0%, 92%)',
|
||||||
secondary: gray[400],
|
secondary: 'hsl(0, 0%, 60%)',
|
||||||
},
|
},
|
||||||
action: {
|
action: {
|
||||||
hover: alpha(gray[600], 0.2),
|
hover: 'hsla(0, 0%, 100%, 0.06)',
|
||||||
selected: alpha(gray[600], 0.3),
|
selected: 'hsla(0, 0%, 100%, 0.1)',
|
||||||
},
|
},
|
||||||
baseShadow:
|
flows: {
|
||||||
'hsla(220, 30%, 5%, 0.7) 0px 4px 16px 0px, hsla(220, 25%, 10%, 0.8) 0px 8px 16px -5px',
|
outflows: {
|
||||||
|
primary: 'hsl(0, 55%, 60%)',
|
||||||
|
surface: 'hsla(0, 35%, 25%, 0.6)',
|
||||||
|
text: 'hsl(0, 60%, 80%)',
|
||||||
|
},
|
||||||
|
inflows: {
|
||||||
|
primary: 'hsl(120, 40%, 55%)',
|
||||||
|
surface: 'hsla(120, 25%, 22%, 0.6)',
|
||||||
|
text: 'hsl(120, 40%, 78%)',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
baseShadow: '0 4px 16px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3)',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user