Compare commits
8 Commits
3ef71275a8
...
0.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 5fb810bd5a | |||
| 2a12e33e22 | |||
| 7dd685ae49 | |||
| 86bb9ab222 | |||
| de59ef1f7d | |||
| 16d164b92a | |||
| 8bea3d06f6 | |||
| ad62d7dd9c |
@@ -1,4 +1,4 @@
|
|||||||
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query";
|
import { useQuery, useMutation, useQueryClient, keepPreviousData } from "@tanstack/react-query";
|
||||||
import { api } from "../api/client";
|
import { api } from "../api/client";
|
||||||
import { ResourceConfig } from "../types/config";
|
import { ResourceConfig } from "../types/config";
|
||||||
import { ConfigContext } from "../providers/ConfigContext";
|
import { ConfigContext } from "../providers/ConfigContext";
|
||||||
@@ -26,6 +26,7 @@ export function useResource<T = any>(config: ResourceConfig | undefined) {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
enabled: !!endpoint,
|
enabled: !!endpoint,
|
||||||
|
placeholderData: keepPreviousData,
|
||||||
});
|
});
|
||||||
|
|
||||||
// --- READ ONE ---
|
// --- READ ONE ---
|
||||||
|
|||||||
@@ -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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -3,10 +3,21 @@ import {
|
|||||||
Box,
|
Box,
|
||||||
Container,
|
Container,
|
||||||
CircularProgress,
|
CircularProgress,
|
||||||
Alert
|
Alert,
|
||||||
|
TextField,
|
||||||
|
Paper,
|
||||||
|
Autocomplete,
|
||||||
|
Button
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
|
|
||||||
import ConfigurableDashboard from "./components/Dashboard";
|
import DashboardView from "./components/Dashboard";
|
||||||
|
|
||||||
|
import {
|
||||||
|
DashboardState,
|
||||||
|
DashboardStateSetters,
|
||||||
|
DashboardFlow,
|
||||||
|
} from "./components/Dashboard";
|
||||||
|
|
||||||
import { configuration } from "./dashboard-config";
|
import { configuration } from "./dashboard-config";
|
||||||
import {
|
import {
|
||||||
useReport,
|
useReport,
|
||||||
@@ -14,18 +25,181 @@ import {
|
|||||||
} from "./features/report";
|
} from "./features/report";
|
||||||
|
|
||||||
export default function Dashboard() {
|
export default function Dashboard() {
|
||||||
|
const [state, setState] = React.useState<DashboardState>({
|
||||||
|
flow: "outflows",
|
||||||
|
periodType: "rolling",
|
||||||
|
selectedPeriodId: null,
|
||||||
|
selectedGroupKey: null,
|
||||||
|
comparison: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const [appliedPayees, setAppliedPayees] = React.useState<string[]>([]);
|
||||||
|
const [appliedTags, setAppliedTags] = React.useState<string[]>([]);
|
||||||
|
|
||||||
|
const [payeeInput, setPayeeInput] = React.useState<string[]>([]);
|
||||||
|
const [tagsInput, setTagsInput] = React.useState<string[]>([]);
|
||||||
|
|
||||||
|
const [loadedPayees, setLoadedPayees] = React.useState<string[]>([]);
|
||||||
|
const [loadedTags, setLoadedTags] = React.useState<string[]>([]);
|
||||||
|
|
||||||
const report = useReport({
|
const report = useReport({
|
||||||
periods: ["weekly", "monthly", "full"],
|
periods: ["daily", "weekly", "monthly", "all"],
|
||||||
rolling: true,
|
flow: state.flow,
|
||||||
include_transactions: true,
|
payee: appliedPayees.length > 0 ? appliedPayees : undefined,
|
||||||
group_by: ["tags"],
|
tags: appliedTags.length > 0 ? appliedTags : undefined,
|
||||||
})
|
});
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (report.data?.data) {
|
||||||
|
setLoadedPayees(prev => {
|
||||||
|
const pSet = new Set<string>(prev);
|
||||||
|
report.data.data.buckets.forEach((b: any) => {
|
||||||
|
Object.values(b.periods).forEach((periodArray: any) => {
|
||||||
|
periodArray?.forEach((p: any) => {
|
||||||
|
p.metric?.transactions?.forEach((t: any) => {
|
||||||
|
if (t.payee?.name) pSet.add(t.payee.name);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return Array.from(pSet).sort();
|
||||||
|
});
|
||||||
|
|
||||||
|
setLoadedTags(prev => {
|
||||||
|
const tSet = new Set<string>(prev);
|
||||||
|
report.data.data.buckets.forEach((b: any) => {
|
||||||
|
Object.values(b.periods).forEach((periodArray: any) => {
|
||||||
|
periodArray?.forEach((p: any) => {
|
||||||
|
p.metric?.transactions?.forEach((t: any) => {
|
||||||
|
t.tags?.forEach((tag: any) => tSet.add(tag.name || tag));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return Array.from(tSet).sort();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [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;
|
||||||
|
|
||||||
|
if (isLoading && !report.data) {
|
||||||
if (isLoading) {
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
||||||
<CircularProgress />
|
<CircularProgress />
|
||||||
@@ -41,15 +215,77 @@ export default function Dashboard() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!report) {
|
if (!report.data) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = prepareReport(report.data?.data);
|
const data = prepareReport(report.data.data);
|
||||||
return (
|
return (
|
||||||
<ConfigurableDashboard
|
<Box>
|
||||||
config={configuration}
|
<Container>
|
||||||
data={data}
|
<Paper
|
||||||
/>
|
sx={{
|
||||||
|
mt: 4,
|
||||||
|
p: 2,
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: { xs: "column", sm: "row" },
|
||||||
|
gap: 2,
|
||||||
|
alignItems: { xs: "stretch", sm: "flex-end" },
|
||||||
|
borderRadius: 4,
|
||||||
|
mb: -2 // pull up to be closer to the dashboard container below
|
||||||
|
}}
|
||||||
|
elevation={0}
|
||||||
|
variant="outlined"
|
||||||
|
>
|
||||||
|
<Box sx={{ display: 'flex', flexDirection: 'column', flex: 1, minWidth: { sm: 250 } }}>
|
||||||
|
<Box sx={{ typography: 'caption', mb: 1, color: 'text.secondary' }}>
|
||||||
|
Filter by Payee
|
||||||
|
</Box>
|
||||||
|
<Autocomplete
|
||||||
|
multiple
|
||||||
|
freeSolo
|
||||||
|
options={loadedPayees}
|
||||||
|
value={payeeInput}
|
||||||
|
onChange={(_, val) => setPayeeInput(val as string[])}
|
||||||
|
renderInput={(params) => <TextField {...params} placeholder="Add payees..." />}
|
||||||
|
sx={{ '& .MuiOutlinedInput-root': { height: 'auto', minHeight: '2.5rem', py: 0.5 } }}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
<Box sx={{ display: 'flex', flexDirection: 'column', flex: 1, minWidth: { sm: 250 } }}>
|
||||||
|
<Box sx={{ typography: 'caption', mb: 1, color: 'text.secondary' }}>
|
||||||
|
Filter by Tags
|
||||||
|
</Box>
|
||||||
|
<Autocomplete
|
||||||
|
multiple
|
||||||
|
freeSolo
|
||||||
|
options={loadedTags}
|
||||||
|
value={tagsInput}
|
||||||
|
onChange={(_, val) => setTagsInput(val as string[])}
|
||||||
|
renderInput={(params) => <TextField {...params} placeholder="Add tags..." />}
|
||||||
|
sx={{ '& .MuiOutlinedInput-root': { height: 'auto', minHeight: '2.5rem', py: 0.5 } }}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
size="large"
|
||||||
|
onClick={() => {
|
||||||
|
setAppliedPayees(payeeInput);
|
||||||
|
setAppliedTags(tagsInput);
|
||||||
|
}}
|
||||||
|
disabled={isLoading}
|
||||||
|
sx={{ height: 40, borderRadius: 2 }}
|
||||||
|
>
|
||||||
|
Apply
|
||||||
|
</Button>
|
||||||
|
</Paper>
|
||||||
|
</Container>
|
||||||
|
<DashboardView
|
||||||
|
config={configuration}
|
||||||
|
data={data}
|
||||||
|
state={state}
|
||||||
|
stateSetters={stateSetters}
|
||||||
|
isFetching={report.isFetching}
|
||||||
|
/>
|
||||||
|
</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)}`,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -4,50 +4,58 @@ import {
|
|||||||
GroupKey,
|
GroupKey,
|
||||||
} from "../../features/report";
|
} from "../../features/report";
|
||||||
|
|
||||||
export type DashboardMode = "expense" | "income";
|
export type DashboardFlow = "outflows" | "inflows";
|
||||||
export type DashboardPeriodType = "rolling" | "calendar";
|
export type DashboardPeriodType = "rolling" | "calendar";
|
||||||
export type DashboardSelectedPeriodId = string | null;
|
export type DashboardSelectedPeriodId = string | null;
|
||||||
|
|
||||||
export interface DashboardState {
|
export interface DashboardState {
|
||||||
mode: DashboardMode;
|
flow: DashboardFlow;
|
||||||
periodType: DashboardPeriodType;
|
periodType: DashboardPeriodType;
|
||||||
selectedPeriodId: DashboardSelectedPeriodId;
|
selectedPeriodId: DashboardSelectedPeriodId;
|
||||||
selectedGroupKey: GroupKey | null;
|
selectedGroupKey: GroupKey | null;
|
||||||
comparison: boolean;
|
comparison: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface DashboardStateSetters {
|
||||||
|
setSelectedPeriodId: (id: DashboardSelectedPeriodId) => void;
|
||||||
|
setSelectedGroupKey: (groupKey: GroupKey | null) => void;
|
||||||
|
toggleFlow: () => void;
|
||||||
|
togglePeriodType: () => void;
|
||||||
|
toggleComparison: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
export interface DashboardSection {
|
export interface DashboardSection {
|
||||||
id: string;
|
id: string;
|
||||||
title?: string;
|
title: string;
|
||||||
summary?: string;
|
|
||||||
component: React.ComponentType<any>;
|
component: React.ComponentType<any>;
|
||||||
|
summary?: string;
|
||||||
settings?: Record<string, any>;
|
settings?: Record<string, any>;
|
||||||
isList?: boolean;
|
|
||||||
style?: {
|
|
||||||
size?: number;
|
|
||||||
[key: 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<DashboardMode, ThemeAwarePalette>;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DashboardProps {
|
export interface DashboardViewProps {
|
||||||
config: DashboardConfig;
|
config: DashboardConfig;
|
||||||
data: ReportData;
|
data: ReportData;
|
||||||
|
state: DashboardState;
|
||||||
|
stateSetters: DashboardStateSetters;
|
||||||
|
isFetching: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ColorScheme {
|
||||||
|
primary: string;
|
||||||
|
surface: string;
|
||||||
|
text: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ComponentProps extends DashboardSection {
|
||||||
|
reportData: ReportData;
|
||||||
|
|
||||||
|
state: DashboardState;
|
||||||
|
stateSetters: DashboardStateSetters;
|
||||||
|
isFetching: boolean;
|
||||||
|
|
||||||
|
colorScheme: ColorScheme;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,55 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import DashboardView from "./Dashboard.view";
|
|
||||||
import { DashboardProps, DashboardState } from "./Dashboard.models";
|
|
||||||
|
|
||||||
export default function Dashboard(props: DashboardProps) {
|
|
||||||
const [state, setState] = React.useState<DashboardState>({
|
|
||||||
mode: "expense",
|
|
||||||
periodType: "rolling",
|
|
||||||
selectedPeriodId: null,
|
|
||||||
selectedGroupKey: null,
|
|
||||||
comparison: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const toggleMode = () => {
|
|
||||||
setState(prev => ({
|
|
||||||
...prev,
|
|
||||||
mode: prev.mode === "expense" ? "income" : "expense",
|
|
||||||
}));
|
|
||||||
};
|
|
||||||
|
|
||||||
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 }));
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<DashboardView
|
|
||||||
{...props}
|
|
||||||
state={state}
|
|
||||||
setState={setState}
|
|
||||||
toggleMode={toggleMode}
|
|
||||||
togglePeriodType={togglePeriodType}
|
|
||||||
toggleComparison={toggleComparison}
|
|
||||||
setSelectedPeriodId={setSelectedPeriodId}
|
|
||||||
setSelectedGroupKey={setSelectedGroupKey}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -3,95 +3,80 @@ import {
|
|||||||
Box,
|
Box,
|
||||||
Container,
|
Container,
|
||||||
Grid,
|
Grid,
|
||||||
Typography,
|
|
||||||
ToggleButton,
|
ToggleButton,
|
||||||
ToggleButtonGroup
|
ToggleButtonGroup,
|
||||||
|
Button
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { useTheme, alpha } from "@mui/material/styles";
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
import { GroupKey } from "../../features/report";
|
import { DashboardViewProps } from "./Dashboard.models";
|
||||||
import { DashboardProps, DashboardState } from "./Dashboard.models";
|
|
||||||
|
|
||||||
interface ViewProps extends DashboardProps {
|
|
||||||
state: DashboardState;
|
|
||||||
setState: React.Dispatch<React.SetStateAction<DashboardState>>;
|
|
||||||
toggleMode: () => void;
|
|
||||||
togglePeriodType: () => void;
|
|
||||||
setSelectedPeriodId: (id: string | null) => void;
|
|
||||||
setSelectedGroupKey: (groupKey: GroupKey | null) => void;
|
|
||||||
toggleComparison: () => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function DashboardView({
|
export default function DashboardView({
|
||||||
config,
|
config,
|
||||||
data,
|
data,
|
||||||
state,
|
state,
|
||||||
setState,
|
stateSetters,
|
||||||
toggleMode,
|
isFetching,
|
||||||
togglePeriodType,
|
}: DashboardViewProps) {
|
||||||
toggleComparison,
|
|
||||||
setSelectedPeriodId,
|
|
||||||
setSelectedGroupKey,
|
|
||||||
}: ViewProps) {
|
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const themeMode = theme.palette.mode;
|
|
||||||
const { mode, periodType, comparison, selectedPeriodId, selectedGroupKey } = state;
|
|
||||||
|
|
||||||
// Resolve colors with fallbacks
|
const {
|
||||||
const colors = React.useMemo(() => {
|
flow,
|
||||||
const palette = config.style?.palette?.[mode];
|
selectedGroupKey,
|
||||||
const modeColors = palette ? palette[themeMode] : null;
|
} = state;
|
||||||
|
|
||||||
if (modeColors) {
|
const colorScheme = flow === "outflows" ? theme.palette.flows.outflows : theme.palette.flows.inflows;
|
||||||
return {
|
|
||||||
primary: modeColors.primary,
|
|
||||||
light: modeColors.background || alpha(modeColors.primary, 0.1),
|
|
||||||
text: modeColors.text || (themeMode === 'light' ? theme.palette.text.primary : '#fff')
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fallback to standard theme colors
|
|
||||||
const themeColor = mode === 'expense' ? 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, mode, themeMode, theme.palette]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container
|
<Container
|
||||||
sx={{
|
sx={{
|
||||||
mt: 4,
|
mt: 4,
|
||||||
mb: 4,
|
mb: 4,
|
||||||
background: `linear-gradient(180deg, ${colors.light} 0%, transparent 100%)`,
|
background: `linear-gradient(180deg, ${alpha(colorScheme.primary, theme.palette.mode === "dark" ? 0.06 : 0.04)} 0%, transparent 100%)`,
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
p: 2,
|
p: 2,
|
||||||
transition: 'background 0.3s ease'
|
transition: "background 0.3s ease",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", mb: 3 }}>
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
alignItems: "center",
|
||||||
|
mb: 3,
|
||||||
|
}}
|
||||||
|
>
|
||||||
<ToggleButtonGroup
|
<ToggleButtonGroup
|
||||||
value={mode}
|
value={flow}
|
||||||
exclusive
|
exclusive
|
||||||
onChange={toggleMode}
|
onChange={stateSetters.toggleFlow}
|
||||||
sx={{
|
sx={{
|
||||||
borderRadius: 3,
|
borderRadius: 3,
|
||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
"& .MuiToggleButton-root": {
|
"& .MuiToggleButton-root": {
|
||||||
px: 3,
|
px: 3,
|
||||||
textTransform: "none",
|
textTransform: "none",
|
||||||
color: "text.secondary"
|
color: "text.secondary",
|
||||||
},
|
},
|
||||||
"&.Mui-selected": {
|
"&.Mui-selected": {
|
||||||
bgcolor: colors.primary,
|
bgcolor: colorScheme.primary,
|
||||||
color: "white",
|
color: "white",
|
||||||
borderColor: colors.primary
|
borderColor: colorScheme.primary,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ToggleButton value="expense">Expenses</ToggleButton>
|
<ToggleButton value="outflows">Outflows</ToggleButton>
|
||||||
<ToggleButton value="income">Income</ToggleButton>
|
<ToggleButton value="inflows">Inflows</ToggleButton>
|
||||||
</ToggleButtonGroup>
|
</ToggleButtonGroup>
|
||||||
|
|
||||||
|
{selectedGroupKey && Object.keys(selectedGroupKey).length > 0 && (
|
||||||
|
<Button
|
||||||
|
size="small"
|
||||||
|
sx={{ mt: 1, textTransform: "none" }}
|
||||||
|
onClick={() => stateSetters.setSelectedGroupKey(null)}
|
||||||
|
>
|
||||||
|
Clear Drill-down
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Grid container spacing={4}>
|
<Grid container spacing={4}>
|
||||||
@@ -99,36 +84,17 @@ export default function DashboardView({
|
|||||||
const Component = section.component;
|
const Component = section.component;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Grid key={section.id} size={section.style?.size || 12 as any}>
|
<Grid key={section.id} size={12}>
|
||||||
{section.title && !section.isList && (
|
|
||||||
<Box sx={{ mb: 2 }}>
|
|
||||||
<Typography variant="h6" fontWeight={700}>
|
|
||||||
{section.title}
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<Component
|
<Component
|
||||||
{...section.settings}
|
{...section}
|
||||||
header={section.title}
|
|
||||||
summary={section.summary}
|
|
||||||
reportData={data}
|
reportData={data}
|
||||||
title={section.title}
|
|
||||||
accentColor={colors.primary}
|
|
||||||
colorScheme={colors}
|
|
||||||
|
|
||||||
// State management
|
state={state}
|
||||||
mode={mode}
|
stateSetters={stateSetters}
|
||||||
|
isFetching={isFetching}
|
||||||
|
|
||||||
periodType={periodType}
|
colorScheme={colorScheme}
|
||||||
comparison={comparison}
|
|
||||||
selectedPeriodId={selectedPeriodId}
|
|
||||||
selectedGroupKey={selectedGroupKey}
|
|
||||||
|
|
||||||
togglePeriodType={togglePeriodType}
|
|
||||||
toggleComparison={toggleComparison}
|
|
||||||
setSelectedPeriodId={setSelectedPeriodId}
|
|
||||||
setSelectedGroupKey={setSelectedGroupKey}
|
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
export { default } from "./Dashboard";
|
export { default } from "./Dashboard.view";
|
||||||
export * from "./Dashboard.models";
|
export * from "./Dashboard.models";
|
||||||
|
|||||||
@@ -9,15 +9,14 @@ import { ChartDataPoint } from "./HistoryChart.models";
|
|||||||
// ─── Tab → PeriodKey ─────────────────────────────────────────
|
// ─── Tab → PeriodKey ─────────────────────────────────────────
|
||||||
|
|
||||||
const TAB_TO_KEY: Record<string, PeriodKey> = {
|
const TAB_TO_KEY: Record<string, PeriodKey> = {
|
||||||
|
Daily: "daily",
|
||||||
Weekly: "weekly",
|
Weekly: "weekly",
|
||||||
Monthly: "monthly",
|
Monthly: "monthly",
|
||||||
Yearly: "yearly",
|
"All Time": "all",
|
||||||
"Financial Year": "fyly",
|
|
||||||
"All Time": "full",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function tabToKey(tab: string): PeriodKey {
|
export function tabToKey(tab: string): PeriodKey {
|
||||||
return TAB_TO_KEY[tab] ?? "full";
|
return TAB_TO_KEY[tab] ?? "all";
|
||||||
}
|
}
|
||||||
|
|
||||||
// ─── Comparison ──────────────────────────────────────────────
|
// ─── Comparison ──────────────────────────────────────────────
|
||||||
@@ -27,10 +26,9 @@ function attachComparison(
|
|||||||
key: PeriodKey
|
key: PeriodKey
|
||||||
): ChartDataPoint[] {
|
): ChartDataPoint[] {
|
||||||
const getCompareIndex = (i: number) => {
|
const getCompareIndex = (i: number) => {
|
||||||
|
if (key === "daily") return i - 7;
|
||||||
if (key === "weekly") return i - 4;
|
if (key === "weekly") return i - 4;
|
||||||
if (key === "monthly") return i - 12;
|
if (key === "monthly") return i - 12;
|
||||||
if (key === "yearly") return i - 1;
|
|
||||||
if (key === "fyly") return i - 1;
|
|
||||||
return -1;
|
return -1;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -56,7 +54,7 @@ function attachComparison(
|
|||||||
export function buildChartData(
|
export function buildChartData(
|
||||||
reportData: ReportData,
|
reportData: ReportData,
|
||||||
key: PeriodKey,
|
key: PeriodKey,
|
||||||
mode: "expense" | "income",
|
flow: "outflows" | "inflows",
|
||||||
comparison: boolean
|
comparison: boolean
|
||||||
): ChartDataPoint[] {
|
): ChartDataPoint[] {
|
||||||
const merged = mergeBucketPeriods(reportData.buckets, key);
|
const merged = mergeBucketPeriods(reportData.buckets, key);
|
||||||
@@ -64,7 +62,7 @@ export function buildChartData(
|
|||||||
let points: ChartDataPoint[] = merged.map((p) => ({
|
let points: ChartDataPoint[] = merged.map((p) => ({
|
||||||
id: p.id,
|
id: p.id,
|
||||||
label: p.label,
|
label: p.label,
|
||||||
amount: getAmount(p, mode),
|
amount: getAmount(p),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
if (comparison) {
|
if (comparison) {
|
||||||
|
|||||||
@@ -1,10 +1,3 @@
|
|||||||
import {
|
|
||||||
DashboardMode,
|
|
||||||
DashboardPeriodType,
|
|
||||||
DashboardSelectedPeriodId
|
|
||||||
} from "../Dashboard";
|
|
||||||
import { ReportData } from "../../features/report";
|
|
||||||
|
|
||||||
export interface _ChartDataPoint {
|
export interface _ChartDataPoint {
|
||||||
id: string;
|
id: string;
|
||||||
label: string;
|
label: string;
|
||||||
@@ -15,26 +8,3 @@ export interface _ChartDataPoint {
|
|||||||
export interface ChartDataPoint extends _ChartDataPoint {
|
export interface ChartDataPoint extends _ChartDataPoint {
|
||||||
compare?: _ChartDataPoint;
|
compare?: _ChartDataPoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface HistoryChartProps {
|
|
||||||
header: string;
|
|
||||||
summary?: string;
|
|
||||||
tabs: string[];
|
|
||||||
|
|
||||||
reportData: ReportData;
|
|
||||||
|
|
||||||
colorScheme: {
|
|
||||||
primary: string;
|
|
||||||
light: string;
|
|
||||||
text: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
mode: DashboardMode;
|
|
||||||
periodType: DashboardPeriodType;
|
|
||||||
selectedPeriodId: DashboardSelectedPeriodId;
|
|
||||||
comparison: boolean;
|
|
||||||
|
|
||||||
togglePeriodType: () => void;
|
|
||||||
setSelectedPeriodId: (id: string | null) => void;
|
|
||||||
toggleComparison: () => void;
|
|
||||||
}
|
|
||||||
|
|||||||
21
src/components/HistoryChart/HistoryChart.props.ts
Normal file
21
src/components/HistoryChart/HistoryChart.props.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import { ComponentProps } from "../Dashboard";
|
||||||
|
import { ChartDataPoint } from "./HistoryChart.models";
|
||||||
|
|
||||||
|
export interface HistoryChartProps extends ComponentProps {
|
||||||
|
settings: {
|
||||||
|
tabs: string[];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface HistoryChartViewProps extends HistoryChartProps {
|
||||||
|
activeTab: string;
|
||||||
|
setActiveTab: (v: string) => void;
|
||||||
|
currentData: ChartDataPoint[];
|
||||||
|
visibleData: ChartDataPoint[];
|
||||||
|
maxAmount: number;
|
||||||
|
visibleCount: number;
|
||||||
|
startIndex: number;
|
||||||
|
setStartIndex: React.Dispatch<React.SetStateAction<number>>;
|
||||||
|
activeDataKey: string;
|
||||||
|
}
|
||||||
@@ -1,26 +1,31 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { HistoryChartProps } from "./HistoryChart.models";
|
|
||||||
import HistoryChartView from "./HistoryChart.view";
|
import HistoryChartView from "./HistoryChart.view";
|
||||||
import { buildChartData, tabToKey } from "./HistoryChart.adapter";
|
import { buildChartData, tabToKey } from "./HistoryChart.adapter";
|
||||||
|
import { HistoryChartProps } from "./HistoryChart.props";
|
||||||
|
|
||||||
|
|
||||||
export default function HistoryChart(props: HistoryChartProps) {
|
export default function HistoryChart(props: HistoryChartProps) {
|
||||||
const {
|
const {
|
||||||
tabs,
|
settings,
|
||||||
reportData,
|
reportData,
|
||||||
mode,
|
state,
|
||||||
comparison,
|
stateSetters,
|
||||||
selectedPeriodId,
|
|
||||||
setSelectedPeriodId
|
isFetching,
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
|
const { flow, comparison, selectedPeriodId } = state;
|
||||||
|
const { setSelectedPeriodId } = stateSetters;
|
||||||
|
const { tabs } = settings;
|
||||||
|
|
||||||
const [activeTab, setActiveTab] = React.useState<string>(tabs[0] || "");
|
const [activeTab, setActiveTab] = React.useState<string>(tabs[0] || "");
|
||||||
const [startIndex, setStartIndex] = React.useState(0);
|
const [startIndex, setStartIndex] = React.useState(0);
|
||||||
|
|
||||||
const activeDataKey = tabToKey(activeTab);
|
const activeDataKey = tabToKey(activeTab);
|
||||||
|
|
||||||
const currentData = React.useMemo(() => {
|
const currentData = React.useMemo(() => {
|
||||||
return buildChartData(reportData, activeDataKey, mode, comparison);
|
return buildChartData(reportData, activeDataKey, flow, comparison);
|
||||||
}, [reportData, activeDataKey, mode, comparison]);
|
}, [reportData, activeDataKey, flow, comparison]);
|
||||||
|
|
||||||
const maxAmount =
|
const maxAmount =
|
||||||
currentData.length > 0
|
currentData.length > 0
|
||||||
@@ -35,11 +40,10 @@ export default function HistoryChart(props: HistoryChartProps) {
|
|||||||
: 1;
|
: 1;
|
||||||
|
|
||||||
const visibleCountMap = {
|
const visibleCountMap = {
|
||||||
|
daily: 7,
|
||||||
weekly: 6,
|
weekly: 6,
|
||||||
monthly: 4,
|
monthly: 4,
|
||||||
yearly: 4,
|
all: 4,
|
||||||
fyly: 4,
|
|
||||||
full: 4,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const visibleCount = visibleCountMap[activeDataKey] ?? 4;
|
const visibleCount = visibleCountMap[activeDataKey] ?? 4;
|
||||||
|
|||||||
@@ -11,49 +11,34 @@ import IconButton from "@mui/material/IconButton";
|
|||||||
import ChevronLeftIcon from "@mui/icons-material/ChevronLeft";
|
import ChevronLeftIcon from "@mui/icons-material/ChevronLeft";
|
||||||
import ChevronRightIcon from "@mui/icons-material/ChevronRight";
|
import ChevronRightIcon from "@mui/icons-material/ChevronRight";
|
||||||
import {
|
import {
|
||||||
ChartDataPoint,
|
HistoryChartViewProps,
|
||||||
HistoryChartProps,
|
} from "./HistoryChart.props";
|
||||||
} from "./HistoryChart.models";
|
|
||||||
import { formatDisplay } from "./HistoryChart.utils";
|
import { formatDisplay } from "./HistoryChart.utils";
|
||||||
|
|
||||||
interface ViewProps extends HistoryChartProps {
|
export default function HistoryChartView({
|
||||||
activeTab: string;
|
title,
|
||||||
setActiveTab: (v: string) => void;
|
summary,
|
||||||
currentData: ChartDataPoint[];
|
settings,
|
||||||
visibleData: ChartDataPoint[];
|
|
||||||
maxAmount: number;
|
|
||||||
visibleCount: number;
|
|
||||||
startIndex: number;
|
|
||||||
setStartIndex: React.Dispatch<React.SetStateAction<number>>;
|
|
||||||
activeDataKey: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function HistoryChartView(props: ViewProps) {
|
state,
|
||||||
const {
|
stateSetters,
|
||||||
header,
|
isFetching,
|
||||||
summary,
|
|
||||||
tabs,
|
|
||||||
colorScheme,
|
|
||||||
|
|
||||||
mode,
|
colorScheme,
|
||||||
periodType,
|
|
||||||
selectedPeriodId,
|
|
||||||
comparison,
|
|
||||||
|
|
||||||
togglePeriodType,
|
activeTab,
|
||||||
setSelectedPeriodId,
|
setActiveTab,
|
||||||
toggleComparison,
|
currentData,
|
||||||
|
visibleData,
|
||||||
|
maxAmount,
|
||||||
|
visibleCount,
|
||||||
|
startIndex,
|
||||||
|
setStartIndex,
|
||||||
|
activeDataKey,
|
||||||
|
}: HistoryChartViewProps) {
|
||||||
|
|
||||||
activeTab,
|
const { flow, periodType, selectedPeriodId, comparison } = state;
|
||||||
setActiveTab,
|
const { togglePeriodType, setSelectedPeriodId, toggleComparison } = stateSetters;
|
||||||
currentData,
|
|
||||||
visibleData,
|
|
||||||
maxAmount,
|
|
||||||
visibleCount,
|
|
||||||
startIndex,
|
|
||||||
setStartIndex,
|
|
||||||
activeDataKey,
|
|
||||||
} = props;
|
|
||||||
|
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const isDark = theme.palette.mode === "dark";
|
const isDark = theme.palette.mode === "dark";
|
||||||
@@ -91,11 +76,14 @@ export default function HistoryChartView(props: ViewProps) {
|
|||||||
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,
|
||||||
|
transition: "opacity 0.3s ease",
|
||||||
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography variant="h6" fontWeight={700} gutterBottom>
|
<Typography variant="h6" fontWeight={700} gutterBottom>
|
||||||
{header}
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
{summary && (
|
{summary && (
|
||||||
@@ -105,7 +93,7 @@ export default function HistoryChartView(props: ViewProps) {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
<ToggleButtonGroup value={activeTab} exclusive onChange={handleTabChange} fullWidth sx={{ mb: 4 }}>
|
<ToggleButtonGroup value={activeTab} exclusive onChange={handleTabChange} fullWidth sx={{ mb: 4 }}>
|
||||||
{tabs.map((tab) => (
|
{settings.tabs.map((tab) => (
|
||||||
<ToggleButton key={tab} value={tab}>
|
<ToggleButton key={tab} value={tab}>
|
||||||
{tab}
|
{tab}
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
|
|||||||
@@ -1,56 +1,21 @@
|
|||||||
import { ReportData, Transaction, GroupKey } from "../../features/report";
|
import { ReportData, GroupKey } from "../../features/report";
|
||||||
import {
|
import {
|
||||||
mergeBucketPeriods,
|
|
||||||
periodIdToKey,
|
|
||||||
formatCurrency,
|
formatCurrency,
|
||||||
filterBuckets,
|
extractFilteredTransactions,
|
||||||
} from "../report.helpers";
|
} from "../report.helpers";
|
||||||
import { LatestItem } from "./LatestItems.models";
|
import { LatestItem } from "./LatestItems.models";
|
||||||
|
|
||||||
// ─── Transaction extraction ─────────────────────────────────
|
|
||||||
|
|
||||||
function extractTransactions(
|
|
||||||
reportData: ReportData,
|
|
||||||
selectedPeriodId: string | null,
|
|
||||||
selectedGroupKey: GroupKey | null,
|
|
||||||
mode: "expense" | "income"
|
|
||||||
): Transaction[] {
|
|
||||||
const buckets = filterBuckets(reportData.buckets, selectedGroupKey);
|
|
||||||
if (selectedPeriodId) {
|
|
||||||
const key = periodIdToKey(selectedPeriodId);
|
|
||||||
const periods = mergeBucketPeriods(buckets, key);
|
|
||||||
const selected = periods.find((p) => p.id === selectedPeriodId);
|
|
||||||
|
|
||||||
if (!selected) return [];
|
|
||||||
|
|
||||||
return mode === "expense"
|
|
||||||
? (selected.expenses.transactions || [])
|
|
||||||
: (selected.incomes.transactions || []);
|
|
||||||
}
|
|
||||||
|
|
||||||
const periods = mergeBucketPeriods(buckets, "full");
|
|
||||||
|
|
||||||
if (!periods.length) return [];
|
|
||||||
|
|
||||||
const full = periods[0];
|
|
||||||
|
|
||||||
return mode === "expense"
|
|
||||||
? (full.expenses.transactions || [])
|
|
||||||
: (full.incomes.transactions || []);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ─── Main adapter ────────────────────────────────────────────
|
// ─── Main adapter ────────────────────────────────────────────
|
||||||
|
|
||||||
export function buildLatestItems(
|
export function buildLatestItems(
|
||||||
reportData: ReportData,
|
reportData: ReportData,
|
||||||
selectedPeriodId: string | null,
|
selectedPeriodId: string | null | undefined,
|
||||||
selectedGroupKey: GroupKey | null,
|
selectedGroupKey: GroupKey | null | undefined,
|
||||||
mode: "expense" | "income"
|
flow: "outflows" | "inflows"
|
||||||
): LatestItem[] {
|
): LatestItem[] {
|
||||||
const txns = extractTransactions(reportData, selectedPeriodId, selectedGroupKey, mode);
|
const txns = extractFilteredTransactions(reportData, selectedPeriodId, selectedGroupKey);
|
||||||
|
|
||||||
return txns
|
return txns
|
||||||
.filter((t) => (mode === "expense" ? t.amount < 0 : t.amount >= 0))
|
|
||||||
.sort(
|
.sort(
|
||||||
(a, b) =>
|
(a, b) =>
|
||||||
new Date(b.occurred_at).getTime() -
|
new Date(b.occurred_at).getTime() -
|
||||||
|
|||||||
@@ -5,10 +5,3 @@ export interface LatestItem {
|
|||||||
amount: string;
|
amount: string;
|
||||||
timeAgo: string;
|
timeAgo: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LatestItemsViewProps {
|
|
||||||
items: LatestItem[];
|
|
||||||
accentColor: string;
|
|
||||||
canExpand: boolean;
|
|
||||||
onExpand: () => void;
|
|
||||||
}
|
|
||||||
|
|||||||
10
src/components/LatestItems/LatestItems.props.ts
Normal file
10
src/components/LatestItems/LatestItems.props.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import { ComponentProps } from "../Dashboard";
|
||||||
|
import { LatestItem } from "./LatestItems.models";
|
||||||
|
|
||||||
|
export interface LatestItemsProps extends ComponentProps {}
|
||||||
|
|
||||||
|
export interface LatestItemsViewProps extends LatestItemsProps {
|
||||||
|
items: LatestItem[];
|
||||||
|
canExpand: boolean;
|
||||||
|
onExpand: () => void;
|
||||||
|
}
|
||||||
@@ -1,42 +1,38 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { ReportData, GroupKey } from "../../features/report";
|
|
||||||
import { buildLatestItems } from "./LatestItems.adapter";
|
import { buildLatestItems } from "./LatestItems.adapter";
|
||||||
import LatestItemsView from "./LatestItems.view";
|
import LatestItemsView from "./LatestItems.view";
|
||||||
|
import { LatestItemsProps } from "./LatestItems.props";
|
||||||
|
|
||||||
type Props = {
|
export default function LatestItems(props: LatestItemsProps) {
|
||||||
reportData: ReportData;
|
const {
|
||||||
mode: "expense" | "income";
|
reportData,
|
||||||
selectedPeriodId: string | null;
|
state,
|
||||||
selectedGroupKey?: GroupKey | null;
|
stateSetters,
|
||||||
accentColor: string;
|
isFetching,
|
||||||
};
|
} = props;
|
||||||
|
|
||||||
export default function LatestItems({
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
reportData,
|
|
||||||
mode,
|
|
||||||
selectedPeriodId,
|
|
||||||
selectedGroupKey = null,
|
|
||||||
accentColor,
|
|
||||||
}: Props) {
|
|
||||||
const [visibleCount, setVisibleCount] = React.useState(5);
|
const [visibleCount, setVisibleCount] = React.useState(5);
|
||||||
|
|
||||||
const allItems = React.useMemo(() => {
|
// Reset count when flow changes to start clean
|
||||||
return buildLatestItems(reportData, selectedPeriodId, selectedGroupKey, mode);
|
React.useEffect(() => {
|
||||||
}, [reportData, selectedPeriodId, selectedGroupKey, mode]);
|
setVisibleCount(5);
|
||||||
|
}, [flow]);
|
||||||
|
|
||||||
const hasSelection = Boolean(selectedPeriodId) || Boolean(selectedGroupKey);
|
const allItems = React.useMemo(() => {
|
||||||
|
return buildLatestItems(reportData, selectedPeriodId, selectedGroupKey, flow);
|
||||||
|
}, [reportData, selectedPeriodId, selectedGroupKey, flow]);
|
||||||
|
|
||||||
const visibleItems = React.useMemo(() => {
|
const visibleItems = React.useMemo(() => {
|
||||||
if (!hasSelection) return allItems.slice(0, 5);
|
|
||||||
return allItems.slice(0, visibleCount);
|
return allItems.slice(0, visibleCount);
|
||||||
}, [allItems, hasSelection, visibleCount]);
|
}, [allItems, visibleCount]);
|
||||||
|
|
||||||
const canExpand = hasSelection && visibleCount < allItems.length;
|
const canExpand = visibleCount < allItems.length;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LatestItemsView
|
<LatestItemsView
|
||||||
|
{...props}
|
||||||
items={visibleItems}
|
items={visibleItems}
|
||||||
accentColor={accentColor}
|
|
||||||
canExpand={canExpand}
|
canExpand={canExpand}
|
||||||
onExpand={() => setVisibleCount((prev) => prev + 5)}
|
onExpand={() => setVisibleCount((prev) => prev + 5)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -9,20 +9,25 @@ 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.models";
|
import { LatestItemsViewProps } from "./LatestItems.props";
|
||||||
|
|
||||||
export default function LatestItemsView({
|
export default function LatestItemsView({
|
||||||
items,
|
items,
|
||||||
accentColor,
|
title,
|
||||||
canExpand,
|
canExpand,
|
||||||
onExpand,
|
onExpand,
|
||||||
|
isFetching,
|
||||||
|
colorScheme,
|
||||||
}: LatestItemsViewProps) {
|
}: LatestItemsViewProps) {
|
||||||
|
const accentColor = colorScheme?.primary || "";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ width: "100%", bgcolor: "background.paper", borderRadius: 4, p: 2 }}>
|
<Box sx={{ width: "100%", bgcolor: "background.paper", borderRadius: 4, p: 2, opacity: isFetching ? 0.6 : 1, transition: "opacity 0.3s ease", pointerEvents: isFetching ? "none" : "auto" }}>
|
||||||
<Box sx={{ mb: 2, px: 2 }}>
|
<Box sx={{ mb: 2, px: 2 }}>
|
||||||
<Typography variant="h6" fontWeight="bold">
|
<Typography variant="h6" fontWeight="bold">
|
||||||
Recent Transactions
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
@@ -42,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,
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
export interface ProgressCardProps {
|
|
||||||
header: string;
|
|
||||||
summary?: string;
|
|
||||||
progressAmount: number;
|
|
||||||
totalAmount: number;
|
|
||||||
colorTheme?: "primary" | "secondary" | "error" | "info" | "success" | "warning";
|
|
||||||
compact?: boolean;
|
|
||||||
selected?: boolean;
|
|
||||||
onClick?: () => void;
|
|
||||||
}
|
|
||||||
14
src/components/ProgressCard/ProgressCard.props.ts
Normal file
14
src/components/ProgressCard/ProgressCard.props.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { ComponentProps } from "../Dashboard";
|
||||||
|
|
||||||
|
export interface ProgressCardProps extends ComponentProps {
|
||||||
|
settings: {
|
||||||
|
compact: boolean;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ProgressCardViewProps extends ProgressCardProps {
|
||||||
|
progressAmount: number;
|
||||||
|
totalAmount: number;
|
||||||
|
selected: boolean;
|
||||||
|
onClick: () => void;
|
||||||
|
}
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import ProgressCardView from "./ProgressCard.view";
|
|
||||||
import { ProgressCardProps } from "./ProgressCard.models";
|
|
||||||
import { getPercentage, formatCurrency } from "../report.helpers";
|
|
||||||
|
|
||||||
export default function ProgressCard(props: ProgressCardProps) {
|
|
||||||
const { progressAmount, totalAmount, compact = false } = props;
|
|
||||||
|
|
||||||
const percentage = getPercentage(progressAmount, totalAmount);
|
|
||||||
|
|
||||||
const formattedProgress = formatCurrency(progressAmount);
|
|
||||||
const formattedTotal = formatCurrency(totalAmount);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ProgressCardView
|
|
||||||
{...props}
|
|
||||||
percentage={percentage}
|
|
||||||
formattedProgress={formattedProgress}
|
|
||||||
formattedTotal={formattedTotal}
|
|
||||||
compact={compact}
|
|
||||||
selected={props.selected}
|
|
||||||
onClick={props.onClick}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -8,91 +8,79 @@ import {
|
|||||||
linearProgressClasses
|
linearProgressClasses
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { useTheme, alpha } from "@mui/material/styles";
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
import { ProgressCardProps } from "./ProgressCard.models";
|
import { getPercentage, formatCurrency } from "../report.helpers";
|
||||||
|
import { ProgressCardViewProps } from "./ProgressCard.props";
|
||||||
interface ViewProps extends ProgressCardProps {
|
|
||||||
percentage: number;
|
|
||||||
formattedProgress: string;
|
|
||||||
formattedTotal: string;
|
|
||||||
selected?: boolean;
|
|
||||||
onClick?: () => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function ProgressCardView({
|
export default function ProgressCardView({
|
||||||
header,
|
title,
|
||||||
colorTheme = "info",
|
settings,
|
||||||
percentage,
|
|
||||||
formattedProgress,
|
isFetching,
|
||||||
formattedTotal,
|
|
||||||
compact = false,
|
colorScheme,
|
||||||
|
|
||||||
|
progressAmount,
|
||||||
|
totalAmount,
|
||||||
selected,
|
selected,
|
||||||
onClick,
|
onClick,
|
||||||
}: ViewProps) {
|
}: ProgressCardViewProps) {
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const isDark = theme.palette.mode === "dark";
|
|
||||||
|
const percentage = getPercentage(progressAmount, totalAmount);
|
||||||
|
const formattedProgress = formatCurrency(progressAmount);
|
||||||
|
const formattedTotal = formatCurrency(totalAmount);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Paper
|
<Paper
|
||||||
elevation={compact ? 2 : 4}
|
elevation={settings.compact ? 2 : 4}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
sx={{
|
sx={{
|
||||||
width: "100%",
|
width: "100%",
|
||||||
p: compact ? { xs: 2.5, md: 3 } : { xs: 3, md: 4 },
|
p: settings.compact ? { xs: 2.5, md: 3 } : { xs: 3, md: 4 },
|
||||||
borderRadius: compact ? 3 : 4,
|
borderRadius: settings.compact ? 3 : 4,
|
||||||
cursor: onClick ? "pointer" : "default",
|
|
||||||
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",
|
||||||
background: (theme) => {
|
bgcolor: colorScheme.surface,
|
||||||
const baseColor = theme.palette[colorTheme]?.main || theme.palette.primary.main;
|
color: colorScheme.text,
|
||||||
const lightColor = theme.palette[colorTheme]?.light || theme.palette.primary.light;
|
|
||||||
return isDark
|
|
||||||
? `linear-gradient(135deg, ${alpha(baseColor, 0.9)} 0%, ${alpha(baseColor, 0.3)} 100%)`
|
|
||||||
: `linear-gradient(135deg, ${baseColor} 0%, ${lightColor} 100%)`;
|
|
||||||
},
|
|
||||||
color: "#fff",
|
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
alignItems: compact ? "flex-start" : "center",
|
alignItems: settings.compact ? "flex-start" : "center",
|
||||||
justifyContent: "center",
|
justifyContent: "center",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
border: selected
|
border: selected
|
||||||
? `2px solid #fff`
|
? `2px solid ${colorScheme.primary}`
|
||||||
: isDark ? "1px solid rgba(255,255,255,0.1)" : "none",
|
: "1px solid",
|
||||||
boxShadow: (theme) => {
|
borderColor: selected ? colorScheme.primary : "divider",
|
||||||
const baseShadow = `0 ${compact ? 6 : 12}px ${compact ? 12 : 24}px -10px ${
|
boxShadow: "none",
|
||||||
isDark
|
opacity: isFetching ? 0.6 : 1,
|
||||||
? "rgba(0,0,0,0.5)"
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
: theme.palette[colorTheme]?.main || theme.palette.primary.main
|
|
||||||
}`;
|
|
||||||
return selected
|
|
||||||
? `${baseShadow}, 0 0 0 2px ${theme.palette.background.paper}, 0 0 0 4px ${theme.palette[colorTheme]?.main || theme.palette.primary.main}`
|
|
||||||
: baseShadow;
|
|
||||||
},
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography
|
<Typography
|
||||||
variant={compact ? "body2" : "subtitle1"}
|
variant={settings.compact ? "body2" : "subtitle1"}
|
||||||
fontWeight={700}
|
fontWeight={700}
|
||||||
sx={{
|
sx={{
|
||||||
opacity: 0.95,
|
opacity: 0.95,
|
||||||
mb: compact ? 1.5 : 2,
|
mb: settings.compact ? 1.5 : 2,
|
||||||
width: '100%',
|
width: "100%",
|
||||||
overflow: 'hidden',
|
overflow: "hidden",
|
||||||
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'
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{header}
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Box sx={{ mb: compact ? 2 : 3, width: '100%' }}>
|
<Box sx={{ mb: settings.compact ? 2 : 3, width: "100%" }}>
|
||||||
<Typography
|
<Typography
|
||||||
variant={compact ? "h5" : "h3"}
|
variant={settings.compact ? "h5" : "h3"}
|
||||||
fontWeight={900}
|
fontWeight={900}
|
||||||
sx={{ mb: 0.5, lineHeight: 1.2, textShadow: isDark ? '0 2px 4px rgba(0,0,0,0.3)' : 'none' }}
|
sx={{
|
||||||
|
mb: 0.5,
|
||||||
|
lineHeight: 1.2,
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
{formattedProgress}
|
{formattedProgress}
|
||||||
</Typography>
|
</Typography>
|
||||||
@@ -100,38 +88,38 @@ export default function ProgressCardView({
|
|||||||
<Divider
|
<Divider
|
||||||
sx={{
|
sx={{
|
||||||
my: 1,
|
my: 1,
|
||||||
borderColor: "rgba(255,255,255,0.25)",
|
borderColor: "divider",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Typography
|
<Typography
|
||||||
variant={compact ? "caption" : "body2"}
|
variant={settings.compact ? "caption" : "body2"}
|
||||||
sx={{
|
sx={{
|
||||||
opacity: 0.85,
|
opacity: 0.85,
|
||||||
fontWeight: 500,
|
fontWeight: 500,
|
||||||
display: "block",
|
display: "block",
|
||||||
color: "rgba(255,255,255,0.9)"
|
color: alpha(colorScheme.text, 0.85),
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
of {formattedTotal}
|
of {formattedTotal}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Box sx={{ width: "100%", mt: 'auto' }}>
|
<Box sx={{ width: "100%", mt: "auto" }}>
|
||||||
<LinearProgress
|
<LinearProgress
|
||||||
variant="determinate"
|
variant="determinate"
|
||||||
value={percentage}
|
value={percentage}
|
||||||
sx={{
|
sx={{
|
||||||
height: compact ? 6 : 10,
|
height: settings.compact ? 6 : 10,
|
||||||
borderRadius: 5,
|
borderRadius: 5,
|
||||||
[`&.${linearProgressClasses.colorPrimary}`]: {
|
[`&.${linearProgressClasses.colorPrimary}`]: {
|
||||||
backgroundColor: "rgba(0, 0, 0, 0.25)",
|
backgroundColor: alpha(theme.palette.divider, 0.5),
|
||||||
},
|
},
|
||||||
[`& .${linearProgressClasses.bar}`]: {
|
[`& .${linearProgressClasses.bar}`]: {
|
||||||
borderRadius: 5,
|
borderRadius: 5,
|
||||||
backgroundColor: "#fff",
|
backgroundColor: colorScheme.primary,
|
||||||
boxShadow: '0 0 8px rgba(255,255,255,0.4)'
|
boxShadow: `0 0 8px ${alpha(colorScheme.primary, 0.4)}`,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
31
src/components/ProgressCard/TopPayees.adapter.ts
Normal file
31
src/components/ProgressCard/TopPayees.adapter.ts
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import { GroupKey, ReportData } from "../../features/report";
|
||||||
|
import {
|
||||||
|
extractFilteredTransactions,
|
||||||
|
aggregateTransactions,
|
||||||
|
} from "../report.helpers";
|
||||||
|
|
||||||
|
export interface PayeeItem {
|
||||||
|
name: string;
|
||||||
|
amount: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function extractTopPayees(
|
||||||
|
reportData: ReportData,
|
||||||
|
flow: "outflows" | "inflows",
|
||||||
|
selectedPeriodId?: string | null,
|
||||||
|
selectedGroupKey?: GroupKey | null
|
||||||
|
): { items: PayeeItem[]; total: number } {
|
||||||
|
const txns = extractFilteredTransactions(reportData, selectedPeriodId, selectedGroupKey);
|
||||||
|
|
||||||
|
const { items, total } = aggregateTransactions(txns, (txn) => {
|
||||||
|
if (txn.payee && txn.payee.name) {
|
||||||
|
return [txn.payee.name];
|
||||||
|
}
|
||||||
|
return [];
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
items,
|
||||||
|
total,
|
||||||
|
};
|
||||||
|
}
|
||||||
83
src/components/ProgressCard/TopPayees.tsx
Normal file
83
src/components/ProgressCard/TopPayees.tsx
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import { Box, Paper, Typography } from "@mui/material";
|
||||||
|
import ProgressCardView from "./ProgressCard.view";
|
||||||
|
import { extractTopPayees } from "./TopPayees.adapter";
|
||||||
|
import { ProgressCardProps } from "./ProgressCard.props";
|
||||||
|
|
||||||
|
export default function TopPayees(props: ProgressCardProps) {
|
||||||
|
const {
|
||||||
|
title,
|
||||||
|
|
||||||
|
reportData,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
|
||||||
|
isFetching,
|
||||||
|
} = props
|
||||||
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
|
const { setSelectedGroupKey } = stateSetters;
|
||||||
|
|
||||||
|
const { items, total } = React.useMemo(() => {
|
||||||
|
return extractTopPayees(reportData, flow, selectedPeriodId, selectedGroupKey);
|
||||||
|
}, [reportData, flow, selectedPeriodId, selectedGroupKey]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Paper
|
||||||
|
sx={{
|
||||||
|
p: { xs: 2.5, sm: 4 },
|
||||||
|
borderRadius: 4,
|
||||||
|
width: "100%",
|
||||||
|
boxShadow: "none",
|
||||||
|
border: "1px solid",
|
||||||
|
borderColor: "divider",
|
||||||
|
bgcolor: "background.paper",
|
||||||
|
opacity: isFetching ? 0.6 : 1,
|
||||||
|
transition: "opacity 0.3s ease",
|
||||||
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography variant="h6" fontWeight={700} gutterBottom>
|
||||||
|
{title}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "grid",
|
||||||
|
gridTemplateColumns: {
|
||||||
|
xs: "1fr",
|
||||||
|
sm: "repeat(2, 1fr)",
|
||||||
|
md: "repeat(4, 1fr)",
|
||||||
|
},
|
||||||
|
gap: 2,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{items.map((item) => {
|
||||||
|
const isSelected = !!selectedGroupKey?.payee?.includes(item.name);
|
||||||
|
return (
|
||||||
|
<ProgressCardView
|
||||||
|
{...props}
|
||||||
|
key={item.name}
|
||||||
|
title={item.name}
|
||||||
|
progressAmount={item.amount}
|
||||||
|
totalAmount={total}
|
||||||
|
selected={isSelected}
|
||||||
|
onClick={() => {
|
||||||
|
if (setSelectedGroupKey) {
|
||||||
|
let newKey = selectedGroupKey ? { ...selectedGroupKey } : {};
|
||||||
|
|
||||||
|
if (isSelected) {
|
||||||
|
delete newKey.payee;
|
||||||
|
} else {
|
||||||
|
newKey.payee = [item.name];
|
||||||
|
}
|
||||||
|
|
||||||
|
setSelectedGroupKey(Object.keys(newKey).length ? newKey : null);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
</Paper>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,32 +1,9 @@
|
|||||||
import { ReportData } from "../../features/report";
|
import { ReportData, GroupKey } from "../../features/report";
|
||||||
import {
|
import {
|
||||||
getAmount,
|
extractFilteredTransactions,
|
||||||
DecoratedPeriod,
|
aggregateTransactions,
|
||||||
} from "../report.helpers";
|
} from "../report.helpers";
|
||||||
|
|
||||||
// ─── Helpers ─────────────────────────────────────────────────
|
|
||||||
|
|
||||||
function findPeriod(
|
|
||||||
periods: DecoratedPeriod[],
|
|
||||||
selectedPeriodId?: string | null
|
|
||||||
) {
|
|
||||||
if (!periods.length) return null;
|
|
||||||
|
|
||||||
if (selectedPeriodId) {
|
|
||||||
const match = periods.find((p) => p.id === selectedPeriodId);
|
|
||||||
if (match) return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
// fallback → latest
|
|
||||||
return periods.reduce((latest, p) =>
|
|
||||||
new Date(p.start).getTime() > new Date(latest.start).getTime()
|
|
||||||
? p
|
|
||||||
: latest
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ─── Main adapter ────────────────────────────────────────────
|
|
||||||
|
|
||||||
export interface TagItem {
|
export interface TagItem {
|
||||||
tag: string;
|
tag: string;
|
||||||
amount: number;
|
amount: number;
|
||||||
@@ -34,41 +11,21 @@ export interface TagItem {
|
|||||||
|
|
||||||
export function extractTopTags(
|
export function extractTopTags(
|
||||||
reportData: ReportData,
|
reportData: ReportData,
|
||||||
mode: "expense" | "income",
|
flow: "outflows" | "inflows",
|
||||||
selectedPeriodId?: string | null
|
selectedPeriodId?: string | null,
|
||||||
|
selectedGroupKey?: GroupKey | null
|
||||||
): { items: TagItem[]; total: number } {
|
): { items: TagItem[]; total: number } {
|
||||||
const tagMap = new Map<string, number>();
|
const txns = extractFilteredTransactions(reportData, selectedPeriodId, selectedGroupKey);
|
||||||
|
|
||||||
for (const bucket of reportData.buckets) {
|
const { items, total } = aggregateTransactions(txns, (txn) => {
|
||||||
const tags = bucket.group_key.tags;
|
if (txn.tags && txn.tags.length > 0) {
|
||||||
if (!tags || tags.length === 0) continue;
|
return txn.tags.map((t) => (typeof t === "string" ? t : t.name));
|
||||||
|
|
||||||
// Prefer FULL if available
|
|
||||||
const fullPeriods = (bucket.periods.full || []) as DecoratedPeriod[];
|
|
||||||
|
|
||||||
const periodsToUse = selectedPeriodId
|
|
||||||
? (Object.values(bucket.periods).flat() as DecoratedPeriod[])
|
|
||||||
: fullPeriods;
|
|
||||||
|
|
||||||
const period = findPeriod(periodsToUse, selectedPeriodId);
|
|
||||||
if (!period) continue;
|
|
||||||
|
|
||||||
const amount = getAmount(period, mode);
|
|
||||||
|
|
||||||
for (const tag of tags) {
|
|
||||||
tagMap.set(tag, (tagMap.get(tag) || 0) + amount);
|
|
||||||
}
|
}
|
||||||
}
|
return ["Untagged"];
|
||||||
|
});
|
||||||
|
|
||||||
const arr = Array.from(tagMap.entries()).map(([tag, amount]) => ({
|
return {
|
||||||
tag,
|
items: items.map((item) => ({ tag: item.name, amount: item.amount })),
|
||||||
amount,
|
total,
|
||||||
}));
|
};
|
||||||
|
|
||||||
arr.sort((a, b) => b.amount - a.amount);
|
|
||||||
|
|
||||||
const top = arr.slice(0, 4);
|
|
||||||
const total = top.reduce((sum, t) => sum + t.amount, 0);
|
|
||||||
|
|
||||||
return { items: top, total };
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,61 +1,83 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Box } from "@mui/material";
|
import { Box, Paper, Typography } from "@mui/material";
|
||||||
import { ReportData, GroupKey } from "../../features/report";
|
import ProgressCardView from "./ProgressCard.view";
|
||||||
import ProgressCard from "./ProgressCard";
|
|
||||||
import { extractTopTags } from "./TopTags.adapter";
|
import { extractTopTags } from "./TopTags.adapter";
|
||||||
|
import { ProgressCardProps } from "./ProgressCard.props";
|
||||||
|
|
||||||
type Props = {
|
export default function TopTags(props: ProgressCardProps) {
|
||||||
reportData: ReportData;
|
const {
|
||||||
mode: "expense" | "income";
|
title,
|
||||||
selectedPeriodId?: string | null;
|
|
||||||
selectedGroupKey?: GroupKey | null;
|
reportData,
|
||||||
setSelectedGroupKey?: (key: GroupKey | null) => void;
|
state,
|
||||||
compact?: boolean;
|
stateSetters,
|
||||||
};
|
|
||||||
|
isFetching,
|
||||||
|
} = props
|
||||||
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
|
const { setSelectedGroupKey } = stateSetters;
|
||||||
|
|
||||||
export default function TopTags({
|
|
||||||
reportData,
|
|
||||||
mode,
|
|
||||||
selectedPeriodId,
|
|
||||||
selectedGroupKey,
|
|
||||||
setSelectedGroupKey,
|
|
||||||
compact = true,
|
|
||||||
}: Props) {
|
|
||||||
const { items, total } = React.useMemo(() => {
|
const { items, total } = React.useMemo(() => {
|
||||||
return extractTopTags(reportData, mode, selectedPeriodId);
|
return extractTopTags(reportData, flow, selectedPeriodId, selectedGroupKey);
|
||||||
}, [reportData, mode, selectedPeriodId]);
|
}, [reportData, flow, selectedPeriodId, selectedGroupKey]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box
|
<Paper
|
||||||
sx={{
|
sx={{
|
||||||
display: "grid",
|
p: { xs: 2.5, sm: 4 },
|
||||||
gridTemplateColumns: {
|
borderRadius: 4,
|
||||||
xs: "1fr",
|
width: "100%",
|
||||||
sm: "repeat(2, 1fr)",
|
boxShadow: "none",
|
||||||
md: "repeat(4, 1fr)",
|
border: "1px solid",
|
||||||
},
|
borderColor: "divider",
|
||||||
gap: 2,
|
bgcolor: "background.paper",
|
||||||
|
opacity: isFetching ? 0.6 : 1,
|
||||||
|
transition: "opacity 0.3s ease",
|
||||||
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{items.map((item) => {
|
<Typography variant="h6" fontWeight={700} gutterBottom>
|
||||||
const isSelected = selectedGroupKey?.tags?.includes(item.tag);
|
{title}
|
||||||
return (
|
</Typography>
|
||||||
<ProgressCard
|
|
||||||
key={item.tag}
|
<Box
|
||||||
header={item.tag}
|
sx={{
|
||||||
progressAmount={item.amount}
|
display: "grid",
|
||||||
totalAmount={total}
|
gridTemplateColumns: {
|
||||||
compact={compact}
|
xs: "1fr",
|
||||||
colorTheme={mode === "expense" ? "error" : "success"}
|
sm: "repeat(2, 1fr)",
|
||||||
selected={isSelected}
|
md: "repeat(4, 1fr)",
|
||||||
onClick={() => {
|
},
|
||||||
if (setSelectedGroupKey) {
|
gap: 2,
|
||||||
setSelectedGroupKey(isSelected ? null : { tags: [item.tag] });
|
}}
|
||||||
}
|
>
|
||||||
}}
|
{items.map((item) => {
|
||||||
/>
|
const isSelected = !!selectedGroupKey?.tags?.includes(item.tag);
|
||||||
);
|
return (
|
||||||
})}
|
<ProgressCardView
|
||||||
</Box>
|
{...props}
|
||||||
|
key={item.tag}
|
||||||
|
title={item.tag}
|
||||||
|
progressAmount={item.amount}
|
||||||
|
totalAmount={total}
|
||||||
|
selected={isSelected}
|
||||||
|
onClick={() => {
|
||||||
|
if (setSelectedGroupKey) {
|
||||||
|
let newKey = selectedGroupKey ? { ...selectedGroupKey } : {};
|
||||||
|
|
||||||
|
if (isSelected) {
|
||||||
|
delete newKey.tags;
|
||||||
|
} else {
|
||||||
|
newKey.tags = [item.tag];
|
||||||
|
}
|
||||||
|
|
||||||
|
setSelectedGroupKey(Object.keys(newKey).length ? newKey : null);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
</Paper>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
export { default } from "./ProgressCard";
|
export { default } from "./ProgressCard.view";
|
||||||
export * from "./ProgressCard.models";
|
export * from "./ProgressCard.props";
|
||||||
|
|||||||
@@ -2,11 +2,14 @@ import {
|
|||||||
ReportPeriod,
|
ReportPeriod,
|
||||||
ReportBucket,
|
ReportBucket,
|
||||||
GroupKey,
|
GroupKey,
|
||||||
|
PeriodType,
|
||||||
|
ReportData,
|
||||||
|
Transaction,
|
||||||
} from "../features/report";
|
} from "../features/report";
|
||||||
|
|
||||||
// ─── Types ────────────────────────────────────────────────────
|
// ─── Types ────────────────────────────────────────────────────
|
||||||
|
|
||||||
export type PeriodKey = "weekly" | "monthly" | "yearly" | "fyly" | "full";
|
export type PeriodKey = PeriodType;
|
||||||
|
|
||||||
export type DecoratedPeriod = ReportPeriod & {
|
export type DecoratedPeriod = ReportPeriod & {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -16,11 +19,10 @@ export type DecoratedPeriod = ReportPeriod & {
|
|||||||
// ─── Period helpers ───────────────────────────────────────────
|
// ─── Period helpers ───────────────────────────────────────────
|
||||||
|
|
||||||
const PREFIX_TO_KEY: Record<string, PeriodKey> = {
|
const PREFIX_TO_KEY: Record<string, PeriodKey> = {
|
||||||
|
D: "daily",
|
||||||
W: "weekly",
|
W: "weekly",
|
||||||
M: "monthly",
|
M: "monthly",
|
||||||
Y: "yearly",
|
ALL: "all",
|
||||||
FY: "fyly",
|
|
||||||
FULL: "full",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -29,19 +31,16 @@ const PREFIX_TO_KEY: Record<string, PeriodKey> = {
|
|||||||
*/
|
*/
|
||||||
export function periodIdToKey(periodId: string): PeriodKey {
|
export function periodIdToKey(periodId: string): PeriodKey {
|
||||||
const prefix = periodId.split(":")[0];
|
const prefix = periodId.split(":")[0];
|
||||||
return PREFIX_TO_KEY[prefix] ?? "full";
|
return PREFIX_TO_KEY[prefix] ?? "all";
|
||||||
}
|
}
|
||||||
|
|
||||||
// ─── Metric helpers ───────────────────────────────────────────
|
// ─── Metric helpers ───────────────────────────────────────────
|
||||||
|
|
||||||
export function getAmount(
|
export function getAmount(period: ReportPeriod): number {
|
||||||
period: ReportPeriod,
|
return period.metric.sum;
|
||||||
mode: "expense" | "income"
|
|
||||||
): number {
|
|
||||||
return mode === "expense" ? period.expenses.sum : period.incomes.sum;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function mergeMetric(a: ReportPeriod["expenses"], b: ReportPeriod["expenses"]) {
|
function mergeMetric(a: ReportPeriod["metric"], b: ReportPeriod["metric"]) {
|
||||||
const sum = a.sum + b.sum;
|
const sum = a.sum + b.sum;
|
||||||
const count = a.count + b.count;
|
const count = a.count + b.count;
|
||||||
|
|
||||||
@@ -78,14 +77,12 @@ export function mergeBucketPeriods(
|
|||||||
if (!existing) {
|
if (!existing) {
|
||||||
map.set(p.id, {
|
map.set(p.id, {
|
||||||
...p,
|
...p,
|
||||||
expenses: { ...p.expenses },
|
metric: { ...p.metric },
|
||||||
incomes: { ...p.incomes },
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
map.set(p.id, {
|
map.set(p.id, {
|
||||||
...existing,
|
...existing,
|
||||||
expenses: mergeMetric(existing.expenses, p.expenses),
|
metric: mergeMetric(existing.metric, p.metric),
|
||||||
incomes: mergeMetric(existing.incomes, p.incomes),
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -126,7 +123,7 @@ export function matchesGroupKey(
|
|||||||
selected: GroupKey
|
selected: GroupKey
|
||||||
): boolean {
|
): boolean {
|
||||||
for (const [dim, values] of Object.entries(selected)) {
|
for (const [dim, values] of Object.entries(selected)) {
|
||||||
const bucketValues = bucket.group_key[dim as keyof GroupKey];
|
const bucketValues = bucket.group_key[dim];
|
||||||
if (!bucketValues) return false;
|
if (!bucketValues) return false;
|
||||||
if (!(values as string[]).every((v) => bucketValues.includes(v)))
|
if (!(values as string[]).every((v) => bucketValues.includes(v)))
|
||||||
return false;
|
return false;
|
||||||
@@ -145,3 +142,89 @@ export function filterBuckets(
|
|||||||
if (!selectedGroupKey) return buckets;
|
if (!selectedGroupKey) return buckets;
|
||||||
return buckets.filter((b) => matchesGroupKey(b, selectedGroupKey));
|
return buckets.filter((b) => matchesGroupKey(b, selectedGroupKey));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function extractFilteredTransactions(
|
||||||
|
reportData: ReportData,
|
||||||
|
selectedPeriodId: string | null | undefined,
|
||||||
|
selectedGroupKey: GroupKey | null | undefined
|
||||||
|
): Transaction[] {
|
||||||
|
let txns: Transaction[] = [];
|
||||||
|
|
||||||
|
if (selectedPeriodId) {
|
||||||
|
const key = periodIdToKey(selectedPeriodId);
|
||||||
|
const periods = mergeBucketPeriods(reportData.buckets, key);
|
||||||
|
const selected = periods.find((p) => p.id === selectedPeriodId);
|
||||||
|
txns = selected?.metric.transactions || [];
|
||||||
|
} else {
|
||||||
|
const periods = mergeBucketPeriods(reportData.buckets, "all");
|
||||||
|
if (periods.length > 0) {
|
||||||
|
const period = periods.reduce((latest, p) =>
|
||||||
|
new Date(p.start).getTime() > new Date(latest.start).getTime()
|
||||||
|
? p
|
||||||
|
: latest
|
||||||
|
, periods[0]);
|
||||||
|
txns = period?.metric.transactions || [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (selectedGroupKey) {
|
||||||
|
txns = txns.filter((txn) => {
|
||||||
|
let match = true;
|
||||||
|
if (selectedGroupKey.tags && selectedGroupKey.tags.length > 0) {
|
||||||
|
if (!txn.tags) {
|
||||||
|
match = false;
|
||||||
|
} else {
|
||||||
|
const txnTags = txn.tags.map((t: any) =>
|
||||||
|
typeof t === "string" ? t : t.name
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
!selectedGroupKey.tags.every((selectedTag) =>
|
||||||
|
txnTags.includes(selectedTag)
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
match = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (match && selectedGroupKey.payee && selectedGroupKey.payee.length > 0) {
|
||||||
|
if (!txn.payee || !txn.payee.name) {
|
||||||
|
match = false;
|
||||||
|
} else {
|
||||||
|
if (!selectedGroupKey.payee.includes(txn.payee.name)) {
|
||||||
|
match = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return match;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return txns;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function aggregateTransactions(
|
||||||
|
transactions: Transaction[],
|
||||||
|
keyExtractor: (txn: Transaction) => string[],
|
||||||
|
limit = 4
|
||||||
|
): { items: { name: string; amount: number }[]; total: number } {
|
||||||
|
const map = new Map<string, number>();
|
||||||
|
|
||||||
|
for (const txn of transactions) {
|
||||||
|
const keys = keyExtractor(txn);
|
||||||
|
for (const key of keys) {
|
||||||
|
map.set(key, (map.get(key) || 0) + txn.amount);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const items = Array.from(map.entries()).map(([name, amount]) => ({
|
||||||
|
name,
|
||||||
|
amount,
|
||||||
|
}));
|
||||||
|
|
||||||
|
items.sort((a, b) => b.amount - a.amount);
|
||||||
|
|
||||||
|
const top = items.slice(0, limit);
|
||||||
|
const total = top.reduce((sum, item) => sum + item.amount, 0);
|
||||||
|
|
||||||
|
return { items: top, total };
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import HistoryChart from "./components/HistoryChart";
|
|||||||
import LatestItems from "./components/LatestItems";
|
import LatestItems from "./components/LatestItems";
|
||||||
import { DashboardConfig } from "./components/Dashboard";
|
import { DashboardConfig } from "./components/Dashboard";
|
||||||
import TopTags from "./components/ProgressCard/TopTags";
|
import TopTags from "./components/ProgressCard/TopTags";
|
||||||
|
import TopPayees from "./components/ProgressCard/TopPayees";
|
||||||
|
|
||||||
export const configuration: DashboardConfig = {
|
export const configuration: DashboardConfig = {
|
||||||
sections: [
|
sections: [
|
||||||
@@ -12,10 +13,6 @@ export const configuration: DashboardConfig = {
|
|||||||
component: HistoryChart,
|
component: HistoryChart,
|
||||||
settings: {
|
settings: {
|
||||||
tabs: ["Weekly", "Monthly"],
|
tabs: ["Weekly", "Monthly"],
|
||||||
// tabs: ["Weekly", "Monthly", "Yearly", "Financial Year", "All Time"],
|
|
||||||
},
|
|
||||||
style: {
|
|
||||||
size: 12,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -25,44 +22,19 @@ export const configuration: DashboardConfig = {
|
|||||||
settings: {
|
settings: {
|
||||||
compact: true,
|
compact: true,
|
||||||
},
|
},
|
||||||
style: {
|
},
|
||||||
size: 12,
|
{
|
||||||
|
id: "top-payees",
|
||||||
|
title: 'Top Payees',
|
||||||
|
component: TopPayees,
|
||||||
|
settings: {
|
||||||
|
compact: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "items",
|
id: "items",
|
||||||
|
title: 'Recent Transactions',
|
||||||
component: LatestItems,
|
component: LatestItems,
|
||||||
style: {
|
|
||||||
size: 12,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
style: {
|
|
||||||
palette: {
|
|
||||||
expense: {
|
|
||||||
light: {
|
|
||||||
primary: "#d32f2f",
|
|
||||||
background: "#fdecea",
|
|
||||||
text: "#b71c1c"
|
|
||||||
},
|
|
||||||
dark: {
|
|
||||||
primary: "#f44336",
|
|
||||||
background: "rgba(244, 67, 54, 0.15)",
|
|
||||||
text: "#ffcdd2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
income: {
|
|
||||||
light: {
|
|
||||||
primary: "#2e7d32",
|
|
||||||
background: "#e8f5e9",
|
|
||||||
text: "#1b5e20"
|
|
||||||
},
|
|
||||||
dark: {
|
|
||||||
primary: "#4caf50",
|
|
||||||
background: "rgba(76, 175, 80, 0.15)",
|
|
||||||
text: "#c8e6c9"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,7 +6,9 @@ export type {
|
|||||||
ReportData,
|
ReportData,
|
||||||
ReportBucket,
|
ReportBucket,
|
||||||
ReportPeriod,
|
ReportPeriod,
|
||||||
|
ReportQuery,
|
||||||
GroupKey,
|
GroupKey,
|
||||||
|
PeriodType,
|
||||||
} from './report.models'
|
} from './report.models'
|
||||||
export {
|
export {
|
||||||
prepareReport
|
prepareReport
|
||||||
|
|||||||
@@ -1,29 +1,40 @@
|
|||||||
export interface Payor {
|
export interface Payor {
|
||||||
|
id?: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
username: string;
|
||||||
|
email: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Payee {
|
export interface Payee {
|
||||||
|
type: "merchant" | "person" | "transfer" | "other";
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Account {
|
export interface Account {
|
||||||
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
number: string;
|
number: string;
|
||||||
|
type: "cash" | "bank" | "credit_card" | "wallet" | "other";
|
||||||
|
currency: string;
|
||||||
|
is_active?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Tag {
|
export interface Tag {
|
||||||
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
icon: string;
|
icon: string;
|
||||||
description: string;
|
parent_id?: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Transaction {
|
export interface Transaction {
|
||||||
|
id: string;
|
||||||
payor: Payor;
|
payor: Payor;
|
||||||
payee: Payee;
|
payee: Payee;
|
||||||
amount: number;
|
amount: number;
|
||||||
account: Account;
|
account: Account;
|
||||||
tags: Tag[];
|
tags: Tag[];
|
||||||
occurred_at: Date;
|
occurred_at: string;
|
||||||
|
created_at: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------
|
// -----------------------------
|
||||||
@@ -41,12 +52,12 @@ export interface ReportMetric {
|
|||||||
// Period
|
// Period
|
||||||
// -----------------------------
|
// -----------------------------
|
||||||
|
|
||||||
export interface ReportPeriod {
|
export type PeriodType = "daily" | "weekly" | "monthly" | "all";
|
||||||
start: Date;
|
|
||||||
end: Date;
|
|
||||||
|
|
||||||
expenses: ReportMetric;
|
export interface ReportPeriod {
|
||||||
incomes: ReportMetric;
|
start: string;
|
||||||
|
end: string;
|
||||||
|
metric: ReportMetric;
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------
|
// -----------------------------
|
||||||
@@ -54,37 +65,48 @@ export interface ReportPeriod {
|
|||||||
// -----------------------------
|
// -----------------------------
|
||||||
|
|
||||||
export type GroupKey = {
|
export type GroupKey = {
|
||||||
payee?: string[];
|
[dimension: string]: string[];
|
||||||
tags?: string[];
|
|
||||||
flow?: string[];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface ReportBucket {
|
export interface ReportBucket {
|
||||||
group_key: GroupKey;
|
group_key: GroupKey;
|
||||||
|
|
||||||
periods: {
|
periods: {
|
||||||
|
daily?: ReportPeriod[];
|
||||||
weekly?: ReportPeriod[];
|
weekly?: ReportPeriod[];
|
||||||
monthly?: ReportPeriod[];
|
monthly?: ReportPeriod[];
|
||||||
yearly?: ReportPeriod[];
|
all?: ReportPeriod[];
|
||||||
fyly?: ReportPeriod[];
|
|
||||||
full?: ReportPeriod[];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -----------------------------
|
||||||
|
// Report Query
|
||||||
|
// -----------------------------
|
||||||
|
|
||||||
|
export interface ReportQuery {
|
||||||
|
accounts?: string[] | null;
|
||||||
|
ignore_self?: boolean | null;
|
||||||
|
start_date?: string | null;
|
||||||
|
end_date?: string | null;
|
||||||
|
min_amount?: number | null;
|
||||||
|
max_amount?: number | null;
|
||||||
|
}
|
||||||
|
|
||||||
// -----------------------------
|
// -----------------------------
|
||||||
// Final Report
|
// Final Report
|
||||||
// -----------------------------
|
// -----------------------------
|
||||||
|
|
||||||
export interface ReportData {
|
export interface ReportData {
|
||||||
periods: ("weekly" | "monthly" | "yearly" | "fyly" | "full")[];
|
snapshot_id?: string | null;
|
||||||
|
|
||||||
rolling: boolean;
|
flow?: "inflows" | "outflows" | null;
|
||||||
report_date?: string;
|
|
||||||
|
|
||||||
group_by: ("payee" | "tags")[];
|
periods: PeriodType[];
|
||||||
|
|
||||||
ignore_self: boolean;
|
tags?: string[] | null;
|
||||||
include_transactions: boolean;
|
payee?: string[] | null;
|
||||||
|
|
||||||
buckets: ReportBucket[];
|
buckets: ReportBucket[];
|
||||||
|
|
||||||
|
query: ReportQuery;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import {
|
import {
|
||||||
ReportData,
|
ReportData,
|
||||||
ReportPeriod
|
ReportPeriod,
|
||||||
|
PeriodType,
|
||||||
} from "./report.models";
|
} from "./report.models";
|
||||||
|
|
||||||
/* ---------- ID BUILDING ---------- */
|
/* ---------- ID BUILDING ---------- */
|
||||||
@@ -13,7 +14,7 @@ function formatDate(d: Date): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function buildPeriodId(
|
function buildPeriodId(
|
||||||
type: "weekly" | "monthly" | "yearly" | "fyly" | "full",
|
type: PeriodType,
|
||||||
start: Date,
|
start: Date,
|
||||||
end: Date
|
end: Date
|
||||||
): string {
|
): string {
|
||||||
@@ -21,16 +22,14 @@ function buildPeriodId(
|
|||||||
const e = formatDate(end);
|
const e = formatDate(end);
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
case "daily":
|
||||||
|
return `D:${s}_${e}`;
|
||||||
case "weekly":
|
case "weekly":
|
||||||
return `W:${s}_${e}`;
|
return `W:${s}_${e}`;
|
||||||
case "monthly":
|
case "monthly":
|
||||||
return `M:${s}_${e}`;
|
return `M:${s}_${e}`;
|
||||||
case "yearly":
|
case "all":
|
||||||
return `Y:${s}_${e}`;
|
return `ALL:${s}_${e}`;
|
||||||
case "fyly":
|
|
||||||
return `FY:${s}_${e}`;
|
|
||||||
case "full":
|
|
||||||
return `FULL:${s}_${e}`;
|
|
||||||
default:
|
default:
|
||||||
return `${s}_${e}`;
|
return `${s}_${e}`;
|
||||||
}
|
}
|
||||||
@@ -60,19 +59,15 @@ const yearFmt = new Intl.DateTimeFormat("en-GB", {
|
|||||||
timeZone: "UTC",
|
timeZone: "UTC",
|
||||||
});
|
});
|
||||||
|
|
||||||
function sameMonth(a: Date, b: Date) {
|
|
||||||
return (
|
|
||||||
a.getUTCFullYear() === b.getUTCFullYear() &&
|
|
||||||
a.getUTCMonth() === b.getUTCMonth()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildLabel(
|
function buildLabel(
|
||||||
type: "weekly" | "monthly" | "yearly" | "fyly" | "full",
|
type: PeriodType,
|
||||||
start: Date,
|
start: Date,
|
||||||
end: Date
|
end: Date
|
||||||
): string {
|
): string {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
case "daily":
|
||||||
|
return dayFmt.format(start);
|
||||||
|
|
||||||
case "weekly": {
|
case "weekly": {
|
||||||
const sDay = start.getUTCDate();
|
const sDay = start.getUTCDate();
|
||||||
const m = monthFmt.format(start);
|
const m = monthFmt.format(start);
|
||||||
@@ -82,15 +77,6 @@ function buildLabel(
|
|||||||
case "monthly":
|
case "monthly":
|
||||||
return `${monthFmt.format(start)} ${yearFmt.format(start)}`;
|
return `${monthFmt.format(start)} ${yearFmt.format(start)}`;
|
||||||
|
|
||||||
case "yearly":
|
|
||||||
return yearFmt.format(start);
|
|
||||||
|
|
||||||
case "fyly": {
|
|
||||||
const startY = start.getUTCFullYear();
|
|
||||||
const endY = end.getUTCFullYear();
|
|
||||||
return `FY ${startY}–${String(endY).slice(-2)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return `${monthDayFmt.format(start)} - ${monthDayFmt.format(end)}`;
|
return `${monthDayFmt.format(start)} - ${monthDayFmt.format(end)}`;
|
||||||
}
|
}
|
||||||
@@ -99,7 +85,7 @@ function buildLabel(
|
|||||||
/* ---------- MAIN ---------- */
|
/* ---------- MAIN ---------- */
|
||||||
|
|
||||||
function decoratePeriods(
|
function decoratePeriods(
|
||||||
type: "weekly" | "monthly" | "yearly" | "fyly" | "full",
|
type: PeriodType,
|
||||||
periods: ReportPeriod[]
|
periods: ReportPeriod[]
|
||||||
): (ReportPeriod & { id: string; label: string })[] {
|
): (ReportPeriod & { id: string; label: string })[] {
|
||||||
return periods.map((p) => ({
|
return periods.map((p) => ({
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
import { useResourceByName } from "../../../react-openapi";
|
import { useResourceByName } from "../../../react-openapi";
|
||||||
|
|
||||||
export interface ReportParams {
|
export interface ReportParams {
|
||||||
periods?: ("weekly" | "monthly" | "yearly" | "fyly" | "full")[];
|
snapshot_id?: string;
|
||||||
rolling?: boolean;
|
periods?: ("daily" | "weekly" | "monthly" | "all")[];
|
||||||
report_date?: string;
|
flow?: "inflows" | "outflows";
|
||||||
group_by?: ("payee" | "tags")[];
|
payee?: string[];
|
||||||
ignore_self?: boolean;
|
tags?: string[];
|
||||||
include_transactions?: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useReport(params: ReportParams) {
|
export function useReport(params: ReportParams) {
|
||||||
@@ -15,6 +14,5 @@ export function useReport(params: ReportParams) {
|
|||||||
return useList({
|
return useList({
|
||||||
...params,
|
...params,
|
||||||
periods: params.periods,
|
periods: params.periods,
|
||||||
group_by: params.group_by,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|
||||||
|
components: {
|
||||||
|
...inputsCustomizations,
|
||||||
|
...dataDisplayCustomizations,
|
||||||
|
...feedbackCustomizations,
|
||||||
|
...navigationCustomizations,
|
||||||
|
...surfacesCustomizations,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
[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: {
|
|
||||||
...inputsCustomizations,
|
|
||||||
...dataDisplayCustomizations,
|
|
||||||
...feedbackCustomizations,
|
|
||||||
...navigationCustomizations,
|
|
||||||
...surfacesCustomizations,
|
|
||||||
...themeComponents,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}, [disableCustomTheme, themeComponents]);
|
|
||||||
if (disableCustomTheme) {
|
|
||||||
return <React.Fragment>{children}</React.Fragment>;
|
|
||||||
}
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider theme={theme} disableTransitionOnChange>
|
<ColorModeContext.Provider value={contextValue}>
|
||||||
{children}
|
<ThemeProvider theme={theme}>
|
||||||
</ThemeProvider>
|
<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}
|
||||||
|
</Box>
|
||||||
|
</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