Compare commits
24 Commits
f025a7d9bf
...
0.2.1
| Author | SHA1 | Date | |
|---|---|---|---|
| d8c6c3cdb3 | |||
| 8f57bd1745 | |||
| 44c42892d8 | |||
| 7de8914283 | |||
| d767cf0a23 | |||
| 6fe70496c0 | |||
| fa32ab17de | |||
| a8f5789c03 | |||
| e1b8f4e0c3 | |||
| 6fc24001a7 | |||
| 6803fb6b56 | |||
| 4a3428ed8f | |||
| 170769c317 | |||
| 653c8caecf | |||
| a3970d6a7b | |||
| 7ab5ce74b3 | |||
| 3a72985efb | |||
| 220c84776f | |||
| cccb4604fd | |||
| a1ff2c692c | |||
| 16d164b92a | |||
| 8bea3d06f6 | |||
| ad62d7dd9c | |||
| 77b60ba073 |
@@ -9,6 +9,7 @@
|
|||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
|
||||||
/>
|
/>
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
|
||||||
<title>khata - Aetoskia</title>
|
<title>khata - Aetoskia</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
BIN
public/favicon.png
Normal file
BIN
public/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
@@ -49,8 +49,8 @@ export default function EnhancedTable({
|
|||||||
config,
|
config,
|
||||||
data,
|
data,
|
||||||
total,
|
total,
|
||||||
paginationModel,
|
paginationModel: externalPaginationModel,
|
||||||
onPaginationModelChange,
|
onPaginationModelChange: externalOnPaginationModelChange,
|
||||||
loading = false,
|
loading = false,
|
||||||
onEdit,
|
onEdit,
|
||||||
onDelete,
|
onDelete,
|
||||||
@@ -60,6 +60,14 @@ export default function EnhancedTable({
|
|||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const isMobile = useMediaQuery(theme.breakpoints.down('md'));
|
const isMobile = useMediaQuery(theme.breakpoints.down('md'));
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const isServer = config.filterOptions?.mode !== "client";
|
||||||
|
const [internalPaginationModel, setInternalPaginationModel] = React.useState<GridPaginationModel>({
|
||||||
|
page: 0,
|
||||||
|
pageSize: 10,
|
||||||
|
});
|
||||||
|
const paginationModel = isServer ? externalPaginationModel : internalPaginationModel;
|
||||||
|
const onPaginationModelChange = isServer ? externalOnPaginationModelChange : setInternalPaginationModel;
|
||||||
|
|
||||||
const columns: GridColDef[] = React.useMemo(() => {
|
const columns: GridColDef[] = React.useMemo(() => {
|
||||||
const cols: GridColDef[] = Object.entries(config.fields).map(([key, field]) => {
|
const cols: GridColDef[] = Object.entries(config.fields).map(([key, field]) => {
|
||||||
@@ -122,6 +130,15 @@ export default function EnhancedTable({
|
|||||||
return cols;
|
return cols;
|
||||||
}, [config, onDelete, navigate, onNavigateToResource]);
|
}, [config, onDelete, navigate, onNavigateToResource]);
|
||||||
|
|
||||||
|
const mobilePageSize = 10;
|
||||||
|
const [mobilePage, setMobilePage] = React.useState(0);
|
||||||
|
const mobileTotalPages = Math.ceil(data.length / mobilePageSize) || 1;
|
||||||
|
const mobileData = data.slice(mobilePage * mobilePageSize, (mobilePage + 1) * mobilePageSize);
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (mobilePage >= mobileTotalPages) setMobilePage(0);
|
||||||
|
}, [data.length, mobilePage, mobileTotalPages]);
|
||||||
|
|
||||||
if (isMobile) {
|
if (isMobile) {
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
@@ -132,7 +149,7 @@ export default function EnhancedTable({
|
|||||||
</Button>
|
</Button>
|
||||||
</Box>
|
</Box>
|
||||||
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 2 }}>
|
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 2 }}>
|
||||||
{data.map((row) => (
|
{mobileData.map((row) => (
|
||||||
<Box key={row[config.primaryKey] || Math.random()}>
|
<Box key={row[config.primaryKey] || Math.random()}>
|
||||||
<MobileCardRow
|
<MobileCardRow
|
||||||
row={row}
|
row={row}
|
||||||
@@ -145,6 +162,17 @@ export default function EnhancedTable({
|
|||||||
</Box>
|
</Box>
|
||||||
))}
|
))}
|
||||||
</Box>
|
</Box>
|
||||||
|
<Box sx={{ display: 'flex', justifyContent: 'center', gap: 1, mt: 2, flexWrap: 'wrap' }}>
|
||||||
|
<Button size="small" disabled={mobilePage === 0} onClick={() => setMobilePage(mobilePage - 1)}>
|
||||||
|
Previous
|
||||||
|
</Button>
|
||||||
|
<Typography variant="body2" sx={{ alignSelf: 'center', px: 1 }}>
|
||||||
|
Page {mobilePage + 1} of {mobileTotalPages}
|
||||||
|
</Typography>
|
||||||
|
<Button size="small" disabled={mobilePage >= mobileTotalPages - 1} onClick={() => setMobilePage(mobilePage + 1)}>
|
||||||
|
Next
|
||||||
|
</Button>
|
||||||
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -161,20 +189,18 @@ export default function EnhancedTable({
|
|||||||
rows={data || []}
|
rows={data || []}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
autoHeight
|
autoHeight
|
||||||
paginationMode={config.pagination ? 'server' : 'client'}
|
paginationMode={isServer ? 'server' : 'client'}
|
||||||
rowCount={(() => {
|
{...(isServer ? {
|
||||||
if (!config.pagination) return data.length;
|
rowCount: (() => {
|
||||||
if (total !== undefined) return total;
|
if (total !== undefined) return total;
|
||||||
|
const page = paginationModel?.page || 0;
|
||||||
// Graceful fallback for missing total count
|
const pageSize = paginationModel?.pageSize || 10;
|
||||||
const page = paginationModel?.page || 0;
|
if (data.length < pageSize) {
|
||||||
const pageSize = paginationModel?.pageSize || 10;
|
return page * pageSize + data.length;
|
||||||
if (data.length < pageSize) {
|
}
|
||||||
return page * pageSize + data.length;
|
return (page + 2) * pageSize;
|
||||||
}
|
})(),
|
||||||
// Enable 'Next' button by pretending there's at least one more page
|
} : {})}
|
||||||
return (page + 2) * pageSize;
|
|
||||||
})()}
|
|
||||||
loading={loading}
|
loading={loading}
|
||||||
paginationModel={paginationModel || { page: 0, pageSize: 10 }}
|
paginationModel={paginationModel || { page: 0, pageSize: 10 }}
|
||||||
onPaginationModelChange={onPaginationModelChange}
|
onPaginationModelChange={onPaginationModelChange}
|
||||||
@@ -234,7 +260,7 @@ function MobileCardRow({ row, config, onDelete, onNavigate, navigate }: any) {
|
|||||||
<Typography variant="caption" color="text.secondary" sx={{ display: 'block' }}>
|
<Typography variant="caption" color="text.secondary" sx={{ display: 'block' }}>
|
||||||
{field.label}
|
{field.label}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography variant="body2" sx={{ fontWeight: 500, wordBreak: 'break-all' }}>
|
<Typography variant="body2" component="div" sx={{ fontWeight: 500, wordBreak: 'break-all' }}>
|
||||||
<FieldRenderer params={{ value: row[key], row }} field={field} fieldKey={key} config={config} onNavigate={onNavigate} navigate={navigate} isMobile />
|
<FieldRenderer params={{ value: row[key], row }} field={field} fieldKey={key} config={config} onNavigate={onNavigate} navigate={navigate} isMobile />
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
313
react-openapi/components/FilterBar.tsx
Normal file
313
react-openapi/components/FilterBar.tsx
Normal file
@@ -0,0 +1,313 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Button,
|
||||||
|
Chip,
|
||||||
|
Paper,
|
||||||
|
TextField,
|
||||||
|
Autocomplete,
|
||||||
|
Typography,
|
||||||
|
} from "@mui/material";
|
||||||
|
import DoneIcon from "@mui/icons-material/Done";
|
||||||
|
import FilterListIcon from "@mui/icons-material/FilterList";
|
||||||
|
import { ResourceField, ResourceMode } from "../types/config";
|
||||||
|
|
||||||
|
function FilterAutocomplete({
|
||||||
|
options,
|
||||||
|
value,
|
||||||
|
label,
|
||||||
|
onChange,
|
||||||
|
}: {
|
||||||
|
options: string[];
|
||||||
|
value: string[];
|
||||||
|
label: string;
|
||||||
|
onChange: (val: string[]) => void;
|
||||||
|
}) {
|
||||||
|
const listboxRef = React.useRef<HTMLUListElement>(null);
|
||||||
|
const scrollPosRef = React.useRef(0);
|
||||||
|
const [open, setOpen] = React.useState(false);
|
||||||
|
const [frozenValue, setFrozenValue] = React.useState<string[]>(value);
|
||||||
|
|
||||||
|
const toggleDropdown = () => {
|
||||||
|
setOpen(prev => {
|
||||||
|
const next = !prev;
|
||||||
|
setFrozenValue(value);
|
||||||
|
return next;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const sortedOptions = React.useMemo(() => {
|
||||||
|
const sel = new Set(frozenValue);
|
||||||
|
const picked: string[] = [];
|
||||||
|
const rest: string[] = [];
|
||||||
|
for (const o of options) {
|
||||||
|
if (sel.has(o)) picked.push(o);
|
||||||
|
else rest.push(o);
|
||||||
|
}
|
||||||
|
return [...picked, ...rest];
|
||||||
|
}, [options, frozenValue]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Autocomplete
|
||||||
|
multiple
|
||||||
|
freeSolo
|
||||||
|
disableCloseOnSelect
|
||||||
|
open={open}
|
||||||
|
onOpen={toggleDropdown}
|
||||||
|
onClose={toggleDropdown}
|
||||||
|
options={sortedOptions}
|
||||||
|
value={value}
|
||||||
|
getOptionKey={(option) => option}
|
||||||
|
onChange={(_, val) => onChange(val.length > 0 ? val : [])}
|
||||||
|
ListboxProps={{
|
||||||
|
ref: listboxRef,
|
||||||
|
onScroll: (e) => { scrollPosRef.current = (e.target as HTMLUListElement).scrollTop; },
|
||||||
|
}}
|
||||||
|
renderOption={(props, option, { selected }) => {
|
||||||
|
const { key, ...rest } = props;
|
||||||
|
return (
|
||||||
|
<li key={key} {...rest}>
|
||||||
|
{selected ? <DoneIcon sx={{ fontSize: 14, mr: 1, color: 'primary.main' }} /> : <Box sx={{ width: 22, mr: 1 }} />}
|
||||||
|
{option}
|
||||||
|
</li>
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
renderTags={(tagValue, getTagProps) => {
|
||||||
|
const maxChips = 1;
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{tagValue.slice(0, maxChips).map((tag, index) => {
|
||||||
|
const { key, ...tagProps } = getTagProps({ index });
|
||||||
|
return <Chip
|
||||||
|
key={key}
|
||||||
|
{...tagProps}
|
||||||
|
label={tag.length > 10 ? `${tag.slice(0, 8)}..` : tag}
|
||||||
|
size="small"
|
||||||
|
onClick={toggleDropdown}
|
||||||
|
sx={{ cursor: 'pointer' }}
|
||||||
|
/>;
|
||||||
|
})}
|
||||||
|
{tagValue.length > maxChips && (
|
||||||
|
<Chip
|
||||||
|
label={`+${tagValue.length - maxChips}`}
|
||||||
|
size="small"
|
||||||
|
onClick={toggleDropdown}
|
||||||
|
sx={{ cursor: 'pointer' }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
renderInput={(params) => <TextField {...params} placeholder={`Add ${label}...`} />}
|
||||||
|
sx={{ '& .MuiOutlinedInput-root': { minHeight: '3rem', py: 0.5 } }}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function extractOptions(
|
||||||
|
fieldName: string,
|
||||||
|
field: ResourceField,
|
||||||
|
data: any[]
|
||||||
|
): string[] {
|
||||||
|
const values = new Set<string>();
|
||||||
|
|
||||||
|
if (field.options) return field.options;
|
||||||
|
if (!data) return [];
|
||||||
|
|
||||||
|
const pull = (item: any): string | null => {
|
||||||
|
if (item == null) return null;
|
||||||
|
if (typeof item === "string") return item;
|
||||||
|
if (typeof item !== "object") return String(item);
|
||||||
|
|
||||||
|
const df = field.displayField;
|
||||||
|
if (!df) { debugger; return null; }
|
||||||
|
|
||||||
|
if (Array.isArray(df)) {
|
||||||
|
const parts = df.map((k) => item[k]).filter((v) => v != null);
|
||||||
|
if (parts.length > 0) return parts.join(" ");
|
||||||
|
} else {
|
||||||
|
const v = item[df];
|
||||||
|
if (v != null) return String(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
debugger;
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const row of data) {
|
||||||
|
const v = row[fieldName];
|
||||||
|
if (v == null) continue;
|
||||||
|
|
||||||
|
if (Array.isArray(v)) {
|
||||||
|
for (const el of v) {
|
||||||
|
const label = pull(el);
|
||||||
|
if (label) values.add(label);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const label = pull(v);
|
||||||
|
if (label) values.add(label);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// console.log('extracted', fieldName, Array.from(values).sort())
|
||||||
|
return Array.from(values).sort();
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderFilterInput(
|
||||||
|
fieldName: string,
|
||||||
|
field: ResourceField,
|
||||||
|
options: string[],
|
||||||
|
value: any,
|
||||||
|
onChange: (key: string, val: any) => void
|
||||||
|
) {
|
||||||
|
const filterType = field.filterType;
|
||||||
|
|
||||||
|
if (filterType === "number-range") {
|
||||||
|
const rangeVal = (value as { min?: string; max?: string }) || {};
|
||||||
|
return (
|
||||||
|
<Box sx={{ display: "flex", gap: 1 }}>
|
||||||
|
<TextField type="number" placeholder="Min" size="small" value={rangeVal.min ?? ""}
|
||||||
|
onChange={(e) => onChange("min", e.target.value || undefined)} sx={{ width: 100 }} />
|
||||||
|
<TextField type="number" placeholder="Max" size="small" value={rangeVal.max ?? ""}
|
||||||
|
onChange={(e) => onChange("max", e.target.value || undefined)} sx={{ width: 100 }} />
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (filterType === "date-range") {
|
||||||
|
const rangeVal = (value as { start?: string; end?: string }) || {};
|
||||||
|
return (
|
||||||
|
<Box sx={{ display: "flex", gap: 1 }}>
|
||||||
|
<TextField type="datetime-local" placeholder="From" size="small" value={rangeVal.start ?? ""}
|
||||||
|
onChange={(e) => onChange("start", e.target.value || undefined)} InputLabelProps={{ shrink: true }} sx={{ width: 170 }} />
|
||||||
|
<TextField type="datetime-local" placeholder="To" size="small" value={rangeVal.end ?? ""}
|
||||||
|
onChange={(e) => onChange("end", e.target.value || undefined)} InputLabelProps={{ shrink: true }} sx={{ width: 170 }} />
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const selected = Array.isArray(value) ? value : [];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FilterAutocomplete
|
||||||
|
options={options}
|
||||||
|
value={selected}
|
||||||
|
label={field.label}
|
||||||
|
onChange={(val) => onChange("value", val.length > 0 ? val : undefined)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FilterBarProps {
|
||||||
|
fields: Record<string, ResourceField>;
|
||||||
|
filterableFields: string[];
|
||||||
|
mode: ResourceMode;
|
||||||
|
data?: any[];
|
||||||
|
appliedValues: Record<string, any>;
|
||||||
|
onApply: (values: Record<string, any>) => void;
|
||||||
|
onClear: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function FilterBar({
|
||||||
|
fields,
|
||||||
|
filterableFields,
|
||||||
|
data,
|
||||||
|
appliedValues,
|
||||||
|
onApply,
|
||||||
|
onClear,
|
||||||
|
}: FilterBarProps) {
|
||||||
|
const [open, setOpen] = React.useState(false);
|
||||||
|
const [draft, setDraft] = React.useState<Record<string, any>>(() => ({ ...appliedValues }));
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (!open) setDraft({ ...appliedValues });
|
||||||
|
}, [appliedValues, open]);
|
||||||
|
|
||||||
|
if (!filterableFields || filterableFields.length === 0) return null;
|
||||||
|
|
||||||
|
const activeCount = Object.keys(appliedValues).filter((k) => {
|
||||||
|
const v = appliedValues[k];
|
||||||
|
if (v == null || v === "") return false;
|
||||||
|
if (typeof v === "object" && Object.values(v).every((x) => x == null || x === "")) return false;
|
||||||
|
return true;
|
||||||
|
}).length;
|
||||||
|
|
||||||
|
const handleApply = () => onApply({ ...draft });
|
||||||
|
const handleClear = () => {
|
||||||
|
setDraft({});
|
||||||
|
onClear();
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateDraft = (fieldName: string, key: string, val: any) => {
|
||||||
|
setDraft((prev) => {
|
||||||
|
if (key === "value") {
|
||||||
|
return { ...prev, [fieldName]: val };
|
||||||
|
}
|
||||||
|
const existing = prev[fieldName] || {};
|
||||||
|
return { ...prev, [fieldName]: { ...existing, [key]: val } };
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Paper variant="outlined" sx={{ mb: 2, borderRadius: 2, overflow: "hidden" }}>
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "space-between",
|
||||||
|
px: 2,
|
||||||
|
py: 1,
|
||||||
|
cursor: "pointer",
|
||||||
|
"&:hover": { bgcolor: "action.hover" },
|
||||||
|
}}
|
||||||
|
onClick={() => setOpen((o) => !o)}
|
||||||
|
>
|
||||||
|
<Box sx={{ display: "flex", alignItems: "center", gap: 1 }}>
|
||||||
|
<FilterListIcon fontSize="small" color="action" />
|
||||||
|
<Typography variant="subtitle2" fontWeight={600}>
|
||||||
|
{open ? "Hide Filters" : "Show Filters"}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
{activeCount > 0 && (
|
||||||
|
<Typography variant="caption" color="primary" fontWeight={600}>
|
||||||
|
{activeCount} active
|
||||||
|
</Typography>
|
||||||
|
)}
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{open && (
|
||||||
|
<Box sx={{ px: 2, pb: 2, borderTop: "1px solid", borderColor: "divider", pt: 2 }}>
|
||||||
|
<Box sx={{ display: "flex", flexWrap: "wrap", gap: 2, alignItems: "flex-end" }}>
|
||||||
|
{filterableFields.map((fieldName) => {
|
||||||
|
const field = fields[fieldName];
|
||||||
|
if (!field) return null;
|
||||||
|
|
||||||
|
const needsOptions = !field.filterType || field.filterType === "autocomplete" || field.filterType === "multiselect";
|
||||||
|
const options = needsOptions ? extractOptions(fieldName, field, data ?? []) : [];
|
||||||
|
const raw = draft[fieldName];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box key={fieldName} sx={{ display: "flex", flexDirection: "column", flex: { xs: '0 0 100%', sm: 1 }, minWidth: { sm: 200 } }}>
|
||||||
|
<Box sx={{ typography: "caption", mb: 0.5, color: "text.secondary" }}>
|
||||||
|
{field.label}
|
||||||
|
</Box>
|
||||||
|
{renderFilterInput(fieldName, field, options, raw, (key, val) =>
|
||||||
|
updateDraft(fieldName, key, val)
|
||||||
|
)}
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Box sx={{ mt: 2, display: "flex", gap: 1 }}>
|
||||||
|
<Button variant="contained" onClick={handleApply}>
|
||||||
|
Apply
|
||||||
|
</Button>
|
||||||
|
<Button variant="outlined" onClick={handleClear}>
|
||||||
|
Clear
|
||||||
|
</Button>
|
||||||
|
</Box>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
</Paper>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,10 +1,12 @@
|
|||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { Box, Typography, Paper, CircularProgress } from '@mui/material';
|
import { Box, Paper, CircularProgress } from '@mui/material';
|
||||||
import { ResourceConfig } from '../types/config';
|
import { ResourceConfig } from '../types/config';
|
||||||
|
import type { ResourceField } from '../types/config';
|
||||||
import { useResource } from '../hooks/useResource';
|
import { useResource } from '../hooks/useResource';
|
||||||
import GenericForm from './GenericForm';
|
import GenericForm from './GenericForm';
|
||||||
import EnhancedTable from './EnhancedTable';
|
import EnhancedTable from './EnhancedTable';
|
||||||
import { useParams, useLocation, useNavigate, Routes, Route } from 'react-router-dom';
|
import FilterBar from './FilterBar';
|
||||||
|
import { useParams, useLocation, useNavigate } from 'react-router-dom';
|
||||||
|
|
||||||
interface ResourceViewProps {
|
interface ResourceViewProps {
|
||||||
config: ResourceConfig;
|
config: ResourceConfig;
|
||||||
@@ -13,36 +15,132 @@ interface ResourceViewProps {
|
|||||||
|
|
||||||
import { GridPaginationModel } from '@mui/x-data-grid';
|
import { GridPaginationModel } from '@mui/x-data-grid';
|
||||||
|
|
||||||
|
function getFilterDisplayFields(field: ResourceField): string[] {
|
||||||
|
if (!field.displayField) return [];
|
||||||
|
return (Array.isArray(field.displayField) ? field.displayField : [field.displayField]).filter(
|
||||||
|
(df): df is string => !!df
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyClientFilters(
|
||||||
|
data: any[],
|
||||||
|
filters: Record<string, any>,
|
||||||
|
fields: Record<string, ResourceField>
|
||||||
|
): any[] {
|
||||||
|
const entries = Object.entries(filters).filter(([_, v]) => {
|
||||||
|
if (v == null || v === "" || (Array.isArray(v) && v.length === 0)) return false;
|
||||||
|
if (typeof v === "object" && !Array.isArray(v) && Object.values(v).every((x) => x == null || x === "")) return false;
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (entries.length === 0) return data;
|
||||||
|
|
||||||
|
return data.filter((item) =>
|
||||||
|
entries.every(([fieldName, filterValue]) => {
|
||||||
|
const field = fields[fieldName];
|
||||||
|
if (!field) return true;
|
||||||
|
|
||||||
|
const itemValue = item[fieldName];
|
||||||
|
|
||||||
|
if (typeof filterValue === "object" && !Array.isArray(filterValue)) {
|
||||||
|
if (field.type === "number") {
|
||||||
|
if (filterValue.min != null && filterValue.min !== "" && Number(itemValue) < Number(filterValue.min)) return false;
|
||||||
|
if (filterValue.max != null && filterValue.max !== "" && Number(itemValue) > Number(filterValue.max)) return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (field.type === "datetime" || field.type === "date") {
|
||||||
|
const itemTime = new Date(itemValue).getTime();
|
||||||
|
if (filterValue.start && new Date(filterValue.start).getTime() > itemTime) return false;
|
||||||
|
if (filterValue.end && new Date(filterValue.end).getTime() < itemTime) return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Array.isArray(filterValue)) {
|
||||||
|
if (field.type === "array" && Array.isArray(itemValue)) {
|
||||||
|
return itemValue.some((el: any) => {
|
||||||
|
if (el != null && typeof el === "object") {
|
||||||
|
const dispFields = getFilterDisplayFields(field);
|
||||||
|
return dispFields.some((df) => filterValue.includes(String(el[df])));
|
||||||
|
}
|
||||||
|
return filterValue.includes(String(el));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (itemValue && typeof itemValue === "object") {
|
||||||
|
const dispFields = getFilterDisplayFields(field);
|
||||||
|
const itemDisplay = dispFields.map((df) => itemValue[df]).filter((v) => v != null).join(" ");
|
||||||
|
return filterValue.includes(itemDisplay);
|
||||||
|
}
|
||||||
|
return filterValue.includes(String(itemValue));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!filterValue) return true;
|
||||||
|
|
||||||
|
if (field.type === "boolean") {
|
||||||
|
return String(itemValue) === filterValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (field.type === "array" && Array.isArray(itemValue)) {
|
||||||
|
return itemValue.some((el: any) => {
|
||||||
|
if (el != null && typeof el === "object") {
|
||||||
|
const dispFields = getFilterDisplayFields(field);
|
||||||
|
return dispFields.some((df) => String(el[df]) === String(filterValue));
|
||||||
|
}
|
||||||
|
return String(el) === String(filterValue);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (itemValue && typeof itemValue === "object") {
|
||||||
|
const dispFields = getFilterDisplayFields(field);
|
||||||
|
return dispFields.some((df) => String(itemValue[df]) === String(filterValue));
|
||||||
|
}
|
||||||
|
|
||||||
|
return String(itemValue) === String(filterValue);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
export default function ResourceView({ config, onNavigateToResource }: ResourceViewProps) {
|
export default function ResourceView({ config, onNavigateToResource }: ResourceViewProps) {
|
||||||
const { id } = useParams();
|
const { id } = useParams();
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const isCreate = location.pathname.endsWith('/create');
|
const isCreate = location.pathname.endsWith('/create');
|
||||||
const isEdit = location.pathname.includes('/edit/');
|
const isEdit = location.pathname.includes('/edit/');
|
||||||
const isView = !!id && !isEdit;
|
const isView = !!id && !isEdit;
|
||||||
const isList = !id && !isCreate;
|
const isList = !id && !isCreate;
|
||||||
|
|
||||||
|
const isServer = config.filterOptions?.mode !== "client";
|
||||||
|
|
||||||
const [paginationModel, setPaginationModel] = React.useState<GridPaginationModel>({
|
const [paginationModel, setPaginationModel] = React.useState<GridPaginationModel>({
|
||||||
page: 0,
|
page: 0,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const [appliedFilters, setAppliedFilters] = React.useState<Record<string, any>>({});
|
||||||
|
|
||||||
const { useList, useRead, useCreate, useUpdate, useDelete } = useResource(config);
|
const { useList, useRead, useCreate, useUpdate, useDelete } = useResource(config);
|
||||||
|
|
||||||
// Determine query parameters based on pagination config
|
|
||||||
const queryParams = React.useMemo(() => {
|
const queryParams = React.useMemo(() => {
|
||||||
if (!config.pagination) return {};
|
if (!isServer) return { limit: 10000 };
|
||||||
return {
|
return {
|
||||||
skip: paginationModel.page * paginationModel.pageSize,
|
skip: paginationModel.page * paginationModel.pageSize,
|
||||||
limit: paginationModel.pageSize,
|
limit: paginationModel.pageSize,
|
||||||
};
|
};
|
||||||
}, [config.pagination, paginationModel]);
|
}, [isServer, paginationModel]);
|
||||||
|
|
||||||
const listQuery = useList(queryParams);
|
const listQuery = useList(queryParams);
|
||||||
const itemQuery = useRead(id || "");
|
const itemQuery = useRead(id || "");
|
||||||
|
|
||||||
const paginatedData = listQuery.data || { data: [], total: undefined };
|
const rawData = listQuery.data?.data || [];
|
||||||
|
const totalCount = listQuery.data?.total;
|
||||||
|
|
||||||
|
const filteredData = React.useMemo(
|
||||||
|
() => (isServer ? rawData : applyClientFilters(rawData, appliedFilters, config.fields)),
|
||||||
|
[isServer, rawData, appliedFilters, config.fields]
|
||||||
|
);
|
||||||
|
|
||||||
const createMutation = useCreate();
|
const createMutation = useCreate();
|
||||||
const updateMutation = useUpdate();
|
const updateMutation = useUpdate();
|
||||||
const deleteMutation = useDelete();
|
const deleteMutation = useDelete();
|
||||||
@@ -80,18 +178,31 @@ export default function ResourceView({ config, onNavigateToResource }: ResourceV
|
|||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
{isList ? (
|
{isList ? (
|
||||||
<EnhancedTable
|
<Box>
|
||||||
config={config}
|
{!isServer && config.filterOptions?.fields && config.filterOptions.fields.length > 0 && (
|
||||||
data={paginatedData.data || []}
|
<FilterBar
|
||||||
total={paginatedData.total}
|
fields={config.fields}
|
||||||
paginationModel={paginationModel}
|
filterableFields={config.filterOptions.fields}
|
||||||
onPaginationModelChange={setPaginationModel}
|
mode={config.filterOptions?.mode || "server"}
|
||||||
loading={listQuery.isFetching}
|
data={rawData}
|
||||||
onEdit={handleEdit}
|
appliedValues={appliedFilters}
|
||||||
onDelete={handleDelete}
|
onApply={setAppliedFilters}
|
||||||
onCreate={handleCreate}
|
onClear={() => setAppliedFilters({})}
|
||||||
onNavigateToResource={(res, id) => navigate(`/admin/${res}/${id}`)}
|
/>
|
||||||
/>
|
)}
|
||||||
|
<EnhancedTable
|
||||||
|
config={config}
|
||||||
|
data={filteredData}
|
||||||
|
total={isServer ? totalCount : filteredData.length}
|
||||||
|
paginationModel={isServer ? paginationModel : undefined}
|
||||||
|
onPaginationModelChange={isServer ? setPaginationModel : undefined}
|
||||||
|
loading={listQuery.isFetching}
|
||||||
|
onEdit={handleEdit}
|
||||||
|
onDelete={handleDelete}
|
||||||
|
onCreate={handleCreate}
|
||||||
|
onNavigateToResource={(res, id) => navigate(`/admin/${res}/${id}`)}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
) : (
|
) : (
|
||||||
<Paper sx={{ p: 4 }}>
|
<Paper sx={{ p: 4 }}>
|
||||||
<GenericForm
|
<GenericForm
|
||||||
|
|||||||
@@ -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,16 +26,17 @@ export function useResource<T = any>(config: ResourceConfig | undefined) {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
enabled: !!endpoint,
|
enabled: !!endpoint,
|
||||||
|
placeholderData: keepPreviousData,
|
||||||
});
|
});
|
||||||
|
|
||||||
// --- READ ONE ---
|
// --- READ ONE ---
|
||||||
const useRead = (id: string | null) =>
|
const useRead = (id: string, params?: any | null) =>
|
||||||
useQuery({
|
useQuery({
|
||||||
queryKey: [name, "detail", id],
|
queryKey: [name, "detail", id, params],
|
||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
if (!id || !endpoint) return null;
|
if (!id || !endpoint) return null;
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.get<T>(`${endpoint}/${id}`);
|
const res = await api.get<T>(`${endpoint}/${id}`, params ? { params } : undefined);
|
||||||
return res.data;
|
return res.data;
|
||||||
},
|
},
|
||||||
enabled: !!id && !!endpoint,
|
enabled: !!id && !!endpoint,
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
export { default as Admin } from "./Admin";
|
export { default as Admin } from "./Admin";
|
||||||
export { api, auth, initializeApiClients } from "./api/client";
|
export { api, auth, initializeApiClients } from "./api/client";
|
||||||
export { getAppConfig } from "./config";
|
export { getAppConfig } from "./config";
|
||||||
export type { AppConfig, ResourceConfig, ResourceField } from "./types/config";
|
export type { AppConfig, ResourceConfig, ResourceField, ResourceMode } from "./types/config";
|
||||||
export { AppProvider } from "./providers/AppProvider";
|
export { AppProvider } from "./providers/AppProvider";
|
||||||
export { ConfigContext, useConfig } from "./providers/ConfigContext";
|
export { ConfigContext, useConfig } from "./providers/ConfigContext";
|
||||||
export { useResource, useResourceByName } from "./hooks/useResource";
|
export { useResource, useResourceByName } from "./hooks/useResource";
|
||||||
|
export { default as FilterBar } from "./components/FilterBar";
|
||||||
|
|||||||
@@ -20,8 +20,11 @@ export interface ResourceField {
|
|||||||
displayField?: string | string[];
|
displayField?: string | string[];
|
||||||
formatter?: (value: any) => string;
|
formatter?: (value: any) => string;
|
||||||
relation?: string; // Name of the target resource
|
relation?: string; // Name of the target resource
|
||||||
|
filterType?: "autocomplete" | "multiselect" | "number-range" | "date-range";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type ResourceMode = "server" | "client";
|
||||||
|
|
||||||
export interface ResourceConfig {
|
export interface ResourceConfig {
|
||||||
name: string;
|
name: string;
|
||||||
label: string;
|
label: string;
|
||||||
@@ -31,6 +34,10 @@ export interface ResourceConfig {
|
|||||||
fields: Record<string, ResourceField>;
|
fields: Record<string, ResourceField>;
|
||||||
pagination?: boolean;
|
pagination?: boolean;
|
||||||
hidden?: boolean;
|
hidden?: boolean;
|
||||||
|
filterOptions?: {
|
||||||
|
mode?: ResourceMode;
|
||||||
|
fields?: string[];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AppConfig {
|
export interface AppConfig {
|
||||||
|
|||||||
@@ -7,10 +7,15 @@ export interface FieldOverride {
|
|||||||
displayField?: string | string[];
|
displayField?: string | string[];
|
||||||
display?: boolean;
|
display?: boolean;
|
||||||
formatter?: (value: any) => string;
|
formatter?: (value: any) => string;
|
||||||
|
filterType?: "autocomplete" | "multiselect" | "number-range" | "date-range";
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ResourceOverride {
|
export interface ResourceOverride {
|
||||||
fields?: Record<string, FieldOverride>;
|
fields?: Record<string, FieldOverride>;
|
||||||
pagination?: boolean;
|
pagination?: boolean;
|
||||||
hidden?: boolean;
|
hidden?: boolean;
|
||||||
|
filterOptions?: {
|
||||||
|
mode?: "server" | "client";
|
||||||
|
fields?: string[];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -154,15 +154,21 @@ export async function loadConfigFromOpenApi(baseUrl: string, configuration: Reco
|
|||||||
|
|
||||||
const resourceOverride = configuration[name] || {};
|
const resourceOverride = configuration[name] || {};
|
||||||
|
|
||||||
|
const fo = resourceOverride.filterOptions || {};
|
||||||
|
|
||||||
resources.push({
|
resources.push({
|
||||||
name,
|
name,
|
||||||
label: schema.title || label,
|
label: schema.title || label,
|
||||||
pluralLabel: pluralLabel,
|
pluralLabel: pluralLabel,
|
||||||
endpoint: listPath,
|
endpoint: listPath,
|
||||||
primaryKey: "id", // Strict default, no heuristics
|
primaryKey: "id",
|
||||||
fields,
|
fields,
|
||||||
pagination: resourceOverride.pagination,
|
pagination: resourceOverride.pagination,
|
||||||
hidden: resourceOverride.hidden,
|
hidden: resourceOverride.hidden,
|
||||||
|
filterOptions: {
|
||||||
|
mode: fo.mode || "server",
|
||||||
|
fields: fo.fields,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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,29 +3,236 @@ 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,
|
||||||
prepareReport,
|
prepareReport,
|
||||||
} from "./features/report";
|
} from "./features/report";
|
||||||
|
import { useResourceByName } from "../react-openapi";
|
||||||
|
|
||||||
|
function formatSnapshotDate(iso: string) {
|
||||||
|
const d = new Date(iso);
|
||||||
|
return d.toLocaleString(undefined, {
|
||||||
|
year: "numeric",
|
||||||
|
month: "short",
|
||||||
|
day: "numeric",
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
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 [selectedSnapshotId, setSelectedSnapshotId] = React.useState<string | null>(null);
|
||||||
|
|
||||||
|
const { data: snapshotsData } = useResourceByName("reports").useList();
|
||||||
|
const snapshotOptions = React.useMemo(() => {
|
||||||
|
const options: { label: string; value: string | null }[] = [
|
||||||
|
{ label: "Latest (auto)", value: null },
|
||||||
|
];
|
||||||
|
if (snapshotsData?.data) {
|
||||||
|
for (const snap of snapshotsData.data) {
|
||||||
|
options.push({
|
||||||
|
label: `Snapshot from ${formatSnapshotDate(snap.created_at)}`,
|
||||||
|
value: snap.snapshot_id,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return options;
|
||||||
|
}, [snapshotsData]);
|
||||||
|
|
||||||
|
const selectedSnapshotOption = snapshotOptions.find((o) => o.value === selectedSnapshotId) ?? snapshotOptions[0];
|
||||||
|
|
||||||
const report = useReport({
|
const report = useReport({
|
||||||
periods: ["weekly", "monthly", "full"],
|
snapshot_id: selectedSnapshotId ?? undefined,
|
||||||
rolling: true,
|
periods: ["daily", "weekly", "monthly", "all"],
|
||||||
include_transactions: true,
|
flow: state.flow,
|
||||||
group_by: ["tags"],
|
payee: appliedPayees.length > 0 ? appliedPayees : undefined,
|
||||||
})
|
tags: appliedTags.length > 0 ? appliedTags : undefined,
|
||||||
|
});
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (report.data) {
|
||||||
|
setLoadedPayees(prev => {
|
||||||
|
const pSet = new Set<string>(prev);
|
||||||
|
report.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.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]);
|
||||||
|
|
||||||
|
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 +248,92 @@ export default function Dashboard() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!report) {
|
if (!report.data) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = prepareReport(report.data?.data);
|
const data = prepareReport(report.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>
|
||||||
|
<Box sx={{ display: 'flex', flexDirection: 'column', minWidth: { sm: 220 } }}>
|
||||||
|
<Box sx={{ typography: 'caption', mb: 1, color: 'text.secondary' }}>
|
||||||
|
Snapshot
|
||||||
|
</Box>
|
||||||
|
<Autocomplete
|
||||||
|
options={snapshotOptions}
|
||||||
|
value={selectedSnapshotOption}
|
||||||
|
onChange={(_, option) => setSelectedSnapshotId(option?.value ?? null)}
|
||||||
|
getOptionLabel={(o) => o.label}
|
||||||
|
isOptionEqualToValue={(o, v) => o.value === v.value}
|
||||||
|
renderInput={(params) => <TextField {...params} placeholder="Select snapshot..." />}
|
||||||
|
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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
336
src/FetchRequests.tsx
Normal file
336
src/FetchRequests.tsx
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Container,
|
||||||
|
Paper,
|
||||||
|
Typography,
|
||||||
|
TextField,
|
||||||
|
Button,
|
||||||
|
ToggleButtonGroup,
|
||||||
|
ToggleButton,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableContainer,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
Chip,
|
||||||
|
IconButton,
|
||||||
|
CircularProgress,
|
||||||
|
Alert,
|
||||||
|
Snackbar,
|
||||||
|
Dialog,
|
||||||
|
DialogTitle,
|
||||||
|
DialogContent,
|
||||||
|
DialogContentText,
|
||||||
|
DialogActions,
|
||||||
|
} from "@mui/material";
|
||||||
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
|
import CloudUploadIcon from "@mui/icons-material/CloudUpload";
|
||||||
|
import RefreshIcon from "@mui/icons-material/Refresh";
|
||||||
|
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
|
||||||
|
import {
|
||||||
|
useFetchRequestsList,
|
||||||
|
useCreateFetchRequest,
|
||||||
|
useDeleteFetchRequest,
|
||||||
|
useUploadFile,
|
||||||
|
} from "./features/fetch-requests";
|
||||||
|
import type {
|
||||||
|
FetchRequest,
|
||||||
|
FetchRequestStatus,
|
||||||
|
FileSource,
|
||||||
|
EmailSource,
|
||||||
|
} from "./features/fetch-requests";
|
||||||
|
|
||||||
|
const statusColors: Record<FetchRequestStatus, "default" | "primary" | "warning" | "info" | "success" | "error"> = {
|
||||||
|
pending: "default",
|
||||||
|
processing: "info",
|
||||||
|
raw_expenses_done: "primary",
|
||||||
|
enriched_done: "warning",
|
||||||
|
completed: "success",
|
||||||
|
failed: "error",
|
||||||
|
};
|
||||||
|
|
||||||
|
function formatDate(iso: string) {
|
||||||
|
const d = new Date(iso);
|
||||||
|
return d.toLocaleString();
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function FetchRequests() {
|
||||||
|
const [sourceType, setSourceType] = React.useState<"file" | "email">("file");
|
||||||
|
const [accountName, setAccountName] = React.useState("");
|
||||||
|
const [payorUsername, setPayorUsername] = React.useState("aetos");
|
||||||
|
const [format, setFormat] = React.useState("");
|
||||||
|
const [file, setFile] = React.useState<File | null>(null);
|
||||||
|
const [uploadedPath, setUploadedPath] = React.useState<string | null>(null);
|
||||||
|
const [fromEmail, setFromEmail] = React.useState("");
|
||||||
|
const [subject, setSubject] = React.useState("");
|
||||||
|
const [rawTerms, setRawTerms] = React.useState("");
|
||||||
|
const [startDate, setStartDate] = React.useState("");
|
||||||
|
const [endDate, setEndDate] = React.useState("");
|
||||||
|
const [snackbar, setSnackbar] = React.useState<{ message: string; severity: "success" | "error" } | null>(null);
|
||||||
|
const [deleteTarget, setDeleteTarget] = React.useState<FetchRequest | null>(null);
|
||||||
|
|
||||||
|
const { data: listData, isLoading, isFetching, refetch } = useFetchRequestsList();
|
||||||
|
const createMutation = useCreateFetchRequest();
|
||||||
|
const deleteMutation = useDeleteFetchRequest();
|
||||||
|
const uploadMutation = useUploadFile();
|
||||||
|
|
||||||
|
const requests = listData?.data ?? [];
|
||||||
|
|
||||||
|
const handleUpload = async () => {
|
||||||
|
if (!file) return;
|
||||||
|
const result = await uploadMutation.mutateAsync(file);
|
||||||
|
if (result?.saved_as) {
|
||||||
|
setUploadedPath(result.saved_as);
|
||||||
|
if (!format) setFormat(file.name.split(".").pop() || "");
|
||||||
|
setSnackbar({ message: `File uploaded: ${result.saved_as}`, severity: "success" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCreate = async () => {
|
||||||
|
if (!accountName) return;
|
||||||
|
|
||||||
|
let source: FileSource | EmailSource;
|
||||||
|
|
||||||
|
if (sourceType === "file") {
|
||||||
|
if (!uploadedPath || !format) return;
|
||||||
|
source = { path: uploadedPath, format } as FileSource;
|
||||||
|
} else {
|
||||||
|
if (!format) return;
|
||||||
|
const emailSource: EmailSource = { format };
|
||||||
|
if (fromEmail) emailSource.from_email = fromEmail;
|
||||||
|
if (subject) emailSource.subject = subject;
|
||||||
|
if (rawTerms.trim()) emailSource.raw_terms = rawTerms.split(",").map((s) => s.trim()).filter(Boolean);
|
||||||
|
source = emailSource;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
await createMutation.mutateAsync({
|
||||||
|
source,
|
||||||
|
account_name: accountName,
|
||||||
|
payor_username: payorUsername,
|
||||||
|
...(startDate ? { start_date: new Date(startDate).toISOString() } : {}),
|
||||||
|
...(endDate ? { end_date: new Date(endDate).toISOString() } : {}),
|
||||||
|
});
|
||||||
|
setSnackbar({ message: "Fetch request created", severity: "success" });
|
||||||
|
resetForm();
|
||||||
|
} catch (err: any) {
|
||||||
|
setSnackbar({ message: err?.response?.data?.detail || "Failed to create fetch request", severity: "error" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const resetForm = () => {
|
||||||
|
setAccountName("");
|
||||||
|
setFormat("");
|
||||||
|
setFile(null);
|
||||||
|
setUploadedPath(null);
|
||||||
|
setFromEmail("");
|
||||||
|
setSubject("");
|
||||||
|
setRawTerms("");
|
||||||
|
setStartDate("");
|
||||||
|
setEndDate("");
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDelete = async () => {
|
||||||
|
if (!deleteTarget) return;
|
||||||
|
try {
|
||||||
|
await deleteMutation.mutateAsync(deleteTarget.id);
|
||||||
|
setSnackbar({ message: "Fetch request deleted", severity: "success" });
|
||||||
|
} catch {
|
||||||
|
setSnackbar({ message: "Failed to delete", severity: "error" });
|
||||||
|
}
|
||||||
|
setDeleteTarget(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container sx={{ mt: 4, mb: 4 }}>
|
||||||
|
<Typography variant="h5" fontWeight="bold" gutterBottom>
|
||||||
|
Fetch Request Pipeline
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Paper sx={{ p: 3, mb: 4, borderRadius: 4 }} variant="outlined">
|
||||||
|
<Typography variant="subtitle1" fontWeight={600} gutterBottom>
|
||||||
|
New Fetch Request
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<ToggleButtonGroup
|
||||||
|
value={sourceType}
|
||||||
|
exclusive
|
||||||
|
onChange={(_, val) => val && setSourceType(val)}
|
||||||
|
sx={{ mb: 3 }}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<ToggleButton value="file">File Upload</ToggleButton>
|
||||||
|
<ToggleButton value="email">Email Fetch</ToggleButton>
|
||||||
|
</ToggleButtonGroup>
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", flexDirection: "column", gap: 2 }}>
|
||||||
|
{sourceType === "file" ? (
|
||||||
|
<>
|
||||||
|
<Box sx={{ display: "flex", gap: 2, alignItems: "flex-end" }}>
|
||||||
|
<Button variant="outlined" component="label" startIcon={<CloudUploadIcon />}>
|
||||||
|
Choose File
|
||||||
|
<input type="file" hidden onChange={(e) => setFile(e.target.files?.[0] ?? null)} />
|
||||||
|
</Button>
|
||||||
|
<Typography variant="body2" sx={{ flex: 1, color: "text.secondary" }}>
|
||||||
|
{file ? file.name : "No file selected"}
|
||||||
|
</Typography>
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
onClick={handleUpload}
|
||||||
|
disabled={!file || uploadMutation.isPending}
|
||||||
|
>
|
||||||
|
{uploadMutation.isPending ? "Uploading..." : "Upload"}
|
||||||
|
</Button>
|
||||||
|
</Box>
|
||||||
|
{uploadedPath && (
|
||||||
|
<Alert severity="success" sx={{ py: 0 }}>
|
||||||
|
Uploaded as: {uploadedPath}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
<TextField label="Format (csv, pdf, ...)" value={format} onChange={(e) => setFormat(e.target.value)} size="small" />
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<TextField label="Format" value={format} onChange={(e) => setFormat(e.target.value)} size="small" helperText="e.g. email, pdf, csv" />
|
||||||
|
<TextField label="From Email" value={fromEmail} onChange={(e) => setFromEmail(e.target.value)} size="small" />
|
||||||
|
<TextField label="Subject" value={subject} onChange={(e) => setSubject(e.target.value)} size="small" />
|
||||||
|
<TextField label="Raw Terms" value={rawTerms} onChange={(e) => setRawTerms(e.target.value)} size="small" helperText="Comma-separated search terms" />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<TextField label="Account Name" value={accountName} onChange={(e) => setAccountName(e.target.value)} size="small" required />
|
||||||
|
<TextField label="Payor Username" value={payorUsername} onChange={(e) => setPayorUsername(e.target.value)} size="small" helperText="Default: aetos" />
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", gap: 2 }}>
|
||||||
|
<TextField
|
||||||
|
label="Start Date"
|
||||||
|
type="datetime-local"
|
||||||
|
value={startDate}
|
||||||
|
onChange={(e) => setStartDate(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
InputLabelProps={{ shrink: true }}
|
||||||
|
sx={{ flex: 1 }}
|
||||||
|
/>
|
||||||
|
<TextField
|
||||||
|
label="End Date"
|
||||||
|
type="datetime-local"
|
||||||
|
value={endDate}
|
||||||
|
onChange={(e) => setEndDate(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
InputLabelProps={{ shrink: true }}
|
||||||
|
sx={{ flex: 1 }}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
onClick={handleCreate}
|
||||||
|
disabled={createMutation.isPending || !accountName || (sourceType === "file" && (!uploadedPath || !format)) || (sourceType === "email" && !format)}
|
||||||
|
>
|
||||||
|
{createMutation.isPending ? "Creating..." : "Create Fetch Request"}
|
||||||
|
</Button>
|
||||||
|
</Box>
|
||||||
|
</Paper>
|
||||||
|
|
||||||
|
<Paper sx={{ borderRadius: 4 }} variant="outlined">
|
||||||
|
<Box sx={{ display: "flex", alignItems: "center", justifyContent: "space-between", p: 2, pb: 0 }}>
|
||||||
|
<Typography variant="subtitle1" fontWeight={600}>
|
||||||
|
Fetch Requests
|
||||||
|
</Typography>
|
||||||
|
<IconButton onClick={() => refetch()} disabled={isFetching}>
|
||||||
|
<RefreshIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{isLoading ? (
|
||||||
|
<Box sx={{ display: "flex", justifyContent: "center", p: 4 }}>
|
||||||
|
<CircularProgress />
|
||||||
|
</Box>
|
||||||
|
) : requests.length === 0 ? (
|
||||||
|
<Box sx={{ p: 4, textAlign: "center", color: "text.secondary" }}>
|
||||||
|
No fetch requests yet
|
||||||
|
</Box>
|
||||||
|
) : (
|
||||||
|
<TableContainer>
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>Fingerprint</TableCell>
|
||||||
|
<TableCell>Source</TableCell>
|
||||||
|
<TableCell>Account</TableCell>
|
||||||
|
<TableCell>Status</TableCell>
|
||||||
|
<TableCell>Created</TableCell>
|
||||||
|
<TableCell align="right">Actions</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{requests.map((req: FetchRequest) => (
|
||||||
|
<TableRow key={req.id}>
|
||||||
|
<TableCell sx={{ fontFamily: "monospace", fontSize: "0.8rem" }}>
|
||||||
|
<Box sx={{ display: "flex", alignItems: "center", gap: 0.5 }}>
|
||||||
|
{req.fingerprint}
|
||||||
|
<IconButton
|
||||||
|
size="small"
|
||||||
|
onClick={() => {
|
||||||
|
navigator.clipboard.writeText(req.fingerprint);
|
||||||
|
setSnackbar({ message: "Copied!", severity: "success" });
|
||||||
|
}}
|
||||||
|
sx={{ opacity: 0.5, '&:hover': { opacity: 1 } }}
|
||||||
|
>
|
||||||
|
<ContentCopyIcon sx={{ fontSize: 14 }} />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
{"path" in req.source ? "File" : "Email"}
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>{req.account_name}</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
<Chip
|
||||||
|
label={req.status.replace(/_/g, " ")}
|
||||||
|
color={statusColors[req.status]}
|
||||||
|
size="small"
|
||||||
|
/>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>{formatDate(req.created_at)}</TableCell>
|
||||||
|
<TableCell align="right">
|
||||||
|
<IconButton size="small" onClick={() => setDeleteTarget(req)}>
|
||||||
|
<DeleteIcon fontSize="small" />
|
||||||
|
</IconButton>
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
)}
|
||||||
|
</Paper>
|
||||||
|
|
||||||
|
<Snackbar
|
||||||
|
open={!!snackbar}
|
||||||
|
autoHideDuration={4000}
|
||||||
|
onClose={() => setSnackbar(null)}
|
||||||
|
anchorOrigin={{ vertical: "bottom", horizontal: "center" }}
|
||||||
|
>
|
||||||
|
{snackbar ? <Alert severity={snackbar.severity} onClose={() => setSnackbar(null)}>{snackbar.message}</Alert> : undefined}
|
||||||
|
</Snackbar>
|
||||||
|
|
||||||
|
<Dialog open={!!deleteTarget} onClose={() => setDeleteTarget(null)}>
|
||||||
|
<DialogTitle>Delete Fetch Request?</DialogTitle>
|
||||||
|
<DialogContent>
|
||||||
|
<DialogContentText>
|
||||||
|
This will permanently delete the fetch request and all associated data.
|
||||||
|
</DialogContentText>
|
||||||
|
</DialogContent>
|
||||||
|
<DialogActions>
|
||||||
|
<Button onClick={() => setDeleteTarget(null)}>Cancel</Button>
|
||||||
|
<Button onClick={handleDelete} color="error" disabled={deleteMutation.isPending}>
|
||||||
|
{deleteMutation.isPending ? "Deleting..." : "Delete"}
|
||||||
|
</Button>
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -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: {
|
||||||
@@ -91,6 +91,32 @@ export default function Header({
|
|||||||
|
|
||||||
<span style={{ flexGrow: 1 }} />
|
<span style={{ flexGrow: 1 }} />
|
||||||
|
|
||||||
|
{/* NAV LINKS */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: { xs: "none", md: "flex" },
|
||||||
|
alignItems: "center",
|
||||||
|
mr: 2,
|
||||||
|
gap: 1,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{[
|
||||||
|
{ label: "Dashboard", path: "/dashboard" },
|
||||||
|
{ label: "Fetch", path: "/fetch-requests" },
|
||||||
|
{ label: "Reports", path: "/reports" },
|
||||||
|
].map(({ label, path }) => (
|
||||||
|
<Button
|
||||||
|
key={path}
|
||||||
|
color="inherit"
|
||||||
|
onClick={() => navigate(path)}
|
||||||
|
sx={{ textTransform: "none", fontWeight: 500, px: 1.5 }}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
{label}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</Box>
|
||||||
|
|
||||||
{/* AUTH SECTION */}
|
{/* AUTH SECTION */}
|
||||||
{isAuthenticated ? (
|
{isAuthenticated ? (
|
||||||
<>
|
<>
|
||||||
|
|||||||
227
src/Home.tsx
227
src/Home.tsx
@@ -1,70 +1,180 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Box, Typography, Button, Container, Stack } from "@mui/material";
|
import { Box, Typography, Button, Container, Grid, Paper, Chip } from "@mui/material";
|
||||||
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import DashboardIcon from "@mui/icons-material/Dashboard";
|
||||||
|
import SyncIcon from "@mui/icons-material/Sync";
|
||||||
|
import BarChartIcon from "@mui/icons-material/BarChart";
|
||||||
|
import SettingsIcon from "@mui/icons-material/Settings";
|
||||||
import ArrowForwardIcon from "@mui/icons-material/ArrowForward";
|
import ArrowForwardIcon from "@mui/icons-material/ArrowForward";
|
||||||
|
import { useAuth } from "../react-auth";
|
||||||
|
|
||||||
|
interface FeatureCardProps {
|
||||||
|
icon: React.ReactNode;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
path: string;
|
||||||
|
label?: string;
|
||||||
|
accent: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
function FeatureCard({ icon, title, description, path, label, accent }: FeatureCardProps) {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Paper
|
||||||
|
elevation={0}
|
||||||
|
onClick={() => navigate(path)}
|
||||||
|
sx={{
|
||||||
|
p: 3,
|
||||||
|
borderRadius: 3,
|
||||||
|
border: "1px solid",
|
||||||
|
borderColor: "divider",
|
||||||
|
cursor: "pointer",
|
||||||
|
height: "100%",
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
position: "relative",
|
||||||
|
overflow: "hidden",
|
||||||
|
transition: "all 0.25s ease",
|
||||||
|
"&::before": {
|
||||||
|
content: '""',
|
||||||
|
position: "absolute",
|
||||||
|
top: 0,
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
|
height: 3,
|
||||||
|
background: accent,
|
||||||
|
opacity: 0,
|
||||||
|
transition: "opacity 0.25s ease",
|
||||||
|
},
|
||||||
|
"&:hover": {
|
||||||
|
transform: "translateY(-4px)",
|
||||||
|
boxShadow: `0 12px 32px ${alpha(theme.palette.common.black, theme.palette.mode === "dark" ? 0.3 : 0.08)}`,
|
||||||
|
borderColor: "transparent",
|
||||||
|
"&::before": { opacity: 1 },
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box sx={{ display: "flex", alignItems: "center", gap: 1.5, mb: 1.5 }}>
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
width: 40,
|
||||||
|
height: 40,
|
||||||
|
borderRadius: 2,
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "center",
|
||||||
|
background: alpha(accent, 0.12),
|
||||||
|
color: accent,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{icon}
|
||||||
|
</Box>
|
||||||
|
<Typography variant="subtitle1" fontWeight={700}>
|
||||||
|
{title}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Typography variant="body2" color="text.secondary" sx={{ flex: 1, lineHeight: 1.6 }}>
|
||||||
|
{description}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
{label && (
|
||||||
|
<Chip
|
||||||
|
label={label}
|
||||||
|
size="small"
|
||||||
|
variant="outlined"
|
||||||
|
sx={{ mt: 2, alignSelf: "flex-start", textTransform: "capitalize" }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</Paper>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
const theme = useTheme();
|
||||||
|
const { currentUser } = useAuth();
|
||||||
|
|
||||||
|
const features = [
|
||||||
|
{
|
||||||
|
icon: <DashboardIcon />,
|
||||||
|
title: "Dashboard",
|
||||||
|
description: "Visualise inflows and outflows with interactive charts, drill into categories, and track trends over daily, weekly, and monthly periods.",
|
||||||
|
path: "/dashboard",
|
||||||
|
accent: theme.palette.mode === "dark" ? "#818cf8" : "#6366f1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <SyncIcon />,
|
||||||
|
title: "Fetch Requests",
|
||||||
|
description: "Upload bank statements or configure email ingestion to auto-import transactions. Track pipeline status from pending through to completion.",
|
||||||
|
path: "/fetch-requests",
|
||||||
|
accent: theme.palette.mode === "dark" ? "#34d399" : "#10b981",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <BarChartIcon />,
|
||||||
|
title: "Report Snapshots",
|
||||||
|
description: "Generate cached report snapshots with custom filters — accounts, date ranges, amount bounds — then pin a snapshot on the dashboard for consistent comparisons.",
|
||||||
|
path: "/reports",
|
||||||
|
accent: theme.palette.mode === "dark" ? "#fbbf24" : "#f59e0b",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <SettingsIcon />,
|
||||||
|
title: "Admin",
|
||||||
|
description: "Full CRUD over accounts, expenses, tags, and payors. Manage your data programmatically through the OpenAPI-driven admin panel.",
|
||||||
|
path: "/admin",
|
||||||
|
accent: theme.palette.mode === "dark" ? "#e879f9" : "#d946ef",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
width: "100%",
|
minHeight: "calc(100vh - 64px)",
|
||||||
minHeight: "calc(100vh - 64px)", // accounting for header
|
|
||||||
display: "flex",
|
display: "flex",
|
||||||
alignItems: "center",
|
flexDirection: "column",
|
||||||
justifyContent: "center",
|
|
||||||
position: "relative",
|
position: "relative",
|
||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
"&::before": {
|
"&::before": {
|
||||||
content: '""',
|
content: '""',
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
top: "-20%",
|
top: "-15%",
|
||||||
left: "-10%",
|
left: "-8%",
|
||||||
width: "50%",
|
width: "45%",
|
||||||
height: "60%",
|
height: "55%",
|
||||||
background: "radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(0,0,0,0) 70%)",
|
background: "radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%)",
|
||||||
zIndex: 0,
|
zIndex: 0,
|
||||||
},
|
},
|
||||||
"&::after": {
|
"&::after": {
|
||||||
content: '""',
|
content: '""',
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
bottom: "-20%",
|
bottom: "-15%",
|
||||||
right: "-10%",
|
right: "-8%",
|
||||||
width: "50%",
|
width: "45%",
|
||||||
height: "60%",
|
height: "55%",
|
||||||
background: "radial-gradient(circle, rgba(236,72,153,0.15) 0%, rgba(0,0,0,0) 70%)",
|
background: "radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%)",
|
||||||
zIndex: 0,
|
zIndex: 0,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Container maxWidth="lg" sx={{ position: "relative", zIndex: 1 }}>
|
<Container maxWidth="lg" sx={{ position: "relative", zIndex: 1, flex: 1, display: "flex", flexDirection: "column", justifyContent: "center", py: 6 }}>
|
||||||
<Stack
|
<Box
|
||||||
spacing={4}
|
|
||||||
alignItems="center"
|
|
||||||
textAlign="center"
|
|
||||||
sx={{
|
sx={{
|
||||||
p: { xs: 4, md: 8 },
|
textAlign: "center",
|
||||||
backdropFilter: "blur(20px)",
|
mb: 6,
|
||||||
backgroundColor: (theme) =>
|
|
||||||
theme.palette.mode === "dark" ? "rgba(255, 255, 255, 0.03)" : "rgba(255, 255, 255, 0.6)",
|
|
||||||
border: "1px solid",
|
|
||||||
borderColor: "divider",
|
|
||||||
borderRadius: 4,
|
|
||||||
boxShadow: (theme) =>
|
|
||||||
theme.palette.mode === "dark"
|
|
||||||
? "0 8px 32px 0 rgba(0, 0, 0, 0.37)"
|
|
||||||
: "0 8px 32px 0 rgba(31, 38, 135, 0.07)",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography
|
<Typography
|
||||||
variant="h1"
|
variant="h1"
|
||||||
sx={{
|
sx={{
|
||||||
fontWeight: 800,
|
fontWeight: 800,
|
||||||
fontSize: { xs: "3rem", md: "5rem" },
|
fontSize: { xs: "2.5rem", sm: "3.5rem", md: "5rem" },
|
||||||
background: "linear-gradient(45deg, #6366f1 30%, #ec4899 90%)",
|
background: "linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%)",
|
||||||
WebkitBackgroundClip: "text",
|
WebkitBackgroundClip: "text",
|
||||||
WebkitTextFillColor: "transparent",
|
WebkitTextFillColor: "transparent",
|
||||||
|
letterSpacing: "-0.03em",
|
||||||
mb: 2,
|
mb: 2,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -72,14 +182,20 @@ export default function Home() {
|
|||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Typography
|
<Typography
|
||||||
variant="h5"
|
variant="h6"
|
||||||
color="text.secondary"
|
color="text.secondary"
|
||||||
sx={{ maxWidth: "600px", lineHeight: 1.6 }}
|
sx={{
|
||||||
|
maxWidth: 580,
|
||||||
|
mx: "auto",
|
||||||
|
lineHeight: 1.7,
|
||||||
|
fontWeight: 400,
|
||||||
|
fontSize: { xs: "1rem", md: "1.15rem" },
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
Your intelligent, extensible financial ledger. Control accounts, manage transactions, and track your data dynamically with our OpenAPI-driven architecture.
|
Your intelligent, extensible financial ledger. Import transactions, generate reports, and stay on top of your cashflow.
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Box mt={4}>
|
<Box sx={{ mt: 4, display: "flex", gap: 2, justifyContent: "center", flexWrap: "wrap" }}>
|
||||||
<Button
|
<Button
|
||||||
variant="contained"
|
variant="contained"
|
||||||
size="large"
|
size="large"
|
||||||
@@ -87,21 +203,44 @@ export default function Home() {
|
|||||||
onClick={() => navigate("/dashboard")}
|
onClick={() => navigate("/dashboard")}
|
||||||
sx={{
|
sx={{
|
||||||
px: 4,
|
px: 4,
|
||||||
py: 1.5,
|
py: 1.4,
|
||||||
borderRadius: "50px",
|
borderRadius: "50px",
|
||||||
fontWeight: "bold",
|
fontWeight: 700,
|
||||||
background: "linear-gradient(45deg, #6366f1 30%, #ec4899 90%)",
|
background: "linear-gradient(135deg, #6366f1 0%, #ec4899 100%)",
|
||||||
transition: "transform 0.2s ease-in-out, box-shadow 0.2s",
|
transition: "transform 0.2s ease, box-shadow 0.2s",
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
transform: "translateY(-3px)",
|
transform: "translateY(-2px)",
|
||||||
boxShadow: "0 8px 20px rgba(236,72,153,0.4)",
|
boxShadow: `0 8px 24px ${alpha(theme.palette.primary.main, 0.35)}`,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Enter Dashboard
|
Enter Dashboard
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="outlined"
|
||||||
|
size="large"
|
||||||
|
onClick={() => navigate("/fetch-requests")}
|
||||||
|
sx={{
|
||||||
|
px: 4,
|
||||||
|
py: 1.4,
|
||||||
|
borderRadius: "50px",
|
||||||
|
fontWeight: 600,
|
||||||
|
borderWidth: 2,
|
||||||
|
"&:hover": { borderWidth: 2 },
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Import Data
|
||||||
|
</Button>
|
||||||
</Box>
|
</Box>
|
||||||
</Stack>
|
</Box>
|
||||||
|
|
||||||
|
<Grid container spacing={3}>
|
||||||
|
{features.map((f) => (
|
||||||
|
<Grid key={f.title} size={{ xs: 12, sm: 6, md: 3 }}>
|
||||||
|
<FeatureCard {...f} />
|
||||||
|
</Grid>
|
||||||
|
))}
|
||||||
|
</Grid>
|
||||||
</Container>
|
</Container>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
|
|||||||
273
src/ReportSnapshots.tsx
Normal file
273
src/ReportSnapshots.tsx
Normal file
@@ -0,0 +1,273 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Container,
|
||||||
|
Paper,
|
||||||
|
Typography,
|
||||||
|
TextField,
|
||||||
|
Button,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableContainer,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
IconButton,
|
||||||
|
CircularProgress,
|
||||||
|
Alert,
|
||||||
|
Snackbar,
|
||||||
|
Dialog,
|
||||||
|
DialogTitle,
|
||||||
|
DialogContent,
|
||||||
|
DialogContentText,
|
||||||
|
DialogActions,
|
||||||
|
Switch,
|
||||||
|
FormControlLabel,
|
||||||
|
Chip,
|
||||||
|
} from "@mui/material";
|
||||||
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
|
import AddCircleIcon from "@mui/icons-material/AddCircle";
|
||||||
|
import RefreshIcon from "@mui/icons-material/Refresh";
|
||||||
|
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
|
||||||
|
import {
|
||||||
|
useReportSnapshotsList,
|
||||||
|
useCreateSnapshot,
|
||||||
|
useDeleteSnapshot,
|
||||||
|
} from "./features/report-snapshots";
|
||||||
|
import type { ReportSnapshot } from "./features/report-snapshots";
|
||||||
|
|
||||||
|
function formatDate(iso: string) {
|
||||||
|
const d = new Date(iso);
|
||||||
|
return d.toLocaleString();
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ReportSnapshots() {
|
||||||
|
const [ignoreSelf, setIgnoreSelf] = React.useState(true);
|
||||||
|
const [startDate, setStartDate] = React.useState("");
|
||||||
|
const [endDate, setEndDate] = React.useState("");
|
||||||
|
const [minAmount, setMinAmount] = React.useState("");
|
||||||
|
const [maxAmount, setMaxAmount] = React.useState("");
|
||||||
|
const [snackbar, setSnackbar] = React.useState<{ message: string; severity: "success" | "error" } | null>(null);
|
||||||
|
const [deleteTarget, setDeleteTarget] = React.useState<ReportSnapshot | null>(null);
|
||||||
|
const [createdSnapshotId, setCreatedSnapshotId] = React.useState<string | null>(null);
|
||||||
|
|
||||||
|
const { data: listData, isLoading, isFetching, refetch } = useReportSnapshotsList();
|
||||||
|
const createMutation = useCreateSnapshot();
|
||||||
|
const deleteMutation = useDeleteSnapshot();
|
||||||
|
|
||||||
|
const snapshots = listData?.data ?? [];
|
||||||
|
|
||||||
|
const handleCreate = async () => {
|
||||||
|
try {
|
||||||
|
const result = await createMutation.mutateAsync({
|
||||||
|
ignore_self: ignoreSelf || null,
|
||||||
|
start_date: startDate ? new Date(startDate).toISOString() : null,
|
||||||
|
end_date: endDate ? new Date(endDate).toISOString() : null,
|
||||||
|
min_amount: minAmount ? parseFloat(minAmount) : null,
|
||||||
|
max_amount: maxAmount ? parseFloat(maxAmount) : null,
|
||||||
|
});
|
||||||
|
const snapshotId = (result as any)?.snapshot_id;
|
||||||
|
if (snapshotId) {
|
||||||
|
setCreatedSnapshotId(snapshotId);
|
||||||
|
setSnackbar({ message: `Snapshot created: ${snapshotId}`, severity: "success" });
|
||||||
|
} else {
|
||||||
|
setSnackbar({ message: "Snapshot created", severity: "success" });
|
||||||
|
}
|
||||||
|
resetForm();
|
||||||
|
} catch (err: any) {
|
||||||
|
setSnackbar({ message: err?.response?.data?.detail || "Failed to create snapshot", severity: "error" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const resetForm = () => {
|
||||||
|
setIgnoreSelf(false);
|
||||||
|
setStartDate("");
|
||||||
|
setEndDate("");
|
||||||
|
setMinAmount("");
|
||||||
|
setMaxAmount("");
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDelete = async () => {
|
||||||
|
if (!deleteTarget) return;
|
||||||
|
try {
|
||||||
|
await deleteMutation.mutateAsync(deleteTarget.snapshot_id);
|
||||||
|
setSnackbar({ message: "Snapshot deleted", severity: "success" });
|
||||||
|
} catch {
|
||||||
|
setSnackbar({ message: "Failed to delete snapshot", severity: "error" });
|
||||||
|
}
|
||||||
|
setDeleteTarget(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container sx={{ mt: 4, mb: 4 }}>
|
||||||
|
<Typography variant="h5" fontWeight="bold" gutterBottom>
|
||||||
|
Report Snapshots
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Paper sx={{ p: 3, mb: 4, borderRadius: 4 }} variant="outlined">
|
||||||
|
<Typography variant="subtitle1" fontWeight={600} gutterBottom>
|
||||||
|
Generate New Snapshot
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", flexDirection: "column", gap: 2 }}>
|
||||||
|
<FormControlLabel
|
||||||
|
control={<Switch checked={ignoreSelf} onChange={(e) => setIgnoreSelf(e.target.checked)} />}
|
||||||
|
label="Ignore self-transfers"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", gap: 2 }}>
|
||||||
|
<TextField
|
||||||
|
label="Start Date"
|
||||||
|
type="datetime-local"
|
||||||
|
value={startDate}
|
||||||
|
onChange={(e) => setStartDate(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
InputLabelProps={{ shrink: true }}
|
||||||
|
sx={{ flex: 1 }}
|
||||||
|
/>
|
||||||
|
<TextField
|
||||||
|
label="End Date"
|
||||||
|
type="datetime-local"
|
||||||
|
value={endDate}
|
||||||
|
onChange={(e) => setEndDate(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
InputLabelProps={{ shrink: true }}
|
||||||
|
sx={{ flex: 1 }}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", gap: 2 }}>
|
||||||
|
<TextField
|
||||||
|
label="Min Amount"
|
||||||
|
type="number"
|
||||||
|
value={minAmount}
|
||||||
|
onChange={(e) => setMinAmount(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
sx={{ flex: 1 }}
|
||||||
|
/>
|
||||||
|
<TextField
|
||||||
|
label="Max Amount"
|
||||||
|
type="number"
|
||||||
|
value={maxAmount}
|
||||||
|
onChange={(e) => setMaxAmount(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
sx={{ flex: 1 }}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
startIcon={<AddCircleIcon />}
|
||||||
|
onClick={handleCreate}
|
||||||
|
disabled={createMutation.isPending}
|
||||||
|
>
|
||||||
|
{createMutation.isPending ? "Generating..." : "Generate Snapshot"}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
{createdSnapshotId && (
|
||||||
|
<Alert severity="success" onClose={() => setCreatedSnapshotId(null)}>
|
||||||
|
Snapshot created: <strong>{createdSnapshotId}</strong>. Use it in the Dashboard snapshot selector.
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
</Box>
|
||||||
|
</Paper>
|
||||||
|
|
||||||
|
<Paper sx={{ borderRadius: 4 }} variant="outlined">
|
||||||
|
<Box sx={{ display: "flex", alignItems: "center", justifyContent: "space-between", p: 2, pb: 0 }}>
|
||||||
|
<Typography variant="subtitle1" fontWeight={600}>
|
||||||
|
Existing Snapshots
|
||||||
|
</Typography>
|
||||||
|
<IconButton onClick={() => refetch()} disabled={isFetching}>
|
||||||
|
<RefreshIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{isLoading ? (
|
||||||
|
<Box sx={{ display: "flex", justifyContent: "center", p: 4 }}>
|
||||||
|
<CircularProgress />
|
||||||
|
</Box>
|
||||||
|
) : snapshots.length === 0 ? (
|
||||||
|
<Box sx={{ p: 4, textAlign: "center", color: "text.secondary" }}>
|
||||||
|
No snapshots yet
|
||||||
|
</Box>
|
||||||
|
) : (
|
||||||
|
<TableContainer>
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>Snapshot ID</TableCell>
|
||||||
|
<TableCell>Created</TableCell>
|
||||||
|
<TableCell>Query</TableCell>
|
||||||
|
<TableCell align="right">Actions</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{snapshots.map((snap: ReportSnapshot) => (
|
||||||
|
<TableRow key={snap.id}>
|
||||||
|
<TableCell sx={{ fontFamily: "monospace", fontSize: "0.8rem" }}>
|
||||||
|
<Box sx={{ display: "flex", alignItems: "center", gap: 0.5 }}>
|
||||||
|
{snap.snapshot_id}
|
||||||
|
<IconButton
|
||||||
|
size="small"
|
||||||
|
onClick={() => {
|
||||||
|
navigator.clipboard.writeText(snap.snapshot_id);
|
||||||
|
setSnackbar({ message: "Copied!", severity: "success" });
|
||||||
|
}}
|
||||||
|
sx={{ opacity: 0.5, '&:hover': { opacity: 1 } }}
|
||||||
|
>
|
||||||
|
<ContentCopyIcon sx={{ fontSize: 14 }} />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>{formatDate(snap.created_at)}</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
{snap.query ? (
|
||||||
|
<Box sx={{ display: "flex", gap: 0.5, flexWrap: "wrap" }}>
|
||||||
|
{snap.query.accounts && <Chip label={`${snap.query.accounts.length} account(s)`} size="small" variant="outlined" />}
|
||||||
|
{snap.query.ignore_self && <Chip label="ignore_self" size="small" variant="outlined" />}
|
||||||
|
{snap.query.start_date && <Chip label="start" size="small" variant="outlined" />}
|
||||||
|
{snap.query.end_date && <Chip label="end" size="small" variant="outlined" />}
|
||||||
|
</Box>
|
||||||
|
) : (
|
||||||
|
<Typography variant="body2" color="text.secondary">—</Typography>
|
||||||
|
)}
|
||||||
|
</TableCell>
|
||||||
|
<TableCell align="right">
|
||||||
|
<IconButton size="small" onClick={() => setDeleteTarget(snap)}>
|
||||||
|
<DeleteIcon fontSize="small" />
|
||||||
|
</IconButton>
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
)}
|
||||||
|
</Paper>
|
||||||
|
|
||||||
|
<Snackbar
|
||||||
|
open={!!snackbar}
|
||||||
|
autoHideDuration={4000}
|
||||||
|
onClose={() => setSnackbar(null)}
|
||||||
|
anchorOrigin={{ vertical: "bottom", horizontal: "center" }}
|
||||||
|
>
|
||||||
|
{snackbar ? <Alert severity={snackbar.severity} onClose={() => setSnackbar(null)}>{snackbar.message}</Alert> : undefined}
|
||||||
|
</Snackbar>
|
||||||
|
|
||||||
|
<Dialog open={!!deleteTarget} onClose={() => setDeleteTarget(null)}>
|
||||||
|
<DialogTitle>Delete Snapshot?</DialogTitle>
|
||||||
|
<DialogContent>
|
||||||
|
<DialogContentText>
|
||||||
|
This will permanently delete the report snapshot.
|
||||||
|
</DialogContentText>
|
||||||
|
</DialogContent>
|
||||||
|
<DialogActions>
|
||||||
|
<Button onClick={() => setDeleteTarget(null)}>Cancel</Button>
|
||||||
|
<Button onClick={handleDelete} color="error" disabled={deleteMutation.isPending}>
|
||||||
|
{deleteMutation.isPending ? "Deleting..." : "Delete"}
|
||||||
|
</Button>
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,51 +1,61 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import {
|
import {
|
||||||
ReportData
|
ReportData,
|
||||||
|
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;
|
||||||
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,49 +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,
|
|
||||||
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 }));
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<DashboardView
|
|
||||||
{...props}
|
|
||||||
state={state}
|
|
||||||
setState={setState}
|
|
||||||
toggleMode={toggleMode}
|
|
||||||
togglePeriodType={togglePeriodType}
|
|
||||||
toggleComparison={toggleComparison}
|
|
||||||
setSelectedPeriodId={setSelectedPeriodId}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -3,127 +3,98 @@ 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 { DashboardProps, DashboardState } from "./Dashboard.models";
|
import { DashboardViewProps } from "./Dashboard.models";
|
||||||
|
|
||||||
interface ViewProps extends DashboardProps {
|
|
||||||
state: DashboardState;
|
|
||||||
setState: React.Dispatch<React.SetStateAction<DashboardState>>;
|
|
||||||
toggleMode: () => void;
|
|
||||||
togglePeriodType: () => void;
|
|
||||||
setSelectedPeriodId: (id: string | 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,
|
|
||||||
}: ViewProps) {
|
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
const themeMode = theme.palette.mode;
|
|
||||||
const { mode, periodType, comparison, selectedPeriodId } = 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}>
|
||||||
{config.sections.map((section) => {
|
{config.sections.map((section) => {
|
||||||
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}
|
|
||||||
|
|
||||||
togglePeriodType={togglePeriodType}
|
|
||||||
toggleComparison={toggleComparison}
|
|
||||||
setSelectedPeriodId={setSelectedPeriodId}
|
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
export { default } from "./Dashboard";
|
export { default } from "./Dashboard.view";
|
||||||
export * from "./Dashboard.models";
|
export * from "./Dashboard.models";
|
||||||
|
|||||||
73
src/components/HistoryChart/HistoryChart.adapter.ts
Normal file
73
src/components/HistoryChart/HistoryChart.adapter.ts
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
import { ReportData } from "../../features/report";
|
||||||
|
import {
|
||||||
|
mergeBucketPeriods,
|
||||||
|
getAmount,
|
||||||
|
PeriodKey,
|
||||||
|
} from "../report.helpers";
|
||||||
|
import { ChartDataPoint } from "./HistoryChart.models";
|
||||||
|
|
||||||
|
// ─── Tab → PeriodKey ─────────────────────────────────────────
|
||||||
|
|
||||||
|
const TAB_TO_KEY: Record<string, PeriodKey> = {
|
||||||
|
Daily: "daily",
|
||||||
|
Weekly: "weekly",
|
||||||
|
Monthly: "monthly",
|
||||||
|
"All Time": "all",
|
||||||
|
};
|
||||||
|
|
||||||
|
export function tabToKey(tab: string): PeriodKey {
|
||||||
|
return TAB_TO_KEY[tab] ?? "all";
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── Comparison ──────────────────────────────────────────────
|
||||||
|
|
||||||
|
function attachComparison(
|
||||||
|
points: ChartDataPoint[],
|
||||||
|
key: PeriodKey
|
||||||
|
): ChartDataPoint[] {
|
||||||
|
const getCompareIndex = (i: number) => {
|
||||||
|
if (key === "daily") return i - 7;
|
||||||
|
if (key === "weekly") return i - 4;
|
||||||
|
if (key === "monthly") return i - 12;
|
||||||
|
return -1;
|
||||||
|
};
|
||||||
|
|
||||||
|
return points.map((p, i) => {
|
||||||
|
const ci = getCompareIndex(i);
|
||||||
|
|
||||||
|
return {
|
||||||
|
...p,
|
||||||
|
compare:
|
||||||
|
ci >= 0 && points[ci]
|
||||||
|
? {
|
||||||
|
id: points[ci].id,
|
||||||
|
label: points[ci].label,
|
||||||
|
amount: points[ci].amount,
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── Main adapter ────────────────────────────────────────────
|
||||||
|
|
||||||
|
export function buildChartData(
|
||||||
|
reportData: ReportData,
|
||||||
|
key: PeriodKey,
|
||||||
|
flow: "outflows" | "inflows",
|
||||||
|
comparison: boolean
|
||||||
|
): ChartDataPoint[] {
|
||||||
|
const merged = mergeBucketPeriods(reportData.buckets, key);
|
||||||
|
|
||||||
|
let points: ChartDataPoint[] = merged.map((p) => ({
|
||||||
|
id: p.id,
|
||||||
|
label: p.label,
|
||||||
|
amount: getAmount(p),
|
||||||
|
}));
|
||||||
|
|
||||||
|
if (comparison) {
|
||||||
|
points = attachComparison(points, key);
|
||||||
|
}
|
||||||
|
|
||||||
|
return points;
|
||||||
|
}
|
||||||
@@ -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,146 +1,31 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { HistoryChartProps, ChartDataPoint } from "./HistoryChart.models";
|
|
||||||
import HistoryChartView from "./HistoryChart.view";
|
import HistoryChartView from "./HistoryChart.view";
|
||||||
import { ReportPeriod } from "../../features/report";
|
import { buildChartData, tabToKey } from "./HistoryChart.adapter";
|
||||||
|
import { HistoryChartProps } from "./HistoryChart.props";
|
||||||
|
|
||||||
type DecoratedPeriod = ReportPeriod & {
|
|
||||||
id: string;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const TAB_TO_KEY: Record<string, "weekly" | "monthly" | "yearly" | "fyly" | "full"> = {
|
|
||||||
Weekly: "weekly",
|
|
||||||
Monthly: "monthly",
|
|
||||||
Yearly: "yearly",
|
|
||||||
'Financial Year': "fyly",
|
|
||||||
'All Time': "full"
|
|
||||||
};
|
|
||||||
|
|
||||||
function getAmount(p: ReportPeriod, mode: "expense" | "income") {
|
|
||||||
return mode === "expense" ? p.expenses.sum : p.incomes.sum;
|
|
||||||
}
|
|
||||||
|
|
||||||
function mergeMetric(a: any, b: any) {
|
|
||||||
const sum = a.sum + b.sum;
|
|
||||||
const count = a.count + b.count;
|
|
||||||
|
|
||||||
return {
|
|
||||||
...a,
|
|
||||||
sum,
|
|
||||||
count,
|
|
||||||
average: count > 0 ? sum / count : 0,
|
|
||||||
transactions: a.transactions || b.transactions
|
|
||||||
? [
|
|
||||||
...(a.transactions || []),
|
|
||||||
...(b.transactions || [])
|
|
||||||
]
|
|
||||||
: undefined
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function mergeBuckets(
|
|
||||||
buckets: any[],
|
|
||||||
key: "weekly" | "monthly" | "yearly" | "fyly" | "full"
|
|
||||||
): DecoratedPeriod[] {
|
|
||||||
const map = new Map<string, DecoratedPeriod>();
|
|
||||||
|
|
||||||
for (const bucket of buckets) {
|
|
||||||
const periods = (bucket.periods[key] || []) as DecoratedPeriod[];
|
|
||||||
|
|
||||||
for (const p of periods) {
|
|
||||||
const existing = map.get(p.id);
|
|
||||||
|
|
||||||
if (!existing) {
|
|
||||||
map.set(p.id, {
|
|
||||||
...p,
|
|
||||||
expenses: { ...p.expenses },
|
|
||||||
incomes: { ...p.incomes }
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
map.set(p.id, {
|
|
||||||
...existing,
|
|
||||||
expenses: mergeMetric(existing.expenses, p.expenses),
|
|
||||||
incomes: mergeMetric(existing.incomes, p.incomes)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Array.from(map.values()).sort(
|
|
||||||
(a, b) => new Date(a.start).getTime() - new Date(b.start).getTime()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function attachComparison(
|
|
||||||
points: ChartDataPoint[],
|
|
||||||
key: "weekly" | "monthly" | "yearly" | "fyly" | "full"
|
|
||||||
): ChartDataPoint[] {
|
|
||||||
const getCompareIndex = (i: number) => {
|
|
||||||
if (key === "weekly") return i - 4;
|
|
||||||
if (key === "monthly") return i - 12;
|
|
||||||
if (key === "yearly") return i - 1;
|
|
||||||
if (key === "fyly") return i - 1;
|
|
||||||
return -1;
|
|
||||||
};
|
|
||||||
|
|
||||||
return points.map((p, i) => {
|
|
||||||
const ci = getCompareIndex(i);
|
|
||||||
|
|
||||||
return {
|
|
||||||
...p,
|
|
||||||
compare:
|
|
||||||
ci >= 0 && points[ci]
|
|
||||||
? {
|
|
||||||
id: points[ci].id,
|
|
||||||
label: points[ci].label,
|
|
||||||
amount: points[ci].amount
|
|
||||||
}
|
|
||||||
: undefined
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildChartData(
|
|
||||||
reportData: HistoryChartProps["reportData"],
|
|
||||||
key: "weekly" | "monthly" | "yearly" | "fyly" | "full",
|
|
||||||
mode: "expense" | "income",
|
|
||||||
comparison: boolean
|
|
||||||
): ChartDataPoint[] {
|
|
||||||
const merged = mergeBuckets(reportData.buckets, key);
|
|
||||||
console.log("Merged periods:", merged);
|
|
||||||
|
|
||||||
let points: ChartDataPoint[] = merged.map((p) => ({
|
|
||||||
id: p.id,
|
|
||||||
label: p.label,
|
|
||||||
amount: getAmount(p, mode)
|
|
||||||
}));
|
|
||||||
|
|
||||||
if (comparison) {
|
|
||||||
points = attachComparison(points, key);
|
|
||||||
}
|
|
||||||
|
|
||||||
return points;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function HistoryChart(props: HistoryChartProps) {
|
export default function HistoryChart(props: HistoryChartProps) {
|
||||||
const {
|
const {
|
||||||
tabs,
|
settings,
|
||||||
reportData,
|
reportData,
|
||||||
mode,
|
state,
|
||||||
periodType,
|
stateSetters,
|
||||||
comparison,
|
|
||||||
selectedPeriodId,
|
isFetching,
|
||||||
setSelectedPeriodId
|
|
||||||
} = 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 = TAB_TO_KEY[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
|
||||||
@@ -155,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;
|
||||||
@@ -184,7 +68,7 @@ export default function HistoryChart(props: HistoryChartProps) {
|
|||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
setSelectedPeriodId(null);
|
setSelectedPeriodId(null);
|
||||||
}, [activeTab, periodType]);
|
}, [activeTab]);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (
|
if (
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
31
src/components/LatestItems/LatestItems.adapter.ts
Normal file
31
src/components/LatestItems/LatestItems.adapter.ts
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import { ReportData, GroupKey } from "../../features/report";
|
||||||
|
import {
|
||||||
|
formatCurrency,
|
||||||
|
extractFilteredTransactions,
|
||||||
|
} from "../report.helpers";
|
||||||
|
import { LatestItem } from "./LatestItems.models";
|
||||||
|
|
||||||
|
// ─── Main adapter ────────────────────────────────────────────
|
||||||
|
|
||||||
|
export function buildLatestItems(
|
||||||
|
reportData: ReportData,
|
||||||
|
selectedPeriodId: string | null | undefined,
|
||||||
|
selectedGroupKey: GroupKey | null | undefined,
|
||||||
|
flow: "outflows" | "inflows"
|
||||||
|
): LatestItem[] {
|
||||||
|
const txns = extractFilteredTransactions(reportData, selectedPeriodId, selectedGroupKey);
|
||||||
|
|
||||||
|
return txns
|
||||||
|
.sort(
|
||||||
|
(a, b) =>
|
||||||
|
new Date(b.occurred_at).getTime() -
|
||||||
|
new Date(a.occurred_at).getTime()
|
||||||
|
)
|
||||||
|
.map((t, index) => ({
|
||||||
|
id: index + 1,
|
||||||
|
title: t.payee.name,
|
||||||
|
subtitle: t.tags.map((tag) => tag.name).join(", "),
|
||||||
|
amount: formatCurrency(t.amount),
|
||||||
|
timeAgo: new Date(t.occurred_at).toLocaleDateString("en-IN"),
|
||||||
|
}));
|
||||||
|
}
|
||||||
@@ -1,18 +1,7 @@
|
|||||||
import * as React from "react";
|
|
||||||
|
|
||||||
export interface LatestItem {
|
export interface LatestItem {
|
||||||
id: string | number;
|
id: string | number;
|
||||||
icon: React.ReactNode;
|
|
||||||
iconBgColor?: string;
|
|
||||||
title: string;
|
title: string;
|
||||||
subtitle: string;
|
subtitle: string;
|
||||||
amount: string;
|
amount: string;
|
||||||
timeAgo: string;
|
timeAgo: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LatestItemsListProps {
|
|
||||||
title?: string;
|
|
||||||
items: LatestItem[];
|
|
||||||
onViewAll?: () => void;
|
|
||||||
accentColor: string;
|
|
||||||
}
|
|
||||||
|
|||||||
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,210 +1,40 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import {
|
import { buildLatestItems } from "./LatestItems.adapter";
|
||||||
List,
|
import LatestItemsView from "./LatestItems.view";
|
||||||
ListItem,
|
import { LatestItemsProps } from "./LatestItems.props";
|
||||||
ListItemAvatar,
|
|
||||||
ListItemText,
|
|
||||||
Avatar,
|
|
||||||
Typography,
|
|
||||||
Box,
|
|
||||||
IconButton
|
|
||||||
} from "@mui/material";
|
|
||||||
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
|
||||||
|
|
||||||
import { ReportData, Transaction, ReportPeriod } from "../../features/report";
|
export default function LatestItems(props: LatestItemsProps) {
|
||||||
import { formatCurrency } from "../ProgressCard/ProgressCard.utils";
|
const {
|
||||||
|
reportData,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
isFetching,
|
||||||
|
} = props;
|
||||||
|
|
||||||
type Props = {
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
reportData: ReportData;
|
|
||||||
mode: "expense" | "income";
|
|
||||||
selectedPeriodId: string | null;
|
|
||||||
accentColor: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type DecoratedPeriod = ReportPeriod & {
|
|
||||||
id: string;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
function mergePeriods(
|
|
||||||
reportData: ReportData,
|
|
||||||
key: "weekly" | "monthly" | "yearly" | "fyly" | "full"
|
|
||||||
): DecoratedPeriod[] {
|
|
||||||
const map = new Map<string, DecoratedPeriod>();
|
|
||||||
|
|
||||||
for (const bucket of reportData.buckets) {
|
|
||||||
const periods = (bucket.periods[key] || []) as DecoratedPeriod[];
|
|
||||||
|
|
||||||
for (const p of periods) {
|
|
||||||
const existing = map.get(p.id);
|
|
||||||
|
|
||||||
if (!existing) {
|
|
||||||
map.set(p.id, {
|
|
||||||
...p,
|
|
||||||
expenses: {
|
|
||||||
...p.expenses,
|
|
||||||
transactions: [...(p.expenses.transactions || [])],
|
|
||||||
},
|
|
||||||
incomes: {
|
|
||||||
...p.incomes,
|
|
||||||
transactions: [...(p.incomes.transactions || [])],
|
|
||||||
},
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
existing.expenses.transactions?.push(...(p.expenses.transactions || []));
|
|
||||||
existing.incomes.transactions?.push(...(p.incomes.transactions || []));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Array.from(map.values());
|
|
||||||
}
|
|
||||||
|
|
||||||
function extractTransactions(
|
|
||||||
reportData: ReportData,
|
|
||||||
selectedPeriodId: string | null,
|
|
||||||
mode: "expense" | "income",
|
|
||||||
): Transaction[] {
|
|
||||||
let periods: DecoratedPeriod[] = [];
|
|
||||||
|
|
||||||
if (selectedPeriodId) {
|
|
||||||
const prefix = selectedPeriodId.split(":")[0];
|
|
||||||
|
|
||||||
const map: any = {
|
|
||||||
W: "weekly",
|
|
||||||
M: "monthly",
|
|
||||||
Y: "yearly",
|
|
||||||
FY: "fyly",
|
|
||||||
FULL: "full"
|
|
||||||
};
|
|
||||||
|
|
||||||
const key = map[prefix];
|
|
||||||
|
|
||||||
periods = mergePeriods(reportData, key);
|
|
||||||
const selected = periods.find(p => p.id === selectedPeriodId);
|
|
||||||
|
|
||||||
if (!selected) return [];
|
|
||||||
|
|
||||||
return mode === "expense"
|
|
||||||
? (selected.expenses.transactions || [])
|
|
||||||
: (selected.incomes.transactions || []);
|
|
||||||
}
|
|
||||||
|
|
||||||
periods = mergePeriods(reportData, "full");
|
|
||||||
|
|
||||||
if (!periods.length) return [];
|
|
||||||
|
|
||||||
const full = periods[0];
|
|
||||||
|
|
||||||
return mode === "expense"
|
|
||||||
? (full.expenses.transactions || [])
|
|
||||||
: (full.incomes.transactions || []);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function LatestItems({
|
|
||||||
reportData,
|
|
||||||
mode,
|
|
||||||
selectedPeriodId,
|
|
||||||
accentColor
|
|
||||||
}: Props) {
|
|
||||||
const [visibleCount, setVisibleCount] = React.useState(5);
|
const [visibleCount, setVisibleCount] = React.useState(5);
|
||||||
|
|
||||||
const items = React.useMemo(() => {
|
// Reset count when flow changes to start clean
|
||||||
const txns = extractTransactions(reportData, selectedPeriodId, mode);
|
React.useEffect(() => {
|
||||||
|
setVisibleCount(5);
|
||||||
|
}, [flow]);
|
||||||
|
|
||||||
return txns
|
const allItems = React.useMemo(() => {
|
||||||
.filter((t) => (mode === "expense" ? t.amount < 0 : t.amount >= 0))
|
return buildLatestItems(reportData, selectedPeriodId, selectedGroupKey, flow);
|
||||||
.sort(
|
}, [reportData, selectedPeriodId, selectedGroupKey, flow]);
|
||||||
(a, b) =>
|
|
||||||
new Date(b.occurred_at).getTime() -
|
|
||||||
new Date(a.occurred_at).getTime()
|
|
||||||
)
|
|
||||||
.map((t, index) => ({
|
|
||||||
id: index + 1,
|
|
||||||
title: t.payee.name,
|
|
||||||
subtitle: t.tags.map((tag) => tag.name).join(", "),
|
|
||||||
amount: formatCurrency(t.amount),
|
|
||||||
timeAgo: new Date(t.occurred_at).toLocaleDateString("en-IN"),
|
|
||||||
}));
|
|
||||||
}, [reportData, selectedPeriodId, mode]);
|
|
||||||
|
|
||||||
const isPeriodSelected = Boolean(selectedPeriodId);
|
|
||||||
|
|
||||||
const visibleItems = React.useMemo(() => {
|
const visibleItems = React.useMemo(() => {
|
||||||
if (!isPeriodSelected) return items.slice(0, 5);
|
return allItems.slice(0, visibleCount);
|
||||||
return items.slice(0, visibleCount);
|
}, [allItems, visibleCount]);
|
||||||
}, [items, isPeriodSelected, visibleCount]);
|
|
||||||
|
|
||||||
const canExpand = isPeriodSelected && visibleCount < items.length;
|
const canExpand = visibleCount < allItems.length;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ width: "100%", bgcolor: "background.paper", borderRadius: 4, p: 2 }}>
|
<LatestItemsView
|
||||||
<Box sx={{ mb: 2, px: 2 }}>
|
{...props}
|
||||||
<Typography variant="h6" fontWeight="bold">
|
items={visibleItems}
|
||||||
Recent Transactions
|
canExpand={canExpand}
|
||||||
</Typography>
|
onExpand={() => setVisibleCount((prev) => prev + 5)}
|
||||||
</Box>
|
/>
|
||||||
|
|
||||||
<List disablePadding>
|
|
||||||
{visibleItems.map((item, index) => (
|
|
||||||
<ListItem
|
|
||||||
key={item.id}
|
|
||||||
sx={{
|
|
||||||
px: { xs: 1, sm: 2 },
|
|
||||||
py: 2,
|
|
||||||
mb: index !== visibleItems.length - 1 ? 1 : 0,
|
|
||||||
borderRadius: 3,
|
|
||||||
"&:hover": { bgcolor: "action.hover" },
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ListItemAvatar>
|
|
||||||
<Avatar
|
|
||||||
variant="rounded"
|
|
||||||
sx={{
|
|
||||||
bgcolor: `${accentColor}22`,
|
|
||||||
width: 48,
|
|
||||||
height: 48,
|
|
||||||
borderRadius: 3,
|
|
||||||
mr: 2,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</ListItemAvatar>
|
|
||||||
|
|
||||||
<ListItemText
|
|
||||||
primary={
|
|
||||||
<Typography variant="subtitle1" fontWeight={600}>
|
|
||||||
{item.title}
|
|
||||||
</Typography>
|
|
||||||
}
|
|
||||||
secondary={
|
|
||||||
<Typography variant="body2" color="text.secondary">
|
|
||||||
{item.subtitle}
|
|
||||||
</Typography>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Box sx={{ textAlign: "right" }}>
|
|
||||||
<Typography variant="subtitle1" fontWeight={700}>
|
|
||||||
{item.amount}
|
|
||||||
</Typography>
|
|
||||||
<Typography variant="caption" color="text.secondary">
|
|
||||||
{item.timeAgo}
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
|
||||||
</ListItem>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{canExpand && (
|
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", mt: 2 }}>
|
|
||||||
<IconButton
|
|
||||||
size="small"
|
|
||||||
onClick={() => setVisibleCount((prev) => prev + 5)}
|
|
||||||
>
|
|
||||||
<ExpandMoreIcon />
|
|
||||||
</IconButton>
|
|
||||||
</Box>
|
|
||||||
)}
|
|
||||||
</List>
|
|
||||||
</Box>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,93 @@
|
|||||||
import LatestItemsListView from "./LatestItems.view";
|
import * as React from "react";
|
||||||
import { LatestItemsListProps } from "./LatestItems.models";
|
import {
|
||||||
|
List,
|
||||||
|
ListItem,
|
||||||
|
ListItemAvatar,
|
||||||
|
ListItemText,
|
||||||
|
Avatar,
|
||||||
|
Typography,
|
||||||
|
Box,
|
||||||
|
IconButton,
|
||||||
|
} from "@mui/material";
|
||||||
|
import { alpha } from "@mui/material/styles";
|
||||||
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
||||||
|
import { LatestItemsViewProps } from "./LatestItems.props";
|
||||||
|
|
||||||
export default function LatestItemsList(props: LatestItemsListProps) {
|
export default function LatestItemsView({
|
||||||
return <LatestItemsListView {...props} />;
|
items,
|
||||||
|
title,
|
||||||
|
canExpand,
|
||||||
|
onExpand,
|
||||||
|
isFetching,
|
||||||
|
colorScheme,
|
||||||
|
}: LatestItemsViewProps) {
|
||||||
|
const accentColor = colorScheme?.primary || "";
|
||||||
|
|
||||||
|
return (
|
||||||
|
<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 }}>
|
||||||
|
<Typography variant="h6" fontWeight="bold">
|
||||||
|
{title}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<List disablePadding>
|
||||||
|
{items.map((item, index) => (
|
||||||
|
<ListItem
|
||||||
|
key={item.id}
|
||||||
|
sx={{
|
||||||
|
px: { xs: 1, sm: 2 },
|
||||||
|
py: 2,
|
||||||
|
mb: index !== items.length - 1 ? 1 : 0,
|
||||||
|
borderRadius: 3,
|
||||||
|
"&:hover": { bgcolor: "action.hover" },
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ListItemAvatar>
|
||||||
|
<Avatar
|
||||||
|
variant="rounded"
|
||||||
|
sx={{
|
||||||
|
bgcolor: alpha(accentColor, 0.13),
|
||||||
|
width: 48,
|
||||||
|
height: 48,
|
||||||
|
borderRadius: 3,
|
||||||
|
mr: 2,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</ListItemAvatar>
|
||||||
|
|
||||||
|
<ListItemText
|
||||||
|
primary={
|
||||||
|
<Typography variant="subtitle1" fontWeight={600}>
|
||||||
|
{item.title}
|
||||||
|
</Typography>
|
||||||
|
}
|
||||||
|
secondary={
|
||||||
|
<Typography variant="body2" color="text.secondary">
|
||||||
|
{item.subtitle}
|
||||||
|
</Typography>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Box sx={{ textAlign: "right" }}>
|
||||||
|
<Typography variant="subtitle1" fontWeight={700}>
|
||||||
|
{item.amount}
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="caption" color="text.secondary">
|
||||||
|
{item.timeAgo}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
</ListItem>
|
||||||
|
))}
|
||||||
|
|
||||||
|
{canExpand && (
|
||||||
|
<Box sx={{ display: "flex", justifyContent: "center", mt: 2 }}>
|
||||||
|
<IconButton size="small" onClick={onExpand}>
|
||||||
|
<ExpandMoreIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
</List>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
export interface ProgressCardProps {
|
|
||||||
header: string;
|
|
||||||
summary?: string;
|
|
||||||
progressAmount: number;
|
|
||||||
totalAmount: number;
|
|
||||||
colorTheme?: "primary" | "secondary" | "error" | "info" | "success" | "warning";
|
|
||||||
compact?: boolean;
|
|
||||||
}
|
|
||||||
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,23 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import ProgressCardView from "./ProgressCard.view";
|
|
||||||
import { ProgressCardProps } from "./ProgressCard.models";
|
|
||||||
import { getPercentage, formatCurrency } from "./ProgressCard.utils";
|
|
||||||
|
|
||||||
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}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
export const getPercentage = (progressAmount: number, totalAmount: number) => {
|
|
||||||
if (!totalAmount) return 0;
|
|
||||||
return Math.min(100, Math.max(0, (progressAmount / totalAmount) * 100));
|
|
||||||
};
|
|
||||||
|
|
||||||
export const formatCurrency = (val: number) => {
|
|
||||||
const absVal = Math.abs(val);
|
|
||||||
if (absVal >= 100000) {
|
|
||||||
return `₹ ${(val / 100000).toFixed(2)}L`;
|
|
||||||
}
|
|
||||||
if (absVal >= 1000) {
|
|
||||||
return `₹ ${(val / 1000).toFixed(2)}k`;
|
|
||||||
}
|
|
||||||
return `₹ ${val.toFixed(2)}`;
|
|
||||||
};
|
|
||||||
@@ -8,77 +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;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function ProgressCardView({
|
export default function ProgressCardView({
|
||||||
header,
|
title,
|
||||||
colorTheme = "info",
|
settings,
|
||||||
percentage,
|
|
||||||
formattedProgress,
|
isFetching,
|
||||||
formattedTotal,
|
|
||||||
compact = false,
|
colorScheme,
|
||||||
}: ViewProps) {
|
|
||||||
|
progressAmount,
|
||||||
|
totalAmount,
|
||||||
|
selected,
|
||||||
|
onClick,
|
||||||
|
}: 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}
|
||||||
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,
|
||||||
background: (theme) => {
|
transform: selected ? "scale(1.02)" : "scale(1)",
|
||||||
const baseColor = theme.palette[colorTheme]?.main || theme.palette.primary.main;
|
transition: "transform 0.2s ease, box-shadow 0.2s ease",
|
||||||
const lightColor = theme.palette[colorTheme]?.light || theme.palette.primary.light;
|
bgcolor: colorScheme.surface,
|
||||||
return isDark
|
color: colorScheme.text,
|
||||||
? `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: isDark ? "1px solid rgba(255,255,255,0.1)" : "none",
|
border: selected
|
||||||
boxShadow: (theme) =>
|
? `2px solid ${colorScheme.primary}`
|
||||||
`0 ${compact ? 6 : 12}px ${compact ? 12 : 24}px -10px ${
|
: "1px solid",
|
||||||
isDark
|
borderColor: selected ? colorScheme.primary : "divider",
|
||||||
? "rgba(0,0,0,0.5)"
|
boxShadow: "none",
|
||||||
: theme.palette[colorTheme]?.main || theme.palette.primary.main
|
opacity: isFetching ? 0.6 : 1,
|
||||||
}`,
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<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>
|
||||||
@@ -86,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>
|
||||||
|
);
|
||||||
|
}
|
||||||
31
src/components/ProgressCard/TopTags.adapter.ts
Normal file
31
src/components/ProgressCard/TopTags.adapter.ts
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import { ReportData, GroupKey } from "../../features/report";
|
||||||
|
import {
|
||||||
|
extractFilteredTransactions,
|
||||||
|
aggregateTransactions,
|
||||||
|
} from "../report.helpers";
|
||||||
|
|
||||||
|
export interface TagItem {
|
||||||
|
tag: string;
|
||||||
|
amount: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function extractTopTags(
|
||||||
|
reportData: ReportData,
|
||||||
|
flow: "outflows" | "inflows",
|
||||||
|
selectedPeriodId?: string | null,
|
||||||
|
selectedGroupKey?: GroupKey | null
|
||||||
|
): { items: TagItem[]; total: number } {
|
||||||
|
const txns = extractFilteredTransactions(reportData, selectedPeriodId, selectedGroupKey);
|
||||||
|
|
||||||
|
const { items, total } = aggregateTransactions(txns, (txn) => {
|
||||||
|
if (txn.tags && txn.tags.length > 0) {
|
||||||
|
return txn.tags.map((t) => (typeof t === "string" ? t : t.name));
|
||||||
|
}
|
||||||
|
return ["Untagged"];
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
items: items.map((item) => ({ tag: item.name, amount: item.amount })),
|
||||||
|
total,
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,109 +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, ReportPeriod } from "../../features/report";
|
import ProgressCardView from "./ProgressCard.view";
|
||||||
import ProgressCard from "./ProgressCard";
|
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;
|
|
||||||
compact?: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
type DecoratedPeriod = ReportPeriod & {
|
reportData,
|
||||||
id: string;
|
state,
|
||||||
label: string;
|
stateSetters,
|
||||||
};
|
|
||||||
|
|
||||||
function getAmount(p: ReportPeriod, mode: "expense" | "income") {
|
isFetching,
|
||||||
return mode === "expense" ? p.expenses.sum : p.incomes.sum;
|
} = props
|
||||||
}
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
|
const { setSelectedGroupKey } = stateSetters;
|
||||||
|
|
||||||
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
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function TopTags({
|
|
||||||
reportData,
|
|
||||||
mode,
|
|
||||||
selectedPeriodId,
|
|
||||||
compact = true
|
|
||||||
}: Props) {
|
|
||||||
const { items, total } = React.useMemo(() => {
|
const { items, total } = React.useMemo(() => {
|
||||||
const tagMap = new Map<string, number>();
|
return extractTopTags(reportData, flow, selectedPeriodId, selectedGroupKey);
|
||||||
|
}, [reportData, flow, selectedPeriodId, selectedGroupKey]);
|
||||||
for (const bucket of reportData.buckets) {
|
|
||||||
const tags = bucket.group_key.tags;
|
|
||||||
if (!tags || tags.length === 0) continue;
|
|
||||||
|
|
||||||
// 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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const arr = Array.from(tagMap.entries()).map(([tag, amount]) => ({
|
|
||||||
tag,
|
|
||||||
amount
|
|
||||||
}));
|
|
||||||
|
|
||||||
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 };
|
|
||||||
}, [reportData, mode, selectedPeriodId]);
|
|
||||||
|
|
||||||
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>
|
||||||
<ProgressCard
|
{title}
|
||||||
key={item.tag}
|
</Typography>
|
||||||
header={item.tag}
|
|
||||||
progressAmount={item.amount}
|
<Box
|
||||||
totalAmount={total}
|
sx={{
|
||||||
compact={compact}
|
display: "grid",
|
||||||
colorTheme={mode === "expense" ? "error" : "success"}
|
gridTemplateColumns: {
|
||||||
/>
|
xs: "1fr",
|
||||||
))}
|
sm: "repeat(2, 1fr)",
|
||||||
</Box>
|
md: "repeat(4, 1fr)",
|
||||||
|
},
|
||||||
|
gap: 2,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{items.map((item) => {
|
||||||
|
const isSelected = !!selectedGroupKey?.tags?.includes(item.tag);
|
||||||
|
return (
|
||||||
|
<ProgressCardView
|
||||||
|
{...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";
|
||||||
|
|||||||
230
src/components/report.helpers.ts
Normal file
230
src/components/report.helpers.ts
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
import {
|
||||||
|
ReportPeriod,
|
||||||
|
ReportBucket,
|
||||||
|
GroupKey,
|
||||||
|
PeriodType,
|
||||||
|
ReportData,
|
||||||
|
Transaction,
|
||||||
|
} from "../features/report";
|
||||||
|
|
||||||
|
// ─── Types ────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
export type PeriodKey = PeriodType;
|
||||||
|
|
||||||
|
export type DecoratedPeriod = ReportPeriod & {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
// ─── Period helpers ───────────────────────────────────────────
|
||||||
|
|
||||||
|
const PREFIX_TO_KEY: Record<string, PeriodKey> = {
|
||||||
|
D: "daily",
|
||||||
|
W: "weekly",
|
||||||
|
M: "monthly",
|
||||||
|
ALL: "all",
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Derive the period key from a decorated-period id.
|
||||||
|
* E.g. `"W:2026-04-28_2026-05-04"` → `"weekly"`
|
||||||
|
*/
|
||||||
|
export function periodIdToKey(periodId: string): PeriodKey {
|
||||||
|
const prefix = periodId.split(":")[0];
|
||||||
|
return PREFIX_TO_KEY[prefix] ?? "all";
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── Metric helpers ───────────────────────────────────────────
|
||||||
|
|
||||||
|
export function getAmount(period: ReportPeriod): number {
|
||||||
|
return period.metric.sum;
|
||||||
|
}
|
||||||
|
|
||||||
|
function mergeMetric(a: ReportPeriod["metric"], b: ReportPeriod["metric"]) {
|
||||||
|
const sum = a.sum + b.sum;
|
||||||
|
const count = a.count + b.count;
|
||||||
|
|
||||||
|
return {
|
||||||
|
...a,
|
||||||
|
sum,
|
||||||
|
count,
|
||||||
|
average: count > 0 ? sum / count : 0,
|
||||||
|
transactions:
|
||||||
|
a.transactions || b.transactions
|
||||||
|
? [...(a.transactions || []), ...(b.transactions || [])]
|
||||||
|
: undefined,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Merge periods with the same id across all buckets, summing
|
||||||
|
* their metrics and concatenating transactions.
|
||||||
|
*
|
||||||
|
* Returns sorted by start date ascending.
|
||||||
|
*/
|
||||||
|
export function mergeBucketPeriods(
|
||||||
|
buckets: ReportBucket[],
|
||||||
|
key: PeriodKey
|
||||||
|
): DecoratedPeriod[] {
|
||||||
|
const map = new Map<string, DecoratedPeriod>();
|
||||||
|
|
||||||
|
for (const bucket of buckets) {
|
||||||
|
const periods = (bucket.periods[key] || []) as DecoratedPeriod[];
|
||||||
|
|
||||||
|
for (const p of periods) {
|
||||||
|
const existing = map.get(p.id);
|
||||||
|
|
||||||
|
if (!existing) {
|
||||||
|
map.set(p.id, {
|
||||||
|
...p,
|
||||||
|
metric: { ...p.metric },
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
map.set(p.id, {
|
||||||
|
...existing,
|
||||||
|
metric: mergeMetric(existing.metric, p.metric),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Array.from(map.values()).sort(
|
||||||
|
(a, b) => new Date(a.start).getTime() - new Date(b.start).getTime()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── Formatting ───────────────────────────────────────────────
|
||||||
|
|
||||||
|
export const formatCurrency = (val: number) => {
|
||||||
|
const absVal = Math.abs(val);
|
||||||
|
if (absVal >= 100000) {
|
||||||
|
return `₹ ${(val / 100000).toFixed(2)}L`;
|
||||||
|
}
|
||||||
|
if (absVal >= 1000) {
|
||||||
|
return `₹ ${(val / 1000).toFixed(2)}k`;
|
||||||
|
}
|
||||||
|
return `₹ ${val.toFixed(2)}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getPercentage = (progressAmount: number, totalAmount: number) => {
|
||||||
|
if (!totalAmount) return 0;
|
||||||
|
return Math.min(100, Math.max(0, (progressAmount / totalAmount) * 100));
|
||||||
|
};
|
||||||
|
|
||||||
|
// ─── Group filtering ──────────────────────────────────────────
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a bucket's group_key matches the selected GroupKey.
|
||||||
|
* Every dimension present in `selected` must exist in the bucket
|
||||||
|
* and contain all the selected values.
|
||||||
|
*/
|
||||||
|
export function matchesGroupKey(
|
||||||
|
bucket: ReportBucket,
|
||||||
|
selected: GroupKey
|
||||||
|
): boolean {
|
||||||
|
for (const [dim, values] of Object.entries(selected)) {
|
||||||
|
const bucketValues = bucket.group_key[dim];
|
||||||
|
if (!bucketValues) return false;
|
||||||
|
if (!(values as string[]).every((v) => bucketValues.includes(v)))
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return only buckets matching the selected group key,
|
||||||
|
* or all buckets if no selection.
|
||||||
|
*/
|
||||||
|
export function filterBuckets(
|
||||||
|
buckets: ReportBucket[],
|
||||||
|
selectedGroupKey: GroupKey | null
|
||||||
|
): ReportBucket[] {
|
||||||
|
if (!selectedGroupKey) return buckets;
|
||||||
|
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,57 +13,28 @@ 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,
|
{
|
||||||
|
id: "top-categories",
|
||||||
|
title: 'Top Categories',
|
||||||
|
component: TopTags,
|
||||||
|
settings: {
|
||||||
|
compact: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "top-payees",
|
id: "top-payees",
|
||||||
title: 'Top Payees',
|
title: 'Top Payees',
|
||||||
component: TopTags,
|
component: TopPayees,
|
||||||
settings: {
|
settings: {
|
||||||
compact: true,
|
compact: true,
|
||||||
},
|
},
|
||||||
style: {
|
|
||||||
size: 12,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|||||||
38
src/features/fetch-requests/fetch-requests.models.ts
Normal file
38
src/features/fetch-requests/fetch-requests.models.ts
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
export type FetchRequestStatus = "pending" | "processing" | "raw_expenses_done" | "enriched_done" | "completed" | "failed";
|
||||||
|
|
||||||
|
export interface FileSource {
|
||||||
|
path: string;
|
||||||
|
format: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EmailSource {
|
||||||
|
format: string;
|
||||||
|
from_email?: string;
|
||||||
|
subject?: string;
|
||||||
|
raw_terms?: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FetchRequestCreate {
|
||||||
|
source: FileSource | EmailSource;
|
||||||
|
account_name: string;
|
||||||
|
payor_username?: string;
|
||||||
|
start_date?: string;
|
||||||
|
end_date?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FetchRequest extends FetchRequestCreate {
|
||||||
|
id: string;
|
||||||
|
status: FetchRequestStatus;
|
||||||
|
fingerprint: string;
|
||||||
|
completed_at?: string | null;
|
||||||
|
error_message?: string | null;
|
||||||
|
created_at: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface UploadResult {
|
||||||
|
original_filename: string;
|
||||||
|
saved_as: string;
|
||||||
|
content_type: string;
|
||||||
|
url: string;
|
||||||
|
absolute_path: string;
|
||||||
|
}
|
||||||
15
src/features/fetch-requests/index.ts
Normal file
15
src/features/fetch-requests/index.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
export type {
|
||||||
|
FetchRequest,
|
||||||
|
FetchRequestCreate,
|
||||||
|
FetchRequestStatus,
|
||||||
|
FileSource,
|
||||||
|
EmailSource,
|
||||||
|
UploadResult,
|
||||||
|
} from "./fetch-requests.models";
|
||||||
|
export {
|
||||||
|
useFetchRequestsList,
|
||||||
|
useFetchRequest,
|
||||||
|
useCreateFetchRequest,
|
||||||
|
useDeleteFetchRequest,
|
||||||
|
useUploadFile,
|
||||||
|
} from "./useFetchRequests";
|
||||||
43
src/features/fetch-requests/useFetchRequests.ts
Normal file
43
src/features/fetch-requests/useFetchRequests.ts
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
import { useResourceByName } from "../../../react-openapi";
|
||||||
|
import { api } from "../../../react-openapi/api/client";
|
||||||
|
import { useMutation } from "@tanstack/react-query";
|
||||||
|
|
||||||
|
export function useFetchRequestsList(params?: {
|
||||||
|
status?: string;
|
||||||
|
account_name?: string;
|
||||||
|
source_type?: string;
|
||||||
|
}) {
|
||||||
|
const { useList } = useResourceByName("fetch-requests");
|
||||||
|
return useList(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useFetchRequest(id: string) {
|
||||||
|
const { useRead } = useResourceByName("fetch-requests");
|
||||||
|
return useRead(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useCreateFetchRequest() {
|
||||||
|
const { useCreate } = useResourceByName("fetch-requests");
|
||||||
|
return useCreate();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useDeleteFetchRequest() {
|
||||||
|
const { useDelete } = useResourceByName("fetch-requests");
|
||||||
|
return useDelete();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useUploadFile() {
|
||||||
|
return useMutation({
|
||||||
|
mutationFn: async (file: File) => {
|
||||||
|
const arrayBuffer = await file.arrayBuffer();
|
||||||
|
const binary = new Uint8Array(arrayBuffer);
|
||||||
|
const res = await api.post("/uploads", binary, {
|
||||||
|
headers: {
|
||||||
|
"Content-Type": file.type,
|
||||||
|
"Content-Disposition": `attachment; filename="${file.name}"`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return res.data;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
9
src/features/report-snapshots/index.ts
Normal file
9
src/features/report-snapshots/index.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
export type {
|
||||||
|
ReportSnapshot,
|
||||||
|
ReportQuery,
|
||||||
|
} from "./report-snapshots.models";
|
||||||
|
export {
|
||||||
|
useReportSnapshotsList,
|
||||||
|
useCreateSnapshot,
|
||||||
|
useDeleteSnapshot,
|
||||||
|
} from "./useReportSnapshots";
|
||||||
15
src/features/report-snapshots/report-snapshots.models.ts
Normal file
15
src/features/report-snapshots/report-snapshots.models.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ReportSnapshot {
|
||||||
|
id: string;
|
||||||
|
snapshot_id: string;
|
||||||
|
created_at: string;
|
||||||
|
query?: ReportQuery;
|
||||||
|
}
|
||||||
16
src/features/report-snapshots/useReportSnapshots.ts
Normal file
16
src/features/report-snapshots/useReportSnapshots.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { useResourceByName } from "../../../react-openapi";
|
||||||
|
|
||||||
|
export function useReportSnapshotsList() {
|
||||||
|
const { useList } = useResourceByName("reports");
|
||||||
|
return useList();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useCreateSnapshot() {
|
||||||
|
const { useCreate } = useResourceByName("reports");
|
||||||
|
return useCreate();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useDeleteSnapshot() {
|
||||||
|
const { useDelete } = useResourceByName("reports");
|
||||||
|
return useDelete();
|
||||||
|
}
|
||||||
@@ -4,7 +4,11 @@ export {
|
|||||||
export type {
|
export type {
|
||||||
Transaction,
|
Transaction,
|
||||||
ReportData,
|
ReportData,
|
||||||
|
ReportBucket,
|
||||||
ReportPeriod,
|
ReportPeriod,
|
||||||
|
ReportQuery,
|
||||||
|
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,40 +59,24 @@ 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 "weekly":
|
case "daily":
|
||||||
if (sameMonth(start, end)) {
|
return dayFmt.format(start);
|
||||||
const sDay = start.getUTCDate();
|
|
||||||
const eDay = end.getUTCDate();
|
case "weekly": {
|
||||||
const m = monthFmt.format(start);
|
const sDay = start.getUTCDate();
|
||||||
return `${sDay} ${m} - ${eDay} ${m}`;
|
const m = monthFmt.format(start);
|
||||||
}
|
return `${sDay} ${m}`;
|
||||||
return `${dayFmt.format(start)} - ${dayFmt.format(end)}`;
|
}
|
||||||
|
|
||||||
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)}`;
|
||||||
}
|
}
|
||||||
@@ -102,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,20 +1,21 @@
|
|||||||
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) {
|
||||||
const { useList } = useResourceByName("reports");
|
const { useRead } = useResourceByName("reports");
|
||||||
|
|
||||||
return useList({
|
return useRead(
|
||||||
...params,
|
params.snapshot_id ? params.snapshot_id : "latest",
|
||||||
periods: params.periods,
|
{
|
||||||
group_by: params.group_by,
|
...params,
|
||||||
});
|
periods: params.periods,
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,8 @@ import {
|
|||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import Home from './Home';
|
import Home from './Home';
|
||||||
import Dashboard from './Dashboard';
|
import Dashboard from './Dashboard';
|
||||||
|
import FetchRequests from './FetchRequests';
|
||||||
|
import ReportSnapshots from './ReportSnapshots';
|
||||||
import { Admin, AppProvider } from '../react-openapi';
|
import { Admin, AppProvider } from '../react-openapi';
|
||||||
import { configuration, profileConfiguration } from './openapi-config';
|
import { configuration, profileConfiguration } from './openapi-config';
|
||||||
import { Buffer } from 'buffer';
|
import { Buffer } from 'buffer';
|
||||||
@@ -19,7 +21,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;
|
||||||
@@ -33,6 +35,8 @@ const routerMapping = [
|
|||||||
{ path: "/", component: Home, headerTitle: "Home" },
|
{ path: "/", component: Home, headerTitle: "Home" },
|
||||||
{ path: "/home", component: Home, headerTitle: "Home" },
|
{ path: "/home", component: Home, headerTitle: "Home" },
|
||||||
{ path: "/dashboard", component: Dashboard, headerTitle: "Dashboard" },
|
{ path: "/dashboard", component: Dashboard, headerTitle: "Dashboard" },
|
||||||
|
{ path: "/fetch-requests", component: FetchRequests, headerTitle: "Fetch Requests" },
|
||||||
|
{ path: "/reports", component: ReportSnapshots, headerTitle: "Reports" },
|
||||||
{ path: "/admin/*", component: Admin, headerTitle: "Admin" },
|
{ path: "/admin/*", component: Admin, headerTitle: "Admin" },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,14 @@ import { ResourceOverride } from "../react-openapi/types/overrides";
|
|||||||
|
|
||||||
export const configuration: Record<string, ResourceOverride> = {
|
export const configuration: Record<string, ResourceOverride> = {
|
||||||
expenses: {
|
expenses: {
|
||||||
|
filterOptions: {
|
||||||
|
mode: "client",
|
||||||
|
fields: ["account", "payee", "tags", "occurred_at", "amount"],
|
||||||
|
},
|
||||||
fields: {
|
fields: {
|
||||||
payee: {
|
payee: {
|
||||||
displayField: "name",
|
displayField: "name",
|
||||||
|
filterType: "autocomplete",
|
||||||
},
|
},
|
||||||
payor: {
|
payor: {
|
||||||
display: false,
|
display: false,
|
||||||
@@ -12,11 +17,14 @@ export const configuration: Record<string, ResourceOverride> = {
|
|||||||
},
|
},
|
||||||
account: {
|
account: {
|
||||||
displayField: "name",
|
displayField: "name",
|
||||||
|
filterType: "multiselect",
|
||||||
},
|
},
|
||||||
tags: {
|
tags: {
|
||||||
displayField: ["name", "icon"],
|
displayField: ["name", "icon"],
|
||||||
|
filterType: "autocomplete",
|
||||||
},
|
},
|
||||||
occurred_at: {
|
occurred_at: {
|
||||||
|
filterType: "date-range",
|
||||||
formatter: (val: string) => {
|
formatter: (val: string) => {
|
||||||
const date = new Date(val);
|
const date = new Date(val);
|
||||||
const day = date.getDate();
|
const day = date.getDate();
|
||||||
@@ -34,15 +42,14 @@ export const configuration: Record<string, ResourceOverride> = {
|
|||||||
return `${day}${suffix(day)} ${month} ${year}`;
|
return `${day}${suffix(day)} ${month} ${year}`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
amount: {
|
||||||
|
filterType: "number-range",
|
||||||
|
},
|
||||||
created_at: {
|
created_at: {
|
||||||
display: false
|
display: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
pagination: true,
|
|
||||||
},
|
},
|
||||||
reports: {
|
|
||||||
hidden: true
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const profileConfiguration = {
|
export const profileConfiguration = {
|
||||||
|
|||||||
@@ -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