# Dashboard State Lift + Theme System Refactor ## Summary Refactored dashboard state ownership, centralized theme semantics, and simplified component styling across the application. ## Changes ### Dashboard State Refactor * Moved dashboard state management from `Dashboard.view` into `Dashboard.tsx` * Added centralized `DashboardState` initialization in parent container * Introduced memoized dashboard state setter callbacks: * `toggleFlow` * `setFlow` * `togglePeriodType` * `toggleComparison` * `setSelectedPeriodId` * `setSelectedGroupKey` * Added `DashboardStateSetters` memoized object for prop-driven state management * Removed `onFlowChange` callback pattern * Converted dashboard component into stateless view layer * Renamed component export flow: * `Dashboard.tsx` → removed * `Dashboard.view.tsx` → primary implementation ### Dashboard Models Cleanup * Removed legacy palette configuration interfaces: * `ColorDefinition` * `ThemeAwarePalette` * Removed config-level style palette support from `DashboardConfig` * Renamed `DashboardProps` → `DashboardViewProps` * Added reusable `ColorScheme` interface * Simplified component color contract: * `primary` * `surface` * `text` ### Theme Architecture Refactor * Moved `AppTheme.tsx` into `shared-theme` * Added centralized semantic theme system * Introduced `themeConfig.ts` with semantic tokens: * surface * border * text * Added `semantic` extension to MUI theme typing * Added `flows` palette extension: * outflows * inflows * Centralized flow colors inside theme primitives * Added CSS semantic variables: * `--bg-page` * `--bg-card` * `--bg-elevated` * `--border-default` * `--border-subtle` * `--text-primary` * `--text-secondary` * `--text-muted` ### Theme Mode Improvements * Added explicit `ColorMode` type * Expanded `ColorModeContext`: * `mode` * `setMode` * `toggleColorMode` * Added `CssBaseline` * Added configurable `defaultMode` * Simplified dark theme palette handling * Standardized dark surfaces and shadows * Reduced excessive dark-mode glow/shadow intensity ### Dashboard UI Styling Improvements * Replaced hardcoded dashboard palette config with theme palette usage * Updated dashboard background gradients to use alpha-based semantic colors * Replaced `colorScheme.light` usage with `colorScheme.surface` * Standardized border usage with theme divider tokens * Removed manual dark-mode conditional styling where redundant * Simplified card and progress styling logic ### Shared Theme Customization Cleanup Updated customization layers for improved consistency: * `inputs` * `navigation` * `feedback` * `surfaces` Key improvements: * Reduced dark-mode contrast harshness * Unified divider usage * Replaced hardcoded grayscale backgrounds with semantic surfaces * Simplified hover and active state styling * Reduced shadow intensity across components * Improved dark-mode readability and layering ### Home Page Styling Cleanup * Replaced manual RGBA handling with `alpha()` utility * Improved dark-mode glassmorphism consistency * Updated CTA hover shadow to use theme primary color ### Miscellaneous Cleanup * Updated imports to new theme structure * Removed unused legacy color mode components: * `ColorModeIconDropdown.tsx` * `ColorModeSelect.tsx` * Removed dashboard config style palette definitions * Simplified flow-based color derivation logic ## Result * Cleaner separation of stateful vs presentational dashboard logic * Centralized semantic theming system * Consistent dark/light mode behavior * Reduced styling duplication * Improved maintainability and extensibility of theme architecture * Simplified dashboard component contracts * Better UI consistency across surfaces and controls Reviewed-on: #6 Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com> Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
130 lines
3.4 KiB
TypeScript
130 lines
3.4 KiB
TypeScript
import * as React from "react";
|
|
import {
|
|
Box,
|
|
Typography,
|
|
Paper,
|
|
LinearProgress,
|
|
Divider,
|
|
linearProgressClasses
|
|
} from "@mui/material";
|
|
import { useTheme, alpha } from "@mui/material/styles";
|
|
import { getPercentage, formatCurrency } from "../report.helpers";
|
|
import { ProgressCardViewProps } from "./ProgressCard.props";
|
|
|
|
export default function ProgressCardView({
|
|
title,
|
|
settings,
|
|
|
|
isFetching,
|
|
|
|
colorScheme,
|
|
|
|
progressAmount,
|
|
totalAmount,
|
|
selected,
|
|
onClick,
|
|
}: ProgressCardViewProps) {
|
|
const theme = useTheme();
|
|
|
|
const percentage = getPercentage(progressAmount, totalAmount);
|
|
const formattedProgress = formatCurrency(progressAmount);
|
|
const formattedTotal = formatCurrency(totalAmount);
|
|
|
|
return (
|
|
<Paper
|
|
elevation={settings.compact ? 2 : 4}
|
|
onClick={onClick}
|
|
sx={{
|
|
width: "100%",
|
|
p: settings.compact ? { xs: 2.5, md: 3 } : { xs: 3, md: 4 },
|
|
borderRadius: settings.compact ? 3 : 4,
|
|
transform: selected ? "scale(1.02)" : "scale(1)",
|
|
transition: "transform 0.2s ease, box-shadow 0.2s ease",
|
|
bgcolor: colorScheme.surface,
|
|
color: colorScheme.text,
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: settings.compact ? "flex-start" : "center",
|
|
justifyContent: "center",
|
|
position: "relative",
|
|
overflow: "hidden",
|
|
border: selected
|
|
? `2px solid ${colorScheme.primary}`
|
|
: "1px solid",
|
|
borderColor: selected ? colorScheme.primary : "divider",
|
|
boxShadow: "none",
|
|
opacity: isFetching ? 0.6 : 1,
|
|
pointerEvents: isFetching ? "none" : "auto",
|
|
}}
|
|
>
|
|
<Typography
|
|
variant={settings.compact ? "body2" : "subtitle1"}
|
|
fontWeight={700}
|
|
sx={{
|
|
opacity: 0.95,
|
|
mb: settings.compact ? 1.5 : 2,
|
|
width: "100%",
|
|
overflow: "hidden",
|
|
textOverflow: "ellipsis",
|
|
whiteSpace: "nowrap",
|
|
letterSpacing: 0.5,
|
|
}}
|
|
>
|
|
{title}
|
|
</Typography>
|
|
|
|
<Box sx={{ mb: settings.compact ? 2 : 3, width: "100%" }}>
|
|
<Typography
|
|
variant={settings.compact ? "h5" : "h3"}
|
|
fontWeight={900}
|
|
sx={{
|
|
mb: 0.5,
|
|
lineHeight: 1.2,
|
|
}}
|
|
>
|
|
{formattedProgress}
|
|
</Typography>
|
|
|
|
<Divider
|
|
sx={{
|
|
my: 1,
|
|
borderColor: "divider",
|
|
width: "100%",
|
|
}}
|
|
/>
|
|
|
|
<Typography
|
|
variant={settings.compact ? "caption" : "body2"}
|
|
sx={{
|
|
opacity: 0.85,
|
|
fontWeight: 500,
|
|
display: "block",
|
|
color: alpha(colorScheme.text, 0.85),
|
|
}}
|
|
>
|
|
of {formattedTotal}
|
|
</Typography>
|
|
</Box>
|
|
|
|
<Box sx={{ width: "100%", mt: "auto" }}>
|
|
<LinearProgress
|
|
variant="determinate"
|
|
value={percentage}
|
|
sx={{
|
|
height: settings.compact ? 6 : 10,
|
|
borderRadius: 5,
|
|
[`&.${linearProgressClasses.colorPrimary}`]: {
|
|
backgroundColor: alpha(theme.palette.divider, 0.5),
|
|
},
|
|
[`& .${linearProgressClasses.bar}`]: {
|
|
borderRadius: 5,
|
|
backgroundColor: colorScheme.primary,
|
|
boxShadow: `0 0 8px ${alpha(colorScheme.primary, 0.4)}`,
|
|
},
|
|
}}
|
|
/>
|
|
</Box>
|
|
</Paper>
|
|
);
|
|
}
|