Compare commits
10 Commits
df5cf9fbb6
...
0.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a72985efb | |||
| 220c84776f | |||
| cccb4604fd | |||
| a1ff2c692c | |||
| 16d164b92a | |||
| 8bea3d06f6 | |||
| ad62d7dd9c | |||
| 77b60ba073 | |||
| f213a9455b | |||
| 009ab50b47 |
@@ -1,5 +1,4 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
||||||
import { useAuth, AuthPage } from "../react-auth";
|
import { useAuth, AuthPage } from "../react-auth";
|
||||||
import { UploadProvider } from "./providers/UploadProvider";
|
import { UploadProvider } from "./providers/UploadProvider";
|
||||||
import AdminLayout from "./components/AdminLayout";
|
import AdminLayout from "./components/AdminLayout";
|
||||||
@@ -13,17 +12,17 @@ import {
|
|||||||
Route,
|
Route,
|
||||||
useNavigate,
|
useNavigate,
|
||||||
useParams,
|
useParams,
|
||||||
Navigate,
|
|
||||||
} from "react-router-dom";
|
} from "react-router-dom";
|
||||||
|
|
||||||
const queryClient = new QueryClient();
|
import { ConfigContext } from "./providers/ConfigContext";
|
||||||
|
|
||||||
// Create a context for the app config
|
|
||||||
export const ConfigContext = React.createContext<AppConfig | null>(null);
|
|
||||||
|
|
||||||
function Dashboard({ basePath }: { basePath: string }) {
|
function Dashboard({ basePath }: { basePath: string }) {
|
||||||
const config = React.useContext(ConfigContext);
|
const config = React.useContext(ConfigContext);
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const resources = config?.resources || [];
|
||||||
|
const visibleResources = resources.filter((res) => !res.hidden);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<Typography variant="h4" gutterBottom>
|
<Typography variant="h4" gutterBottom>
|
||||||
@@ -41,7 +40,7 @@ function Dashboard({ basePath }: { basePath: string }) {
|
|||||||
mt: 4,
|
mt: 4,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{config?.resources.map((res) => (
|
{visibleResources.map((res) => (
|
||||||
<Paper
|
<Paper
|
||||||
key={res.name}
|
key={res.name}
|
||||||
sx={{
|
sx={{
|
||||||
@@ -69,6 +68,9 @@ function AdminApp({ basePath }: { basePath: string }) {
|
|||||||
const config = React.useContext(ConfigContext);
|
const config = React.useContext(ConfigContext);
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const resources = config?.resources || [];
|
||||||
|
const visibleResources = resources.filter((res) => !res.hidden);
|
||||||
|
|
||||||
if (!currentUser) {
|
if (!currentUser) {
|
||||||
return (
|
return (
|
||||||
<AuthPage
|
<AuthPage
|
||||||
@@ -89,7 +91,7 @@ function AdminApp({ basePath }: { basePath: string }) {
|
|||||||
username={currentUser.username}
|
username={currentUser.username}
|
||||||
onLogout={logout}
|
onLogout={logout}
|
||||||
onSelectResource={(name) => navigate(`/admin/${name}`)}
|
onSelectResource={(name) => navigate(`/admin/${name}`)}
|
||||||
resources={config?.resources || []}
|
resources={visibleResources}
|
||||||
>
|
>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/" element={<Dashboard basePath={basePath} />} />
|
<Route path="/" element={<Dashboard basePath={basePath} />} />
|
||||||
@@ -120,14 +122,17 @@ interface AdminProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default function Admin({ basePath = "/admin", resourceOverrides = {}, profileConfig = {} }: AdminProps) {
|
export default function Admin({ basePath = "/admin", resourceOverrides = {}, profileConfig = {} }: AdminProps) {
|
||||||
const [config, setConfig] = React.useState<AppConfig | null>(null);
|
const existingConfig = React.useContext(ConfigContext);
|
||||||
|
const [config, setConfig] = React.useState<AppConfig | null>(existingConfig);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
getAppConfig(resourceOverrides, profileConfig).then((cfg) => {
|
if (!existingConfig) {
|
||||||
initializeApiClients(cfg.baseUrl, cfg.authBaseUrl);
|
getAppConfig(resourceOverrides, profileConfig).then((cfg) => {
|
||||||
setConfig(cfg);
|
initializeApiClients(cfg.baseUrl, cfg.authBaseUrl);
|
||||||
});
|
setConfig(cfg);
|
||||||
}, [resourceOverrides, profileConfig]);
|
});
|
||||||
|
}
|
||||||
|
}, [resourceOverrides, profileConfig, existingConfig]);
|
||||||
|
|
||||||
if (!config) {
|
if (!config) {
|
||||||
return (
|
return (
|
||||||
@@ -144,13 +149,21 @@ export default function Admin({ basePath = "/admin", resourceOverrides = {}, pro
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const content = (
|
||||||
|
<UploadProvider>
|
||||||
|
<AdminApp basePath={basePath} />
|
||||||
|
</UploadProvider>
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we have an existing config, we are already inside a Provider and QueryClient
|
||||||
|
if (existingConfig) {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback for standalone usage
|
||||||
return (
|
return (
|
||||||
<QueryClientProvider client={queryClient}>
|
<ConfigContext.Provider value={config}>
|
||||||
<ConfigContext.Provider value={config}>
|
{content}
|
||||||
<UploadProvider>
|
</ConfigContext.Provider>
|
||||||
<AdminApp basePath={basePath} />
|
|
||||||
</UploadProvider>
|
|
||||||
</ConfigContext.Provider>
|
|
||||||
</QueryClientProvider>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,28 @@ import { createApiClient } from "../../react-auth";
|
|||||||
let _api: AxiosInstance | null = null;
|
let _api: AxiosInstance | null = null;
|
||||||
let _auth: AxiosInstance | null = null;
|
let _auth: AxiosInstance | null = null;
|
||||||
|
|
||||||
|
function withParamsSerializer(instance: AxiosInstance): AxiosInstance {
|
||||||
|
instance.defaults.paramsSerializer = {
|
||||||
|
serialize: (params) => {
|
||||||
|
const searchParams = new URLSearchParams();
|
||||||
|
|
||||||
|
Object.entries(params).forEach(([key, value]) => {
|
||||||
|
if (Array.isArray(value)) {
|
||||||
|
value.forEach((v) => {
|
||||||
|
searchParams.append(key, String(v)); // NO []
|
||||||
|
});
|
||||||
|
} else if (value !== undefined && value !== null) {
|
||||||
|
searchParams.append(key, String(value));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return searchParams.toString();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
export const api = {
|
export const api = {
|
||||||
get: (...args: Parameters<AxiosInstance["get"]>) => {
|
get: (...args: Parameters<AxiosInstance["get"]>) => {
|
||||||
if (!_api) throw new Error("API client not initialized");
|
if (!_api) throw new Error("API client not initialized");
|
||||||
@@ -38,6 +60,6 @@ export const auth = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export function initializeApiClients(baseUrl: string, authBaseUrl: string) {
|
export function initializeApiClients(baseUrl: string, authBaseUrl: string) {
|
||||||
_api = createApiClient(baseUrl);
|
_api = withParamsSerializer(createApiClient(baseUrl));
|
||||||
_auth = createApiClient(authBaseUrl);
|
_auth = withParamsSerializer(createApiClient(authBaseUrl));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import { useUpload } from '../providers/UploadProvider';
|
|||||||
import { useQueries } from '@tanstack/react-query';
|
import { useQueries } from '@tanstack/react-query';
|
||||||
import { useResource } from '../hooks/useResource';
|
import { useResource } from '../hooks/useResource';
|
||||||
import FormField from './fields/FormField';
|
import FormField from './fields/FormField';
|
||||||
import { ConfigContext } from '../Admin';
|
import { ConfigContext } from '../providers/ConfigContext';
|
||||||
|
|
||||||
interface GenericFormProps {
|
interface GenericFormProps {
|
||||||
config: ResourceConfig;
|
config: ResourceConfig;
|
||||||
@@ -67,7 +67,8 @@ export default function GenericForm({
|
|||||||
const relationDataMap = React.useMemo(() => {
|
const relationDataMap = React.useMemo(() => {
|
||||||
const map: Record<string, any[]> = {};
|
const map: Record<string, any[]> = {};
|
||||||
allRelations.forEach((relName, index) => {
|
allRelations.forEach((relName, index) => {
|
||||||
map[relName] = queries[index].data || [];
|
// @ts-ignore
|
||||||
|
map[relName] = queries[index].data || [];
|
||||||
});
|
});
|
||||||
return map;
|
return map;
|
||||||
}, [allRelations, queries]);
|
}, [allRelations, queries]);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|||||||
import { Box, Typography, Paper, CircularProgress, Alert } from '@mui/material';
|
import { Box, Typography, Paper, CircularProgress, Alert } from '@mui/material';
|
||||||
import { useResource } from '../hooks/useResource';
|
import { useResource } from '../hooks/useResource';
|
||||||
import GenericForm from './GenericForm';
|
import GenericForm from './GenericForm';
|
||||||
import { ConfigContext } from '../Admin';
|
import { ConfigContext } from '../providers/ConfigContext';
|
||||||
|
|
||||||
export default function ProfileView() {
|
export default function ProfileView() {
|
||||||
const appConfig = React.useContext(ConfigContext);
|
const appConfig = React.useContext(ConfigContext);
|
||||||
|
|||||||
@@ -1,16 +1,22 @@
|
|||||||
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 * as React from "react";
|
||||||
|
|
||||||
export function useResource<T = any>(config: ResourceConfig) {
|
export function useResource<T = any>(config: ResourceConfig | undefined) {
|
||||||
const queryClient = useQueryClient();
|
const queryClient = useQueryClient();
|
||||||
const { name, endpoint, primaryKey } = config;
|
|
||||||
|
// Return empty/disabled hooks if config is missing
|
||||||
|
const { name = '', endpoint = '', primaryKey = 'id' } = config || {};
|
||||||
|
|
||||||
// --- READ ALL ---
|
// --- READ ALL ---
|
||||||
const useList = (params?: any) =>
|
const useList = (params?: any) =>
|
||||||
useQuery({
|
useQuery({
|
||||||
queryKey: [name, "list", params],
|
queryKey: [name, "list", params],
|
||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
|
if (!endpoint) return { data: [], total: 0 };
|
||||||
|
console.log('params:', params);
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.get<T[]>(endpoint, { params });
|
const res = await api.get<T[]>(endpoint, { params });
|
||||||
const total = res.headers ? parseInt(res.headers['x-total-count'] || res.headers['X-Total-Count']) : undefined;
|
const total = res.headers ? parseInt(res.headers['x-total-count'] || res.headers['X-Total-Count']) : undefined;
|
||||||
@@ -18,26 +24,29 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
data: res.data,
|
data: res.data,
|
||||||
total: isNaN(total as any) ? undefined : total
|
total: isNaN(total as any) ? undefined : total
|
||||||
};
|
};
|
||||||
}
|
},
|
||||||
|
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) 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,
|
enabled: !!id && !!endpoint,
|
||||||
});
|
});
|
||||||
|
|
||||||
// --- CREATE ---
|
// --- CREATE ---
|
||||||
const useCreate = () =>
|
const useCreate = () =>
|
||||||
useMutation({
|
useMutation({
|
||||||
mutationFn: async (data: Partial<T>) => {
|
mutationFn: async (data: Partial<T>) => {
|
||||||
|
if (!endpoint) throw new Error("Endpoint not defined");
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.post<T>(endpoint, data);
|
const res = await api.post<T>(endpoint, data);
|
||||||
return res.data;
|
return res.data;
|
||||||
@@ -51,6 +60,7 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
const useUpdate = () =>
|
const useUpdate = () =>
|
||||||
useMutation({
|
useMutation({
|
||||||
mutationFn: async ({ id, data }: { id: string; data: Partial<T> }) => {
|
mutationFn: async ({ id, data }: { id: string; data: Partial<T> }) => {
|
||||||
|
if (!endpoint) throw new Error("Endpoint not defined");
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.put<T>(`${endpoint}/${id}`, data);
|
const res = await api.put<T>(`${endpoint}/${id}`, data);
|
||||||
return res.data;
|
return res.data;
|
||||||
@@ -67,6 +77,7 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
const useDelete = () =>
|
const useDelete = () =>
|
||||||
useMutation({
|
useMutation({
|
||||||
mutationFn: async (id: string) => {
|
mutationFn: async (id: string) => {
|
||||||
|
if (!endpoint) throw new Error("Endpoint not defined");
|
||||||
await api.delete(`${endpoint}/${id}`);
|
await api.delete(`${endpoint}/${id}`);
|
||||||
return id;
|
return id;
|
||||||
},
|
},
|
||||||
@@ -79,6 +90,7 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
const getListQueryOptions = (params?: any) => ({
|
const getListQueryOptions = (params?: any) => ({
|
||||||
queryKey: [name, "list", params],
|
queryKey: [name, "list", params],
|
||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
|
if (!endpoint) return { data: [], total: 0 };
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.get<T[]>(endpoint, { params });
|
const res = await api.get<T[]>(endpoint, { params });
|
||||||
const total = res.headers ? parseInt(res.headers['x-total-count'] || res.headers['X-Total-Count']) : undefined;
|
const total = res.headers ? parseInt(res.headers['x-total-count'] || res.headers['X-Total-Count']) : undefined;
|
||||||
@@ -87,6 +99,7 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
total: isNaN(total as any) ? undefined : total
|
total: isNaN(total as any) ? undefined : total
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
enabled: !!endpoint,
|
||||||
});
|
});
|
||||||
|
|
||||||
// --- READ ME ---
|
// --- READ ME ---
|
||||||
@@ -94,16 +107,19 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
useQuery({
|
useQuery({
|
||||||
queryKey: [name, "me"],
|
queryKey: [name, "me"],
|
||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
|
if (!endpoint) return null;
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.get<T>(`${endpoint}/me`);
|
const res = await api.get<T>(`${endpoint}/me`);
|
||||||
return res.data;
|
return res.data;
|
||||||
},
|
},
|
||||||
|
enabled: !!endpoint,
|
||||||
});
|
});
|
||||||
|
|
||||||
// --- UPDATE ME ---
|
// --- UPDATE ME ---
|
||||||
const useUpdateMe = () =>
|
const useUpdateMe = () =>
|
||||||
useMutation({
|
useMutation({
|
||||||
mutationFn: async (data: Partial<T>) => {
|
mutationFn: async (data: Partial<T>) => {
|
||||||
|
if (!endpoint) throw new Error("Endpoint not defined");
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const res = await api.put<T>(`${endpoint}/me`, data);
|
const res = await api.put<T>(`${endpoint}/me`, data);
|
||||||
return res.data;
|
return res.data;
|
||||||
@@ -125,3 +141,10 @@ export function useResource<T = any>(config: ResourceConfig) {
|
|||||||
getListQueryOptions,
|
getListQueryOptions,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function useResourceByName<T = any>(name: string) {
|
||||||
|
const config = React.useContext(ConfigContext);
|
||||||
|
const resourceConfig = config?.resources.find((r) => r.name === name);
|
||||||
|
return useResource<T>(resourceConfig);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,3 +2,6 @@ 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 } from "./types/config";
|
||||||
|
export { AppProvider } from "./providers/AppProvider";
|
||||||
|
export { ConfigContext, useConfig } from "./providers/ConfigContext";
|
||||||
|
export { useResource, useResourceByName } from "./hooks/useResource";
|
||||||
|
|||||||
70
react-openapi/providers/AppProvider.tsx
Normal file
70
react-openapi/providers/AppProvider.tsx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
||||||
|
import { ConfigContext } from "./ConfigContext";
|
||||||
|
import { getAppConfig } from "../config";
|
||||||
|
import { initializeApiClients } from "../api/client";
|
||||||
|
import { AppConfig } from "../types/config";
|
||||||
|
import { Box, CircularProgress } from "@mui/material";
|
||||||
|
|
||||||
|
const defaultQueryClient = new QueryClient({
|
||||||
|
defaultOptions: {
|
||||||
|
queries: {
|
||||||
|
staleTime: 5 * 60 * 1000,
|
||||||
|
retry: 1,
|
||||||
|
refetchOnWindowFocus: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
interface AppProviderProps {
|
||||||
|
children: React.ReactNode;
|
||||||
|
resourceOverrides?: Record<string, any>;
|
||||||
|
profileConfig?: any;
|
||||||
|
queryClient?: QueryClient;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function AppProvider({
|
||||||
|
children,
|
||||||
|
resourceOverrides = {},
|
||||||
|
profileConfig = {},
|
||||||
|
queryClient = defaultQueryClient,
|
||||||
|
}: AppProviderProps) {
|
||||||
|
const [config, setConfig] = React.useState<AppConfig | null>(null);
|
||||||
|
const [loading, setLoading] = React.useState(true);
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
getAppConfig(resourceOverrides, profileConfig)
|
||||||
|
.then((cfg) => {
|
||||||
|
initializeApiClients(cfg.baseUrl, cfg.authBaseUrl);
|
||||||
|
setConfig(cfg);
|
||||||
|
setLoading(false);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error("Failed to load OpenAPI configuration:", err);
|
||||||
|
setLoading(false);
|
||||||
|
});
|
||||||
|
}, [resourceOverrides, profileConfig]);
|
||||||
|
|
||||||
|
if (loading) {
|
||||||
|
return (
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
justifyContent: "center",
|
||||||
|
alignItems: "center",
|
||||||
|
height: "100vh",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CircularProgress />
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<QueryClientProvider client={queryClient}>
|
||||||
|
<ConfigContext.Provider value={config}>
|
||||||
|
{children}
|
||||||
|
</ConfigContext.Provider>
|
||||||
|
</QueryClientProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
12
react-openapi/providers/ConfigContext.tsx
Normal file
12
react-openapi/providers/ConfigContext.tsx
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import { AppConfig } from "../types/config";
|
||||||
|
|
||||||
|
export const ConfigContext = React.createContext<AppConfig | null>(null);
|
||||||
|
|
||||||
|
export function useConfig() {
|
||||||
|
const context = React.useContext(ConfigContext);
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error("useConfig must be used within a ConfigProvider");
|
||||||
|
}
|
||||||
|
return context;
|
||||||
|
}
|
||||||
@@ -30,6 +30,7 @@ export interface ResourceConfig {
|
|||||||
primaryKey: string;
|
primaryKey: string;
|
||||||
fields: Record<string, ResourceField>;
|
fields: Record<string, ResourceField>;
|
||||||
pagination?: boolean;
|
pagination?: boolean;
|
||||||
|
hidden?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AppConfig {
|
export interface AppConfig {
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ export interface FieldOverride {
|
|||||||
export interface ResourceOverride {
|
export interface ResourceOverride {
|
||||||
fields?: Record<string, FieldOverride>;
|
fields?: Record<string, FieldOverride>;
|
||||||
pagination?: boolean;
|
pagination?: boolean;
|
||||||
|
hidden?: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -162,6 +162,7 @@ export async function loadConfigFromOpenApi(baseUrl: string, configuration: Reco
|
|||||||
primaryKey: "id", // Strict default, no heuristics
|
primaryKey: "id", // Strict default, no heuristics
|
||||||
fields,
|
fields,
|
||||||
pagination: resourceOverride.pagination,
|
pagination: resourceOverride.pagination,
|
||||||
|
hidden: resourceOverride.hidden,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -2,100 +2,237 @@ import * as React from "react";
|
|||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Container,
|
Container,
|
||||||
Grid,
|
|
||||||
CircularProgress,
|
CircularProgress,
|
||||||
Alert,
|
Alert,
|
||||||
ToggleButton,
|
TextField,
|
||||||
ToggleButtonGroup
|
Paper,
|
||||||
|
Autocomplete,
|
||||||
|
Button
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
|
|
||||||
import LatestItemsList, { LatestItem } from "./components/LatestItemsList";
|
import DashboardView from "./components/Dashboard";
|
||||||
import HistoryChart from "./components/HistoryChart";
|
|
||||||
import {
|
|
||||||
AggregatedDashboardData
|
|
||||||
} from "./types/historyChart";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
fetchLatestTransactions,
|
DashboardState,
|
||||||
fetchAggregatedExpenses,
|
DashboardStateSetters,
|
||||||
fetchAggregatedIncome,
|
DashboardFlow,
|
||||||
} from "./utils/dashboardLoader";
|
} from "./components/Dashboard";
|
||||||
|
|
||||||
|
import { configuration } from "./dashboard-config";
|
||||||
|
import {
|
||||||
|
useReport,
|
||||||
|
prepareReport,
|
||||||
|
} 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 [latest, setLatest] = React.useState<{
|
const [state, setState] = React.useState<DashboardState>({
|
||||||
expense: LatestItem[];
|
flow: "outflows",
|
||||||
income: LatestItem[];
|
periodType: "rolling",
|
||||||
}>({
|
selectedPeriodId: null,
|
||||||
expense: [],
|
selectedGroupKey: null,
|
||||||
income: []
|
comparison: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const [aggregated, setAggregated] = React.useState<{
|
const [appliedPayees, setAppliedPayees] = React.useState<string[]>([]);
|
||||||
expense: AggregatedDashboardData | null;
|
const [appliedTags, setAppliedTags] = React.useState<string[]>([]);
|
||||||
income: AggregatedDashboardData | null;
|
|
||||||
}>({
|
|
||||||
expense: null,
|
|
||||||
income: null
|
|
||||||
});
|
|
||||||
|
|
||||||
const [mode, setMode] = React.useState<"expense" | "income">("expense");
|
const [payeeInput, setPayeeInput] = React.useState<string[]>([]);
|
||||||
const [period, setPeriod] = React.useState<"rolling" | "calendar">("rolling");
|
const [tagsInput, setTagsInput] = React.useState<string[]>([]);
|
||||||
const [comparison, setComparison] = React.useState(false);
|
|
||||||
|
|
||||||
const [loading, setLoading] = React.useState(true);
|
const [loadedPayees, setLoadedPayees] = React.useState<string[]>([]);
|
||||||
const [error, setError] = React.useState<string | null>(null);
|
const [loadedTags, setLoadedTags] = React.useState<string[]>([]);
|
||||||
|
|
||||||
// -------- LOAD ONCE --------
|
const [selectedSnapshotId, setSelectedSnapshotId] = React.useState<string | null>(null);
|
||||||
React.useEffect(() => {
|
|
||||||
async function loadData() {
|
|
||||||
try {
|
|
||||||
setLoading(true);
|
|
||||||
|
|
||||||
const [
|
const { data: snapshotsData } = useResourceByName("reports").useList();
|
||||||
latestExpense,
|
const snapshotOptions = React.useMemo(() => {
|
||||||
latestIncome,
|
const options: { label: string; value: string | null }[] = [
|
||||||
expenseData,
|
{ label: "Latest (auto)", value: null },
|
||||||
incomeData
|
];
|
||||||
] = await Promise.all([
|
if (snapshotsData?.data) {
|
||||||
fetchLatestTransactions("expense"),
|
for (const snap of snapshotsData.data) {
|
||||||
fetchLatestTransactions("income"),
|
options.push({
|
||||||
fetchAggregatedExpenses(),
|
label: `Snapshot from ${formatSnapshotDate(snap.created_at)}`,
|
||||||
fetchAggregatedIncome()
|
value: snap.snapshot_id,
|
||||||
]);
|
|
||||||
|
|
||||||
setLatest({
|
|
||||||
expense: latestExpense,
|
|
||||||
income: latestIncome
|
|
||||||
});
|
});
|
||||||
|
|
||||||
setAggregated({
|
|
||||||
expense: expenseData,
|
|
||||||
income: incomeData
|
|
||||||
});
|
|
||||||
|
|
||||||
} catch (err: any) {
|
|
||||||
console.error(err);
|
|
||||||
setError(err.message || "Failed to load dashboard data");
|
|
||||||
} finally {
|
|
||||||
setLoading(false);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return options;
|
||||||
|
}, [snapshotsData]);
|
||||||
|
|
||||||
loadData();
|
const selectedSnapshotOption = snapshotOptions.find((o) => o.value === selectedSnapshotId) ?? snapshotOptions[0];
|
||||||
}, []);
|
|
||||||
|
|
||||||
const currentData = aggregated[mode];
|
const report = useReport({
|
||||||
if (!currentData) {
|
snapshot_id: selectedSnapshotId ?? undefined,
|
||||||
return (
|
periods: ["daily", "weekly", "monthly", "all"],
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
flow: state.flow,
|
||||||
<CircularProgress />
|
payee: appliedPayees.length > 0 ? appliedPayees : undefined,
|
||||||
</Box>
|
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 currentLatest = latest[mode];
|
|
||||||
|
|
||||||
// -------- UI STATES --------
|
const togglePeriodType =
|
||||||
if (loading) {
|
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 error = report.error;
|
||||||
|
|
||||||
|
if (isLoading && !report.data) {
|
||||||
return (
|
return (
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
<Box sx={{ display: "flex", justifyContent: "center", alignItems: "center", height: "60vh" }}>
|
||||||
<CircularProgress />
|
<CircularProgress />
|
||||||
@@ -106,49 +243,98 @@ export default function Dashboard() {
|
|||||||
if (error) {
|
if (error) {
|
||||||
return (
|
return (
|
||||||
<Container sx={{ mt: 4 }}>
|
<Container sx={{ mt: 4 }}>
|
||||||
<Alert severity="error">{error}</Alert>
|
<Alert severity="error">{String(error)}</Alert>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!report.data) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = prepareReport(report.data);
|
||||||
return (
|
return (
|
||||||
<Container sx={{ mt: 4, mb: 4 }}>
|
<Box>
|
||||||
{/* -------- TOGGLE -------- */}
|
<Container>
|
||||||
<Box sx={{ display: "flex", justifyContent: "center", mb: 3 }}>
|
<Paper
|
||||||
<ToggleButtonGroup
|
sx={{
|
||||||
value={mode}
|
mt: 4,
|
||||||
exclusive
|
p: 2,
|
||||||
onChange={(_, val) => val && setMode(val)}
|
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"
|
||||||
>
|
>
|
||||||
<ToggleButton value="expense">Expenses</ToggleButton>
|
<Box sx={{ display: 'flex', flexDirection: 'column', flex: 1, minWidth: { sm: 250 } }}>
|
||||||
<ToggleButton value="income">Income</ToggleButton>
|
<Box sx={{ typography: 'caption', mb: 1, color: 'text.secondary' }}>
|
||||||
</ToggleButtonGroup>
|
Filter by Payee
|
||||||
</Box>
|
</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: 40, py: 0 } }}
|
||||||
|
size="small"
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
|
||||||
<Grid container spacing={4} direction="row">
|
<Button
|
||||||
|
variant="contained"
|
||||||
<Grid size={12}>
|
size="large"
|
||||||
<HistoryChart
|
onClick={() => {
|
||||||
header={`${mode === "expense" ? "Expense" : "Income"} Breakdown`}
|
setAppliedPayees(payeeInput);
|
||||||
summary="Interactive chronological tracking"
|
setAppliedTags(tagsInput);
|
||||||
tabs={["Daily", "Weekly", "Monthly"]}
|
}}
|
||||||
data={currentData.chartData}
|
disabled={isLoading}
|
||||||
period={period}
|
sx={{ height: 40, borderRadius: 2 }}
|
||||||
onPeriodChange={setPeriod}
|
>
|
||||||
comparison={comparison}
|
Apply
|
||||||
setComparison={setComparison}
|
</Button>
|
||||||
/>
|
</Paper>
|
||||||
</Grid>
|
</Container>
|
||||||
|
<DashboardView
|
||||||
<Grid size={12}>
|
config={configuration}
|
||||||
<LatestItemsList
|
data={data}
|
||||||
title={`Recent ${mode === "expense" ? "Expenses" : "Income"}`}
|
state={state}
|
||||||
items={currentLatest}
|
stateSetters={stateSetters}
|
||||||
onViewAll={() => {}}
|
isFetching={report.isFetching}
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Box>
|
||||||
|
|
||||||
</Grid>
|
|
||||||
</Container>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
323
src/FetchRequests.tsx
Normal file
323
src/FetchRequests.tsx
Normal file
@@ -0,0 +1,323 @@
|
|||||||
|
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 {
|
||||||
|
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>ID</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" }}>
|
||||||
|
{req.id.slice(0, 8)}...
|
||||||
|
</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: {
|
||||||
@@ -83,12 +83,40 @@ export default function Header({
|
|||||||
<Typography
|
<Typography
|
||||||
variant="h6"
|
variant="h6"
|
||||||
noWrap
|
noWrap
|
||||||
sx={{ flexGrow: 1, fontWeight: "bold", cursor: "pointer" }}
|
sx={{ fontWeight: "bold", cursor: "pointer" }}
|
||||||
onClick={() => navigate("/")}
|
onClick={() => navigate("/")}
|
||||||
>
|
>
|
||||||
{headerTitle}
|
{headerTitle}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
|
<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>
|
||||||
);
|
);
|
||||||
|
|||||||
271
src/ReportSnapshots.tsx
Normal file
271
src/ReportSnapshots.tsx
Normal file
@@ -0,0 +1,271 @@
|
|||||||
|
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 {
|
||||||
|
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 [accounts, setAccounts] = React.useState("");
|
||||||
|
const [ignoreSelf, setIgnoreSelf] = React.useState(false);
|
||||||
|
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({
|
||||||
|
accounts: accounts.trim() ? accounts.split(",").map((s) => s.trim()).filter(Boolean) : null,
|
||||||
|
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 = () => {
|
||||||
|
setAccounts("");
|
||||||
|
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 }}>
|
||||||
|
<TextField
|
||||||
|
label="Accounts"
|
||||||
|
value={accounts}
|
||||||
|
onChange={(e) => setAccounts(e.target.value)}
|
||||||
|
size="small"
|
||||||
|
helperText="Comma-separated account IDs (leave empty for all)"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<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" }}>
|
||||||
|
{snap.snapshot_id.slice(0, 12)}...
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
61
src/components/Dashboard/Dashboard.models.ts
Normal file
61
src/components/Dashboard/Dashboard.models.ts
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
ReportData,
|
||||||
|
GroupKey,
|
||||||
|
} from "../../features/report";
|
||||||
|
|
||||||
|
export type DashboardFlow = "outflows" | "inflows";
|
||||||
|
export type DashboardPeriodType = "rolling" | "calendar";
|
||||||
|
export type DashboardSelectedPeriodId = string | null;
|
||||||
|
|
||||||
|
export interface DashboardState {
|
||||||
|
flow: DashboardFlow;
|
||||||
|
periodType: DashboardPeriodType;
|
||||||
|
selectedPeriodId: DashboardSelectedPeriodId;
|
||||||
|
selectedGroupKey: GroupKey | null;
|
||||||
|
comparison: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DashboardStateSetters {
|
||||||
|
setSelectedPeriodId: (id: DashboardSelectedPeriodId) => void;
|
||||||
|
setSelectedGroupKey: (groupKey: GroupKey | null) => void;
|
||||||
|
toggleFlow: () => void;
|
||||||
|
togglePeriodType: () => void;
|
||||||
|
toggleComparison: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DashboardSection {
|
||||||
|
id: string;
|
||||||
|
title: string;
|
||||||
|
component: React.ComponentType<any>;
|
||||||
|
summary?: string;
|
||||||
|
settings?: Record<string, any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DashboardConfig {
|
||||||
|
sections: DashboardSection[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DashboardViewProps {
|
||||||
|
config: DashboardConfig;
|
||||||
|
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;
|
||||||
|
}
|
||||||
105
src/components/Dashboard/Dashboard.view.tsx
Normal file
105
src/components/Dashboard/Dashboard.view.tsx
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Container,
|
||||||
|
Grid,
|
||||||
|
ToggleButton,
|
||||||
|
ToggleButtonGroup,
|
||||||
|
Button
|
||||||
|
} from "@mui/material";
|
||||||
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
|
import { DashboardViewProps } from "./Dashboard.models";
|
||||||
|
|
||||||
|
export default function DashboardView({
|
||||||
|
config,
|
||||||
|
data,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
isFetching,
|
||||||
|
}: DashboardViewProps) {
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
|
const {
|
||||||
|
flow,
|
||||||
|
selectedGroupKey,
|
||||||
|
} = state;
|
||||||
|
|
||||||
|
const colorScheme = flow === "outflows" ? theme.palette.flows.outflows : theme.palette.flows.inflows;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container
|
||||||
|
sx={{
|
||||||
|
mt: 4,
|
||||||
|
mb: 4,
|
||||||
|
background: `linear-gradient(180deg, ${alpha(colorScheme.primary, theme.palette.mode === "dark" ? 0.06 : 0.04)} 0%, transparent 100%)`,
|
||||||
|
borderRadius: 4,
|
||||||
|
p: 2,
|
||||||
|
transition: "background 0.3s ease",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
alignItems: "center",
|
||||||
|
mb: 3,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ToggleButtonGroup
|
||||||
|
value={flow}
|
||||||
|
exclusive
|
||||||
|
onChange={stateSetters.toggleFlow}
|
||||||
|
sx={{
|
||||||
|
borderRadius: 3,
|
||||||
|
overflow: "hidden",
|
||||||
|
"& .MuiToggleButton-root": {
|
||||||
|
px: 3,
|
||||||
|
textTransform: "none",
|
||||||
|
color: "text.secondary",
|
||||||
|
},
|
||||||
|
"&.Mui-selected": {
|
||||||
|
bgcolor: colorScheme.primary,
|
||||||
|
color: "white",
|
||||||
|
borderColor: colorScheme.primary,
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ToggleButton value="outflows">Outflows</ToggleButton>
|
||||||
|
<ToggleButton value="inflows">Inflows</ToggleButton>
|
||||||
|
</ToggleButtonGroup>
|
||||||
|
|
||||||
|
{selectedGroupKey && Object.keys(selectedGroupKey).length > 0 && (
|
||||||
|
<Button
|
||||||
|
size="small"
|
||||||
|
sx={{ mt: 1, textTransform: "none" }}
|
||||||
|
onClick={() => stateSetters.setSelectedGroupKey(null)}
|
||||||
|
>
|
||||||
|
Clear Drill-down
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Grid container spacing={4}>
|
||||||
|
{config.sections.map((section) => {
|
||||||
|
const Component = section.component;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Grid key={section.id} size={12}>
|
||||||
|
<Component
|
||||||
|
{...section}
|
||||||
|
|
||||||
|
reportData={data}
|
||||||
|
|
||||||
|
state={state}
|
||||||
|
stateSetters={stateSetters}
|
||||||
|
isFetching={isFetching}
|
||||||
|
|
||||||
|
colorScheme={colorScheme}
|
||||||
|
/>
|
||||||
|
</Grid>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Grid>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
2
src/components/Dashboard/index.ts
Normal file
2
src/components/Dashboard/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export { default } from "./Dashboard.view";
|
||||||
|
export * from "./Dashboard.models";
|
||||||
@@ -1,387 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import {
|
|
||||||
Box,
|
|
||||||
Typography,
|
|
||||||
ToggleButtonGroup,
|
|
||||||
ToggleButton,
|
|
||||||
Paper
|
|
||||||
} from "@mui/material";
|
|
||||||
import {
|
|
||||||
ChartDataPoint,
|
|
||||||
HistoryChartProps,
|
|
||||||
ChartData,
|
|
||||||
} from "../types/historyChart";
|
|
||||||
import IconButton from "@mui/material/IconButton";
|
|
||||||
import ChevronLeftIcon from "@mui/icons-material/ChevronLeft";
|
|
||||||
import ChevronRightIcon from "@mui/icons-material/ChevronRight";
|
|
||||||
|
|
||||||
const formatDisplay = (
|
|
||||||
point: ChartDataPoint,
|
|
||||||
tab: string,
|
|
||||||
comparison: boolean
|
|
||||||
) => {
|
|
||||||
const base = point.amount;
|
|
||||||
const cmp = point.compareAmount ?? 0;
|
|
||||||
|
|
||||||
const formatShort = (val: number) => {
|
|
||||||
if (tab === "monthly") {
|
|
||||||
if (val >= 100000) return `${(val / 100000).toFixed(2)}L`;
|
|
||||||
}
|
|
||||||
if (tab === "weekly") {
|
|
||||||
if (val >= 1000) return `${(val / 1000).toFixed(1)}K`;
|
|
||||||
}
|
|
||||||
return val.toLocaleString("en-IN");
|
|
||||||
};
|
|
||||||
|
|
||||||
// Only hide diff when comparison OFF or compare is undefined
|
|
||||||
if (!comparison) {
|
|
||||||
return `₹ ${formatShort(base)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const diff = base - cmp;
|
|
||||||
const sign = diff >= 0 ? "+" : "-";
|
|
||||||
const absDiff = Math.abs(diff);
|
|
||||||
|
|
||||||
return `₹ ${formatShort(base)} (${sign}${formatShort(absDiff)})`;
|
|
||||||
};
|
|
||||||
|
|
||||||
const formatLabel = (label: string, type: string) => {
|
|
||||||
if (type === "monthly") return label;
|
|
||||||
|
|
||||||
if (type === "weekly") {
|
|
||||||
const parts = label.split(" - ");
|
|
||||||
if (parts.length === 2) {
|
|
||||||
const [start, end] = parts;
|
|
||||||
const startDay = start.split(" ")[0];
|
|
||||||
const endParts = end.split(" ");
|
|
||||||
const endDay = endParts[0];
|
|
||||||
const month = endParts[1];
|
|
||||||
return `${startDay}–${endDay} ${month}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return label;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function HistoryChart({
|
|
||||||
header,
|
|
||||||
summary,
|
|
||||||
tabs,
|
|
||||||
data,
|
|
||||||
period,
|
|
||||||
onPeriodChange,
|
|
||||||
comparison,
|
|
||||||
setComparison,
|
|
||||||
}: HistoryChartProps) {
|
|
||||||
const [activeTab, setActiveTab] = React.useState<string>(tabs[0] || "");
|
|
||||||
|
|
||||||
const handleTabChange = (_: React.MouseEvent<HTMLElement>, newTab: string | null) => {
|
|
||||||
if (newTab !== null) setActiveTab(newTab);
|
|
||||||
};
|
|
||||||
|
|
||||||
const activeDataKey = activeTab.toLowerCase() as keyof ChartData;
|
|
||||||
|
|
||||||
let rawData: ChartDataPoint[] = [];
|
|
||||||
|
|
||||||
if (activeDataKey === "daily") {
|
|
||||||
rawData = data.daily || [];
|
|
||||||
} else {
|
|
||||||
const section = data[activeDataKey];
|
|
||||||
rawData = section?.[period] || [];
|
|
||||||
}
|
|
||||||
|
|
||||||
const currentData = rawData;
|
|
||||||
|
|
||||||
const maxAmount =
|
|
||||||
currentData.length > 0
|
|
||||||
? Math.max(
|
|
||||||
...currentData.flatMap((d) =>
|
|
||||||
comparison ? [d.amount, d.compareAmount || 0] : [d.amount]
|
|
||||||
),
|
|
||||||
1
|
|
||||||
)
|
|
||||||
: 1;
|
|
||||||
|
|
||||||
const [startIndex, setStartIndex] = React.useState(0);
|
|
||||||
const visibleCountDataTabMapping = {
|
|
||||||
daily: 7,
|
|
||||||
weekly: 6,
|
|
||||||
monthly: 4,
|
|
||||||
}
|
|
||||||
const visibleCount = visibleCountDataTabMapping[activeDataKey];
|
|
||||||
const total = currentData.length;
|
|
||||||
|
|
||||||
// clamp startIndex so we always show full 5 (when possible)
|
|
||||||
const clampedStartIndex = Math.min(
|
|
||||||
startIndex,
|
|
||||||
Math.max(total - visibleCount, 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
const visibleData = currentData.slice(
|
|
||||||
clampedStartIndex,
|
|
||||||
clampedStartIndex + visibleCount
|
|
||||||
);
|
|
||||||
|
|
||||||
const canGoLeft = startIndex > 0;
|
|
||||||
const canGoRight = startIndex + visibleCount < currentData.length;
|
|
||||||
|
|
||||||
const handlePrev = () => {
|
|
||||||
if (canGoLeft) setStartIndex((prev) => prev - visibleCount);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleNext = () => {
|
|
||||||
if (canGoRight) setStartIndex((prev) => prev + visibleCount);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Paper
|
|
||||||
sx={{
|
|
||||||
p: { xs: 2, sm: 4 },
|
|
||||||
borderRadius: 4,
|
|
||||||
width: "100%",
|
|
||||||
boxShadow: "none",
|
|
||||||
border: "1px solid",
|
|
||||||
borderColor: "divider"
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Typography variant="h6" fontWeight={700} gutterBottom>
|
|
||||||
{header}
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
{summary && (
|
|
||||||
<Typography variant="body2" color="text.secondary" sx={{ mb: 3 }}>
|
|
||||||
{summary}
|
|
||||||
</Typography>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<ToggleButtonGroup
|
|
||||||
value={activeTab}
|
|
||||||
exclusive
|
|
||||||
onChange={handleTabChange}
|
|
||||||
fullWidth
|
|
||||||
sx={{ mb: 4 }}
|
|
||||||
>
|
|
||||||
{tabs.map((tab) => (
|
|
||||||
<ToggleButton key={tab} value={tab}>
|
|
||||||
{tab}
|
|
||||||
</ToggleButton>
|
|
||||||
))}
|
|
||||||
</ToggleButtonGroup>
|
|
||||||
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
display: "flex",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "space-between",
|
|
||||||
mb: 3
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{/* Rolling / Calendar */}
|
|
||||||
<ToggleButtonGroup
|
|
||||||
value={period}
|
|
||||||
exclusive
|
|
||||||
onChange={(_, v) => v && onPeriodChange(v)}
|
|
||||||
size="small"
|
|
||||||
>
|
|
||||||
<ToggleButton value="rolling">Rolling</ToggleButton>
|
|
||||||
<ToggleButton
|
|
||||||
value="calendar"
|
|
||||||
disabled={activeDataKey === "daily"}
|
|
||||||
>
|
|
||||||
Calendar
|
|
||||||
</ToggleButton>
|
|
||||||
</ToggleButtonGroup>
|
|
||||||
|
|
||||||
{/* Compare toggle */}
|
|
||||||
<ToggleButton
|
|
||||||
value="compare"
|
|
||||||
selected={comparison}
|
|
||||||
onChange={() => setComparison(!comparison)}
|
|
||||||
size="small"
|
|
||||||
sx={{
|
|
||||||
textTransform: "none",
|
|
||||||
borderRadius: 2,
|
|
||||||
px: 2,
|
|
||||||
|
|
||||||
// OFF
|
|
||||||
color: "text.secondary",
|
|
||||||
border: "1px solid",
|
|
||||||
borderColor: "divider",
|
|
||||||
|
|
||||||
// ON
|
|
||||||
"&.Mui-selected": {
|
|
||||||
color: "white",
|
|
||||||
bgcolor: "success.main",
|
|
||||||
borderColor: "success.main"
|
|
||||||
},
|
|
||||||
"&.Mui-selected:hover": {
|
|
||||||
bgcolor: "success.dark"
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Compare
|
|
||||||
</ToggleButton>
|
|
||||||
</Box>
|
|
||||||
|
|
||||||
{currentData.length > 0 ? (
|
|
||||||
<Box sx={{ position: "relative", mt: 4 }}>
|
|
||||||
|
|
||||||
{/* LEFT ARROW */}
|
|
||||||
{canGoLeft && (
|
|
||||||
<IconButton
|
|
||||||
onClick={handlePrev}
|
|
||||||
size="small"
|
|
||||||
sx={{
|
|
||||||
position: "absolute",
|
|
||||||
left: 0,
|
|
||||||
top: "50%",
|
|
||||||
transform: "translateY(-50%)",
|
|
||||||
zIndex: 2,
|
|
||||||
bgcolor: "background.paper",
|
|
||||||
boxShadow: 1
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ChevronLeftIcon fontSize="small" />
|
|
||||||
</IconButton>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* CHART */}
|
|
||||||
<Box sx={{ display: "flex", alignItems: "flex-end", height: 220, mt: 4 }}>
|
|
||||||
{visibleData.map((point) => {
|
|
||||||
const currentHeight = (point.amount / maxAmount) * 100;
|
|
||||||
const compareHeight = comparison
|
|
||||||
? ((point.compareAmount || 0) / maxAmount) * 100
|
|
||||||
: 0;
|
|
||||||
const labelHeight = Math.max(currentHeight, compareHeight);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Box
|
|
||||||
key={point.id}
|
|
||||||
sx={{
|
|
||||||
flex: 1,
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "flex-end",
|
|
||||||
height: "100%"
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
display: "flex",
|
|
||||||
alignItems: "flex-end",
|
|
||||||
gap: comparison ? 0.5 : 0,
|
|
||||||
height: "100%",
|
|
||||||
position: "relative"
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Typography
|
|
||||||
variant="caption"
|
|
||||||
sx={{
|
|
||||||
position: "absolute",
|
|
||||||
bottom: `${labelHeight}%`,
|
|
||||||
left: "50%",
|
|
||||||
transform: "translate(-50%, -6px)",
|
|
||||||
fontSize: "0.65rem",
|
|
||||||
whiteSpace: "nowrap",
|
|
||||||
pointerEvents: "none"
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{formatDisplay(point, activeTab.toLowerCase(), comparison)}
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
{/* Compare */}
|
|
||||||
{comparison && (
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
width: 6,
|
|
||||||
height: `${compareHeight}%`,
|
|
||||||
bgcolor: "grey.400",
|
|
||||||
borderRadius: 2
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Spacer */}
|
|
||||||
<Box sx={{ width: 4 }} />
|
|
||||||
|
|
||||||
{/* Current */}
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
width: 10,
|
|
||||||
height: `${currentHeight}%`,
|
|
||||||
bgcolor: point.highlighted ? "error.main" : "primary.main",
|
|
||||||
borderRadius: 2
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Box>
|
|
||||||
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
mt: 1,
|
|
||||||
textAlign: "center",
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
|
||||||
alignItems: "center",
|
|
||||||
lineHeight: 1.1
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Typography
|
|
||||||
variant="caption"
|
|
||||||
sx={{
|
|
||||||
fontSize: "0.7rem",
|
|
||||||
opacity: 0.7,
|
|
||||||
color: "text.primary",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{formatLabel(point.id, activeDataKey)}
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
<Typography
|
|
||||||
variant="caption"
|
|
||||||
sx={{
|
|
||||||
fontSize: "0.65rem",
|
|
||||||
color: "grey.400",
|
|
||||||
visibility:
|
|
||||||
comparison && point.compareLabel && activeDataKey !== "daily"
|
|
||||||
? "visible"
|
|
||||||
: "hidden"
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{point.compareLabel
|
|
||||||
? formatLabel(point.compareLabel, activeDataKey)
|
|
||||||
: "placeholder"}
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
|
||||||
</Box>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Box>
|
|
||||||
|
|
||||||
{/* RIGHT ARROW */}
|
|
||||||
{canGoRight && (
|
|
||||||
<IconButton
|
|
||||||
onClick={handleNext}
|
|
||||||
size="small"
|
|
||||||
sx={{
|
|
||||||
position: "absolute",
|
|
||||||
right: 0,
|
|
||||||
top: "50%",
|
|
||||||
transform: "translateY(-50%)",
|
|
||||||
zIndex: 2,
|
|
||||||
bgcolor: "background.paper",
|
|
||||||
boxShadow: 1
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ChevronRightIcon fontSize="small" />
|
|
||||||
</IconButton>
|
|
||||||
)}
|
|
||||||
</Box>
|
|
||||||
) : (
|
|
||||||
<Box sx={{ height: 200, display: "flex", alignItems: "center", justifyContent: "center" }}>
|
|
||||||
<Typography color="text.secondary">No Data Available</Typography>
|
|
||||||
</Box>
|
|
||||||
)}
|
|
||||||
</Paper>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
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;
|
||||||
|
}
|
||||||
10
src/components/HistoryChart/HistoryChart.models.ts
Normal file
10
src/components/HistoryChart/HistoryChart.models.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
export interface _ChartDataPoint {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
amount: number;
|
||||||
|
highlighted?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ChartDataPoint extends _ChartDataPoint {
|
||||||
|
compare?: _ChartDataPoint;
|
||||||
|
}
|
||||||
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;
|
||||||
|
}
|
||||||
96
src/components/HistoryChart/HistoryChart.tsx
Normal file
96
src/components/HistoryChart/HistoryChart.tsx
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import HistoryChartView from "./HistoryChart.view";
|
||||||
|
import { buildChartData, tabToKey } from "./HistoryChart.adapter";
|
||||||
|
import { HistoryChartProps } from "./HistoryChart.props";
|
||||||
|
|
||||||
|
|
||||||
|
export default function HistoryChart(props: HistoryChartProps) {
|
||||||
|
const {
|
||||||
|
settings,
|
||||||
|
reportData,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
|
||||||
|
isFetching,
|
||||||
|
} = props;
|
||||||
|
|
||||||
|
const { flow, comparison, selectedPeriodId } = state;
|
||||||
|
const { setSelectedPeriodId } = stateSetters;
|
||||||
|
const { tabs } = settings;
|
||||||
|
|
||||||
|
const [activeTab, setActiveTab] = React.useState<string>(tabs[0] || "");
|
||||||
|
const [startIndex, setStartIndex] = React.useState(0);
|
||||||
|
|
||||||
|
const activeDataKey = tabToKey(activeTab);
|
||||||
|
|
||||||
|
const currentData = React.useMemo(() => {
|
||||||
|
return buildChartData(reportData, activeDataKey, flow, comparison);
|
||||||
|
}, [reportData, activeDataKey, flow, comparison]);
|
||||||
|
|
||||||
|
const maxAmount =
|
||||||
|
currentData.length > 0
|
||||||
|
? Math.max(
|
||||||
|
...currentData.flatMap((d) =>
|
||||||
|
comparison
|
||||||
|
? [d.amount, ...(d.compare ? [d.compare.amount] : [])]
|
||||||
|
: [d.amount]
|
||||||
|
),
|
||||||
|
1
|
||||||
|
)
|
||||||
|
: 1;
|
||||||
|
|
||||||
|
const visibleCountMap = {
|
||||||
|
daily: 7,
|
||||||
|
weekly: 6,
|
||||||
|
monthly: 4,
|
||||||
|
all: 4,
|
||||||
|
};
|
||||||
|
|
||||||
|
const visibleCount = visibleCountMap[activeDataKey] ?? 4;
|
||||||
|
|
||||||
|
const total = currentData.length;
|
||||||
|
|
||||||
|
const clampedStartIndex = Math.min(
|
||||||
|
startIndex,
|
||||||
|
Math.max(total - visibleCount, 0)
|
||||||
|
);
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (startIndex !== clampedStartIndex) {
|
||||||
|
setStartIndex(clampedStartIndex);
|
||||||
|
}
|
||||||
|
}, [startIndex, clampedStartIndex]);
|
||||||
|
|
||||||
|
const visibleData = currentData.slice(
|
||||||
|
clampedStartIndex,
|
||||||
|
clampedStartIndex + visibleCount
|
||||||
|
);
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
setSelectedPeriodId(null);
|
||||||
|
}, [activeTab]);
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (
|
||||||
|
selectedPeriodId &&
|
||||||
|
!visibleData.some((p) => p.id === selectedPeriodId)
|
||||||
|
) {
|
||||||
|
setSelectedPeriodId(null);
|
||||||
|
}
|
||||||
|
}, [visibleData, selectedPeriodId]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<HistoryChartView
|
||||||
|
{...props}
|
||||||
|
activeTab={activeTab}
|
||||||
|
setActiveTab={setActiveTab}
|
||||||
|
currentData={currentData}
|
||||||
|
visibleData={visibleData}
|
||||||
|
maxAmount={maxAmount}
|
||||||
|
visibleCount={visibleCount}
|
||||||
|
startIndex={clampedStartIndex}
|
||||||
|
setStartIndex={setStartIndex}
|
||||||
|
activeDataKey={activeDataKey}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
27
src/components/HistoryChart/HistoryChart.utils.ts
Normal file
27
src/components/HistoryChart/HistoryChart.utils.ts
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import { ChartDataPoint } from "./HistoryChart.models";
|
||||||
|
|
||||||
|
export const formatDisplay = (
|
||||||
|
point: ChartDataPoint,
|
||||||
|
tab: string,
|
||||||
|
comparison: boolean
|
||||||
|
) => {
|
||||||
|
const base = point.amount;
|
||||||
|
const cmp = point.compare?.amount ?? 0;
|
||||||
|
|
||||||
|
const formatShort = (val: number) => {
|
||||||
|
if (tab === "monthly" && val >= 100000) {
|
||||||
|
return `${(val / 100000).toFixed(2)}L`;
|
||||||
|
}
|
||||||
|
if (tab === "weekly" && val >= 1000) {
|
||||||
|
return `${(val / 1000).toFixed(1)}K`;
|
||||||
|
}
|
||||||
|
return val.toLocaleString("en-IN");
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!comparison) return `₹ ${formatShort(base)}`;
|
||||||
|
|
||||||
|
const diff = base - cmp;
|
||||||
|
const sign = diff >= 0 ? "+" : "-";
|
||||||
|
|
||||||
|
return `₹ ${formatShort(base)} (${sign}${formatShort(Math.abs(diff))})`;
|
||||||
|
};
|
||||||
205
src/components/HistoryChart/HistoryChart.view.tsx
Normal file
205
src/components/HistoryChart/HistoryChart.view.tsx
Normal file
@@ -0,0 +1,205 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Typography,
|
||||||
|
ToggleButtonGroup,
|
||||||
|
ToggleButton,
|
||||||
|
Paper
|
||||||
|
} from "@mui/material";
|
||||||
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
|
import IconButton from "@mui/material/IconButton";
|
||||||
|
import ChevronLeftIcon from "@mui/icons-material/ChevronLeft";
|
||||||
|
import ChevronRightIcon from "@mui/icons-material/ChevronRight";
|
||||||
|
import {
|
||||||
|
HistoryChartViewProps,
|
||||||
|
} from "./HistoryChart.props";
|
||||||
|
import { formatDisplay } from "./HistoryChart.utils";
|
||||||
|
|
||||||
|
export default function HistoryChartView({
|
||||||
|
title,
|
||||||
|
summary,
|
||||||
|
settings,
|
||||||
|
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
isFetching,
|
||||||
|
|
||||||
|
colorScheme,
|
||||||
|
|
||||||
|
activeTab,
|
||||||
|
setActiveTab,
|
||||||
|
currentData,
|
||||||
|
visibleData,
|
||||||
|
maxAmount,
|
||||||
|
visibleCount,
|
||||||
|
startIndex,
|
||||||
|
setStartIndex,
|
||||||
|
activeDataKey,
|
||||||
|
}: HistoryChartViewProps) {
|
||||||
|
|
||||||
|
const { flow, periodType, selectedPeriodId, comparison } = state;
|
||||||
|
const { togglePeriodType, setSelectedPeriodId, toggleComparison } = stateSetters;
|
||||||
|
|
||||||
|
const theme = useTheme();
|
||||||
|
const isDark = theme.palette.mode === "dark";
|
||||||
|
|
||||||
|
const total = currentData.length;
|
||||||
|
const maxStartIndex = Math.max(total - visibleCount, 0);
|
||||||
|
const clampedStartIndex = Math.min(startIndex, maxStartIndex);
|
||||||
|
|
||||||
|
const handleTabChange = (_: React.MouseEvent<HTMLElement>, newTab: string | null) => {
|
||||||
|
if (newTab !== null) setActiveTab(newTab);
|
||||||
|
};
|
||||||
|
|
||||||
|
const canGoLeft = clampedStartIndex > 0;
|
||||||
|
const canGoRight = clampedStartIndex < maxStartIndex;
|
||||||
|
|
||||||
|
const handlePrev = () => {
|
||||||
|
if (!canGoLeft) return;
|
||||||
|
setStartIndex((prev) => Math.max(prev - visibleCount, 0));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleNext = () => {
|
||||||
|
if (!canGoRight) return;
|
||||||
|
setStartIndex((prev) => {
|
||||||
|
const next = prev + visibleCount;
|
||||||
|
return Math.min(next, maxStartIndex);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Paper
|
||||||
|
sx={{
|
||||||
|
p: { xs: 2.5, sm: 4 },
|
||||||
|
borderRadius: 4,
|
||||||
|
width: "100%",
|
||||||
|
boxShadow: "none",
|
||||||
|
border: "1px solid",
|
||||||
|
borderColor: "divider",
|
||||||
|
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>
|
||||||
|
{title}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
{summary && (
|
||||||
|
<Typography variant="body2" color="text.secondary" sx={{ mb: 3 }}>
|
||||||
|
{summary}
|
||||||
|
</Typography>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<ToggleButtonGroup value={activeTab} exclusive onChange={handleTabChange} fullWidth sx={{ mb: 4 }}>
|
||||||
|
{settings.tabs.map((tab) => (
|
||||||
|
<ToggleButton key={tab} value={tab}>
|
||||||
|
{tab}
|
||||||
|
</ToggleButton>
|
||||||
|
))}
|
||||||
|
</ToggleButtonGroup>
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", justifyContent: "space-between", mb: 3 }}>
|
||||||
|
<ToggleButtonGroup value={periodType} exclusive onChange={togglePeriodType} size="small">
|
||||||
|
<ToggleButton value="rolling">Rolling</ToggleButton>
|
||||||
|
<ToggleButton value="calendar">Calendar</ToggleButton>
|
||||||
|
</ToggleButtonGroup>
|
||||||
|
|
||||||
|
<ToggleButton
|
||||||
|
value="compare"
|
||||||
|
selected={comparison}
|
||||||
|
onChange={toggleComparison}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
Compare
|
||||||
|
</ToggleButton>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{currentData.length > 0 ? (
|
||||||
|
<Box sx={{ position: "relative", mt: 4 }}>
|
||||||
|
{canGoLeft && (
|
||||||
|
<IconButton onClick={handlePrev} size="small" sx={{ position: "absolute", left: 0, top: "50%" }}>
|
||||||
|
<ChevronLeftIcon fontSize="small" />
|
||||||
|
</IconButton>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Box sx={{ display: "flex", alignItems: "flex-end", height: 220, mt: 4 }}>
|
||||||
|
{visibleData.map((point) => {
|
||||||
|
const currentHeight = (point.amount / maxAmount) * 100;
|
||||||
|
const compareHeight = comparison
|
||||||
|
? ((point.compare?.amount ?? 0) / maxAmount) * 100
|
||||||
|
: 0;
|
||||||
|
|
||||||
|
const isSelected = selectedPeriodId === point.id;
|
||||||
|
const display = formatDisplay(point, activeDataKey, comparison);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box
|
||||||
|
key={point.id}
|
||||||
|
onClick={() =>
|
||||||
|
setSelectedPeriodId(isSelected ? null : point.id)
|
||||||
|
}
|
||||||
|
sx={{
|
||||||
|
flex: 1,
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
alignItems: "center",
|
||||||
|
cursor: "pointer",
|
||||||
|
height: "100%"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box sx={{ display: "flex", alignItems: "flex-end", gap: 1, height: "100%" }}>
|
||||||
|
{comparison && (
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
width: 8,
|
||||||
|
height: `${compareHeight}%`,
|
||||||
|
bgcolor: alpha(colorScheme.primary, 0.4),
|
||||||
|
borderRadius: "4px 4px 0 0"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
width: 12,
|
||||||
|
height: `${currentHeight}%`,
|
||||||
|
bgcolor: isSelected ? "warning.main" : colorScheme.primary,
|
||||||
|
borderRadius: "4px 4px 0 0"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Typography variant="caption">
|
||||||
|
{point.label}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
{comparison && point.compare && (
|
||||||
|
<Typography variant="caption" color="text.secondary">
|
||||||
|
{point.compare.label}
|
||||||
|
</Typography>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Typography variant="caption">
|
||||||
|
{display}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{canGoRight && (
|
||||||
|
<IconButton onClick={handleNext} size="small" sx={{ position: "absolute", right: 0, top: "50%" }}>
|
||||||
|
<ChevronRightIcon fontSize="small" />
|
||||||
|
</IconButton>
|
||||||
|
)}
|
||||||
|
</Box>
|
||||||
|
) : (
|
||||||
|
<Box sx={{ height: 200, display: "flex", alignItems: "center", justifyContent: "center" }}>
|
||||||
|
<Typography color="text.secondary">No Data Available</Typography>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
</Paper>
|
||||||
|
);
|
||||||
|
}
|
||||||
2
src/components/HistoryChart/index.ts
Normal file
2
src/components/HistoryChart/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export { default } from "./HistoryChart";
|
||||||
|
export * from "./HistoryChart.models";
|
||||||
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"),
|
||||||
|
}));
|
||||||
|
}
|
||||||
7
src/components/LatestItems/LatestItems.models.ts
Normal file
7
src/components/LatestItems/LatestItems.models.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
export interface LatestItem {
|
||||||
|
id: string | number;
|
||||||
|
title: string;
|
||||||
|
subtitle: string;
|
||||||
|
amount: string;
|
||||||
|
timeAgo: 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;
|
||||||
|
}
|
||||||
40
src/components/LatestItems/LatestItems.tsx
Normal file
40
src/components/LatestItems/LatestItems.tsx
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import { buildLatestItems } from "./LatestItems.adapter";
|
||||||
|
import LatestItemsView from "./LatestItems.view";
|
||||||
|
import { LatestItemsProps } from "./LatestItems.props";
|
||||||
|
|
||||||
|
export default function LatestItems(props: LatestItemsProps) {
|
||||||
|
const {
|
||||||
|
reportData,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
isFetching,
|
||||||
|
} = props;
|
||||||
|
|
||||||
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
|
const [visibleCount, setVisibleCount] = React.useState(5);
|
||||||
|
|
||||||
|
// Reset count when flow changes to start clean
|
||||||
|
React.useEffect(() => {
|
||||||
|
setVisibleCount(5);
|
||||||
|
}, [flow]);
|
||||||
|
|
||||||
|
const allItems = React.useMemo(() => {
|
||||||
|
return buildLatestItems(reportData, selectedPeriodId, selectedGroupKey, flow);
|
||||||
|
}, [reportData, selectedPeriodId, selectedGroupKey, flow]);
|
||||||
|
|
||||||
|
const visibleItems = React.useMemo(() => {
|
||||||
|
return allItems.slice(0, visibleCount);
|
||||||
|
}, [allItems, visibleCount]);
|
||||||
|
|
||||||
|
const canExpand = visibleCount < allItems.length;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<LatestItemsView
|
||||||
|
{...props}
|
||||||
|
items={visibleItems}
|
||||||
|
canExpand={canExpand}
|
||||||
|
onExpand={() => setVisibleCount((prev) => prev + 5)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -7,51 +7,30 @@ import {
|
|||||||
Avatar,
|
Avatar,
|
||||||
Typography,
|
Typography,
|
||||||
Box,
|
Box,
|
||||||
Button,
|
IconButton,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
|
import { alpha } from "@mui/material/styles";
|
||||||
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
||||||
|
import { LatestItemsViewProps } from "./LatestItems.props";
|
||||||
|
|
||||||
export interface LatestItem {
|
export default function LatestItemsView({
|
||||||
id: string | number;
|
|
||||||
icon: React.ReactNode;
|
|
||||||
iconBgColor?: string;
|
|
||||||
title: string;
|
|
||||||
subtitle: string;
|
|
||||||
amount: string;
|
|
||||||
timeAgo: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface LatestItemsListProps {
|
|
||||||
title?: string;
|
|
||||||
items: LatestItem[];
|
|
||||||
onViewAll?: () => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function LatestItemsList({
|
|
||||||
title = "Recent Transactions",
|
|
||||||
items,
|
items,
|
||||||
onViewAll,
|
title,
|
||||||
}: LatestItemsListProps) {
|
canExpand,
|
||||||
|
onExpand,
|
||||||
|
isFetching,
|
||||||
|
colorScheme,
|
||||||
|
}: LatestItemsViewProps) {
|
||||||
|
const accentColor = colorScheme?.primary || "";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ width: "100%", bgcolor: "background.paper", borderRadius: 4, p: 2 }}>
|
<Box sx={{ width: "100%", bgcolor: "background.paper", borderRadius: 4, p: 2, opacity: isFetching ? 0.6 : 1, transition: "opacity 0.3s ease", pointerEvents: isFetching ? "none" : "auto" }}>
|
||||||
{/* Header */}
|
<Box sx={{ mb: 2, px: 2 }}>
|
||||||
<Box sx={{ display: "flex", justifyContent: "space-between", alignItems: "center", mb: 2, px: 2 }}>
|
|
||||||
<Typography variant="h6" fontWeight="bold">
|
<Typography variant="h6" fontWeight="bold">
|
||||||
{title}
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
{onViewAll && (
|
|
||||||
<Button
|
|
||||||
variant="text"
|
|
||||||
color="inherit"
|
|
||||||
size="small"
|
|
||||||
sx={{ textTransform: "none", color: "text.secondary", fontWeight: "medium" }}
|
|
||||||
onClick={onViewAll}
|
|
||||||
>
|
|
||||||
view all
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
{/* List */}
|
|
||||||
<List disablePadding>
|
<List disablePadding>
|
||||||
{items.map((item, index) => (
|
{items.map((item, index) => (
|
||||||
<ListItem
|
<ListItem
|
||||||
@@ -62,28 +41,24 @@ export default function LatestItemsList({
|
|||||||
mb: index !== items.length - 1 ? 1 : 0,
|
mb: index !== items.length - 1 ? 1 : 0,
|
||||||
borderRadius: 3,
|
borderRadius: 3,
|
||||||
"&:hover": { bgcolor: "action.hover" },
|
"&:hover": { bgcolor: "action.hover" },
|
||||||
transition: "background-color 0.2s ease",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ListItemAvatar>
|
<ListItemAvatar>
|
||||||
<Avatar
|
<Avatar
|
||||||
variant="rounded"
|
variant="rounded"
|
||||||
sx={{
|
sx={{
|
||||||
bgcolor: item.iconBgColor || "grey.200",
|
bgcolor: alpha(accentColor, 0.13),
|
||||||
color: "inherit",
|
|
||||||
width: 48,
|
width: 48,
|
||||||
height: 48,
|
height: 48,
|
||||||
borderRadius: 3,
|
borderRadius: 3,
|
||||||
mr: 2,
|
mr: 2,
|
||||||
}}
|
}}
|
||||||
>
|
/>
|
||||||
{item.icon}
|
|
||||||
</Avatar>
|
|
||||||
</ListItemAvatar>
|
</ListItemAvatar>
|
||||||
|
|
||||||
<ListItemText
|
<ListItemText
|
||||||
primary={
|
primary={
|
||||||
<Typography variant="subtitle1" fontWeight={600} color="text.primary">
|
<Typography variant="subtitle1" fontWeight={600}>
|
||||||
{item.title}
|
{item.title}
|
||||||
</Typography>
|
</Typography>
|
||||||
}
|
}
|
||||||
@@ -95,15 +70,23 @@ export default function LatestItemsList({
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<Box sx={{ textAlign: "right" }}>
|
<Box sx={{ textAlign: "right" }}>
|
||||||
<Typography variant="subtitle1" fontWeight={700} color="text.primary">
|
<Typography variant="subtitle1" fontWeight={700}>
|
||||||
{item.amount}
|
{item.amount}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography variant="caption" color="text.secondary" sx={{ display: 'block', mt: 0.5 }}>
|
<Typography variant="caption" color="text.secondary">
|
||||||
{item.timeAgo}
|
{item.timeAgo}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
|
{canExpand && (
|
||||||
|
<Box sx={{ display: "flex", justifyContent: "center", mt: 2 }}>
|
||||||
|
<IconButton size="small" onClick={onExpand}>
|
||||||
|
<ExpandMoreIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
</List>
|
</List>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
2
src/components/LatestItems/index.ts
Normal file
2
src/components/LatestItems/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export { default } from "./LatestItems";
|
||||||
|
export * from "./LatestItems.models";
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
import * as React from "react";
|
|
||||||
import { Box, Typography, Paper, LinearProgress, linearProgressClasses } from "@mui/material";
|
|
||||||
|
|
||||||
export interface ProgressCardProps {
|
|
||||||
header: string;
|
|
||||||
summary?: string;
|
|
||||||
progressAmount: number;
|
|
||||||
totalAmount: number;
|
|
||||||
colorTheme?: "primary" | "secondary" | "error" | "info" | "success" | "warning";
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function ProgressCard({
|
|
||||||
header,
|
|
||||||
summary,
|
|
||||||
progressAmount,
|
|
||||||
totalAmount,
|
|
||||||
colorTheme = "info",
|
|
||||||
}: ProgressCardProps) {
|
|
||||||
const percentage = Math.min(100, Math.max(0, (progressAmount / totalAmount) * 100)) || 0;
|
|
||||||
|
|
||||||
const displaySummary = summary ?? `Rs ${progressAmount} / Rs ${totalAmount}`;
|
|
||||||
|
|
||||||
const parts = displaySummary.split('/');
|
|
||||||
const prefixAmount = parts[0]?.trim() || '';
|
|
||||||
const suffixString = parts.length > 1 ? `/ ${parts.slice(1).join('/').trim()}` : '';
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Paper
|
|
||||||
elevation={4}
|
|
||||||
sx={{
|
|
||||||
width: "100%",
|
|
||||||
p: { xs: 3, md: 4 },
|
|
||||||
borderRadius: 4,
|
|
||||||
background: (theme) =>
|
|
||||||
colorTheme === "info"
|
|
||||||
? "linear-gradient(135deg, #0284c7 0%, #06b6d4 100%)"
|
|
||||||
: `linear-gradient(135deg, ${theme.palette[colorTheme].main} 0%, ${theme.palette[colorTheme].light} 100%)`,
|
|
||||||
color: "#fff",
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "center",
|
|
||||||
position: 'relative',
|
|
||||||
overflow: 'hidden',
|
|
||||||
boxShadow: (theme) => `0 12px 24px -10px ${theme.palette.mode === 'dark' ? '#000' : theme.palette[colorTheme].main}`,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Typography variant="subtitle1" fontWeight={600} sx={{ opacity: 0.9, mb: 1 }}>
|
|
||||||
{header}
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
<Typography variant="h3" fontWeight={800} sx={{ mb: 3 }}>
|
|
||||||
{prefixAmount}{" "}
|
|
||||||
{suffixString && (
|
|
||||||
<Typography component="span" variant="subtitle1" sx={{ opacity: 0.7, fontWeight: 500 }}>
|
|
||||||
{suffixString}
|
|
||||||
</Typography>
|
|
||||||
)}
|
|
||||||
</Typography>
|
|
||||||
|
|
||||||
<Box sx={{ width: "85%" }}>
|
|
||||||
<LinearProgress
|
|
||||||
variant="determinate"
|
|
||||||
value={percentage}
|
|
||||||
sx={{
|
|
||||||
height: 10,
|
|
||||||
borderRadius: 5,
|
|
||||||
[`&.${linearProgressClasses.colorPrimary}`]: {
|
|
||||||
backgroundColor: "rgba(0, 0, 0, 0.2)",
|
|
||||||
},
|
|
||||||
[`& .${linearProgressClasses.bar}`]: {
|
|
||||||
borderRadius: 5,
|
|
||||||
backgroundColor: "#fff",
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Box>
|
|
||||||
</Paper>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
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;
|
||||||
|
}
|
||||||
129
src/components/ProgressCard/ProgressCard.view.tsx
Normal file
129
src/components/ProgressCard/ProgressCard.view.tsx
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Typography,
|
||||||
|
Paper,
|
||||||
|
LinearProgress,
|
||||||
|
Divider,
|
||||||
|
linearProgressClasses
|
||||||
|
} from "@mui/material";
|
||||||
|
import { useTheme, alpha } from "@mui/material/styles";
|
||||||
|
import { getPercentage, formatCurrency } from "../report.helpers";
|
||||||
|
import { ProgressCardViewProps } from "./ProgressCard.props";
|
||||||
|
|
||||||
|
export default function ProgressCardView({
|
||||||
|
title,
|
||||||
|
settings,
|
||||||
|
|
||||||
|
isFetching,
|
||||||
|
|
||||||
|
colorScheme,
|
||||||
|
|
||||||
|
progressAmount,
|
||||||
|
totalAmount,
|
||||||
|
selected,
|
||||||
|
onClick,
|
||||||
|
}: ProgressCardViewProps) {
|
||||||
|
const theme = useTheme();
|
||||||
|
|
||||||
|
const percentage = getPercentage(progressAmount, totalAmount);
|
||||||
|
const formattedProgress = formatCurrency(progressAmount);
|
||||||
|
const formattedTotal = formatCurrency(totalAmount);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Paper
|
||||||
|
elevation={settings.compact ? 2 : 4}
|
||||||
|
onClick={onClick}
|
||||||
|
sx={{
|
||||||
|
width: "100%",
|
||||||
|
p: settings.compact ? { xs: 2.5, md: 3 } : { xs: 3, md: 4 },
|
||||||
|
borderRadius: settings.compact ? 3 : 4,
|
||||||
|
transform: selected ? "scale(1.02)" : "scale(1)",
|
||||||
|
transition: "transform 0.2s ease, box-shadow 0.2s ease",
|
||||||
|
bgcolor: colorScheme.surface,
|
||||||
|
color: colorScheme.text,
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
alignItems: settings.compact ? "flex-start" : "center",
|
||||||
|
justifyContent: "center",
|
||||||
|
position: "relative",
|
||||||
|
overflow: "hidden",
|
||||||
|
border: selected
|
||||||
|
? `2px solid ${colorScheme.primary}`
|
||||||
|
: "1px solid",
|
||||||
|
borderColor: selected ? colorScheme.primary : "divider",
|
||||||
|
boxShadow: "none",
|
||||||
|
opacity: isFetching ? 0.6 : 1,
|
||||||
|
pointerEvents: isFetching ? "none" : "auto",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography
|
||||||
|
variant={settings.compact ? "body2" : "subtitle1"}
|
||||||
|
fontWeight={700}
|
||||||
|
sx={{
|
||||||
|
opacity: 0.95,
|
||||||
|
mb: settings.compact ? 1.5 : 2,
|
||||||
|
width: "100%",
|
||||||
|
overflow: "hidden",
|
||||||
|
textOverflow: "ellipsis",
|
||||||
|
whiteSpace: "nowrap",
|
||||||
|
letterSpacing: 0.5,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{title}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Box sx={{ mb: settings.compact ? 2 : 3, width: "100%" }}>
|
||||||
|
<Typography
|
||||||
|
variant={settings.compact ? "h5" : "h3"}
|
||||||
|
fontWeight={900}
|
||||||
|
sx={{
|
||||||
|
mb: 0.5,
|
||||||
|
lineHeight: 1.2,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{formattedProgress}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Divider
|
||||||
|
sx={{
|
||||||
|
my: 1,
|
||||||
|
borderColor: "divider",
|
||||||
|
width: "100%",
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Typography
|
||||||
|
variant={settings.compact ? "caption" : "body2"}
|
||||||
|
sx={{
|
||||||
|
opacity: 0.85,
|
||||||
|
fontWeight: 500,
|
||||||
|
display: "block",
|
||||||
|
color: alpha(colorScheme.text, 0.85),
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
of {formattedTotal}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Box sx={{ width: "100%", mt: "auto" }}>
|
||||||
|
<LinearProgress
|
||||||
|
variant="determinate"
|
||||||
|
value={percentage}
|
||||||
|
sx={{
|
||||||
|
height: settings.compact ? 6 : 10,
|
||||||
|
borderRadius: 5,
|
||||||
|
[`&.${linearProgressClasses.colorPrimary}`]: {
|
||||||
|
backgroundColor: alpha(theme.palette.divider, 0.5),
|
||||||
|
},
|
||||||
|
[`& .${linearProgressClasses.bar}`]: {
|
||||||
|
borderRadius: 5,
|
||||||
|
backgroundColor: colorScheme.primary,
|
||||||
|
boxShadow: `0 0 8px ${alpha(colorScheme.primary, 0.4)}`,
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
</Paper>
|
||||||
|
);
|
||||||
|
}
|
||||||
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,
|
||||||
|
};
|
||||||
|
}
|
||||||
83
src/components/ProgressCard/TopTags.tsx
Normal file
83
src/components/ProgressCard/TopTags.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 { extractTopTags } from "./TopTags.adapter";
|
||||||
|
import { ProgressCardProps } from "./ProgressCard.props";
|
||||||
|
|
||||||
|
export default function TopTags(props: ProgressCardProps) {
|
||||||
|
const {
|
||||||
|
title,
|
||||||
|
|
||||||
|
reportData,
|
||||||
|
state,
|
||||||
|
stateSetters,
|
||||||
|
|
||||||
|
isFetching,
|
||||||
|
} = props
|
||||||
|
const { flow, selectedPeriodId, selectedGroupKey } = state;
|
||||||
|
const { setSelectedGroupKey } = stateSetters;
|
||||||
|
|
||||||
|
const { items, total } = React.useMemo(() => {
|
||||||
|
return extractTopTags(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?.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>
|
||||||
|
);
|
||||||
|
}
|
||||||
2
src/components/ProgressCard/index.ts
Normal file
2
src/components/ProgressCard/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export { default } from "./ProgressCard.view";
|
||||||
|
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 };
|
||||||
|
}
|
||||||
40
src/dashboard-config.ts
Normal file
40
src/dashboard-config.ts
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
import HistoryChart from "./components/HistoryChart";
|
||||||
|
import LatestItems from "./components/LatestItems";
|
||||||
|
import { DashboardConfig } from "./components/Dashboard";
|
||||||
|
import TopTags from "./components/ProgressCard/TopTags";
|
||||||
|
import TopPayees from "./components/ProgressCard/TopPayees";
|
||||||
|
|
||||||
|
export const configuration: DashboardConfig = {
|
||||||
|
sections: [
|
||||||
|
{
|
||||||
|
id: "breakdown",
|
||||||
|
title: "Breakdown",
|
||||||
|
summary: "Interactive chronological tracking",
|
||||||
|
component: HistoryChart,
|
||||||
|
settings: {
|
||||||
|
tabs: ["Weekly", "Monthly"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "top-categories",
|
||||||
|
title: 'Top Categories',
|
||||||
|
component: TopTags,
|
||||||
|
settings: {
|
||||||
|
compact: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "top-payees",
|
||||||
|
title: 'Top Payees',
|
||||||
|
component: TopPayees,
|
||||||
|
settings: {
|
||||||
|
compact: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "items",
|
||||||
|
title: 'Recent Transactions',
|
||||||
|
component: LatestItems,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
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();
|
||||||
|
}
|
||||||
15
src/features/report/index.ts
Normal file
15
src/features/report/index.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
export {
|
||||||
|
useReport
|
||||||
|
} from './useReport'
|
||||||
|
export type {
|
||||||
|
Transaction,
|
||||||
|
ReportData,
|
||||||
|
ReportBucket,
|
||||||
|
ReportPeriod,
|
||||||
|
ReportQuery,
|
||||||
|
GroupKey,
|
||||||
|
PeriodType,
|
||||||
|
} from './report.models'
|
||||||
|
export {
|
||||||
|
prepareReport
|
||||||
|
} from './report.utils'
|
||||||
112
src/features/report/report.models.ts
Normal file
112
src/features/report/report.models.ts
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
export interface Payor {
|
||||||
|
id?: string;
|
||||||
|
name: string;
|
||||||
|
username: string;
|
||||||
|
email: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Payee {
|
||||||
|
type: "merchant" | "person" | "transfer" | "other";
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Account {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
number: string;
|
||||||
|
type: "cash" | "bank" | "credit_card" | "wallet" | "other";
|
||||||
|
currency: string;
|
||||||
|
is_active?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Tag {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
icon: string;
|
||||||
|
parent_id?: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Transaction {
|
||||||
|
id: string;
|
||||||
|
payor: Payor;
|
||||||
|
payee: Payee;
|
||||||
|
amount: number;
|
||||||
|
account: Account;
|
||||||
|
tags: Tag[];
|
||||||
|
occurred_at: string;
|
||||||
|
created_at: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------
|
||||||
|
// Metrics
|
||||||
|
// -----------------------------
|
||||||
|
|
||||||
|
export interface ReportMetric {
|
||||||
|
sum: number;
|
||||||
|
count: number;
|
||||||
|
average: number;
|
||||||
|
transactions?: Transaction[];
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------
|
||||||
|
// Period
|
||||||
|
// -----------------------------
|
||||||
|
|
||||||
|
export type PeriodType = "daily" | "weekly" | "monthly" | "all";
|
||||||
|
|
||||||
|
export interface ReportPeriod {
|
||||||
|
start: string;
|
||||||
|
end: string;
|
||||||
|
metric: ReportMetric;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------
|
||||||
|
// Group (bucket)
|
||||||
|
// -----------------------------
|
||||||
|
|
||||||
|
export type GroupKey = {
|
||||||
|
[dimension: string]: string[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export interface ReportBucket {
|
||||||
|
group_key: GroupKey;
|
||||||
|
|
||||||
|
periods: {
|
||||||
|
daily?: ReportPeriod[];
|
||||||
|
weekly?: ReportPeriod[];
|
||||||
|
monthly?: ReportPeriod[];
|
||||||
|
all?: 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
|
||||||
|
// -----------------------------
|
||||||
|
|
||||||
|
export interface ReportData {
|
||||||
|
snapshot_id?: string | null;
|
||||||
|
|
||||||
|
flow?: "inflows" | "outflows" | null;
|
||||||
|
|
||||||
|
periods: PeriodType[];
|
||||||
|
|
||||||
|
tags?: string[] | null;
|
||||||
|
payee?: string[] | null;
|
||||||
|
|
||||||
|
buckets: ReportBucket[];
|
||||||
|
|
||||||
|
query: ReportQuery;
|
||||||
|
}
|
||||||
117
src/features/report/report.utils.ts
Normal file
117
src/features/report/report.utils.ts
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
import {
|
||||||
|
ReportData,
|
||||||
|
ReportPeriod,
|
||||||
|
PeriodType,
|
||||||
|
} from "./report.models";
|
||||||
|
|
||||||
|
/* ---------- ID BUILDING ---------- */
|
||||||
|
|
||||||
|
function formatDate(d: Date): string {
|
||||||
|
const y = d.getUTCFullYear();
|
||||||
|
const m = String(d.getUTCMonth() + 1).padStart(2, "0");
|
||||||
|
const day = String(d.getUTCDate()).padStart(2, "0");
|
||||||
|
return `${y}-${m}-${day}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildPeriodId(
|
||||||
|
type: PeriodType,
|
||||||
|
start: Date,
|
||||||
|
end: Date
|
||||||
|
): string {
|
||||||
|
const s = formatDate(start);
|
||||||
|
const e = formatDate(end);
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case "daily":
|
||||||
|
return `D:${s}_${e}`;
|
||||||
|
case "weekly":
|
||||||
|
return `W:${s}_${e}`;
|
||||||
|
case "monthly":
|
||||||
|
return `M:${s}_${e}`;
|
||||||
|
case "all":
|
||||||
|
return `ALL:${s}_${e}`;
|
||||||
|
default:
|
||||||
|
return `${s}_${e}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---------- LABEL BUILDING ---------- */
|
||||||
|
|
||||||
|
const dayFmt = new Intl.DateTimeFormat("en-GB", {
|
||||||
|
day: "numeric",
|
||||||
|
month: "short",
|
||||||
|
timeZone: "UTC",
|
||||||
|
});
|
||||||
|
|
||||||
|
const monthDayFmt = new Intl.DateTimeFormat("en-GB", {
|
||||||
|
month: "short",
|
||||||
|
day: "numeric",
|
||||||
|
timeZone: "UTC",
|
||||||
|
});
|
||||||
|
|
||||||
|
const monthFmt = new Intl.DateTimeFormat("en-GB", {
|
||||||
|
month: "short",
|
||||||
|
timeZone: "UTC",
|
||||||
|
});
|
||||||
|
|
||||||
|
const yearFmt = new Intl.DateTimeFormat("en-GB", {
|
||||||
|
year: "numeric",
|
||||||
|
timeZone: "UTC",
|
||||||
|
});
|
||||||
|
|
||||||
|
function buildLabel(
|
||||||
|
type: PeriodType,
|
||||||
|
start: Date,
|
||||||
|
end: Date
|
||||||
|
): string {
|
||||||
|
switch (type) {
|
||||||
|
case "daily":
|
||||||
|
return dayFmt.format(start);
|
||||||
|
|
||||||
|
case "weekly": {
|
||||||
|
const sDay = start.getUTCDate();
|
||||||
|
const m = monthFmt.format(start);
|
||||||
|
return `${sDay} ${m}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
case "monthly":
|
||||||
|
return `${monthFmt.format(start)} ${yearFmt.format(start)}`;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return `${monthDayFmt.format(start)} - ${monthDayFmt.format(end)}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---------- MAIN ---------- */
|
||||||
|
|
||||||
|
function decoratePeriods(
|
||||||
|
type: PeriodType,
|
||||||
|
periods: ReportPeriod[]
|
||||||
|
): (ReportPeriod & { id: string; label: string })[] {
|
||||||
|
return periods.map((p) => ({
|
||||||
|
...p,
|
||||||
|
id: buildPeriodId(type, new Date(p.start + "Z"), new Date(p.end + "Z")),
|
||||||
|
label: buildLabel(type, new Date(p.start + "Z"), new Date(p.end + "Z")),
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
export function prepareReport(reportData: ReportData): ReportData {
|
||||||
|
return {
|
||||||
|
...reportData,
|
||||||
|
buckets: reportData.buckets.map((bucket) => {
|
||||||
|
const newPeriods: typeof bucket.periods = {};
|
||||||
|
|
||||||
|
for (const type of reportData.periods) {
|
||||||
|
const arr = bucket.periods[type];
|
||||||
|
if (arr) {
|
||||||
|
newPeriods[type] = decoratePeriods(type, arr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
...bucket,
|
||||||
|
periods: newPeriods,
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
}
|
||||||
21
src/features/report/useReport.ts
Normal file
21
src/features/report/useReport.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import { useResourceByName } from "../../../react-openapi";
|
||||||
|
|
||||||
|
export interface ReportParams {
|
||||||
|
snapshot_id?: string;
|
||||||
|
periods?: ("daily" | "weekly" | "monthly" | "all")[];
|
||||||
|
flow?: "inflows" | "outflows";
|
||||||
|
payee?: string[];
|
||||||
|
tags?: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useReport(params: ReportParams) {
|
||||||
|
const { useRead } = useResourceByName("reports");
|
||||||
|
|
||||||
|
return useRead(
|
||||||
|
params.snapshot_id ? params.snapshot_id : "latest",
|
||||||
|
{
|
||||||
|
...params,
|
||||||
|
periods: params.periods,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
71
src/main.jsx
71
src/main.jsx
@@ -12,64 +12,65 @@ import {
|
|||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import Home from './Home';
|
import Home from './Home';
|
||||||
import Dashboard from './Dashboard';
|
import Dashboard from './Dashboard';
|
||||||
import { Admin, initializeApiClients } from '../react-openapi';
|
import FetchRequests from './FetchRequests';
|
||||||
|
import ReportSnapshots from './ReportSnapshots';
|
||||||
|
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';
|
||||||
import process from 'process';
|
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';
|
||||||
|
|
||||||
// Polyfill Node.js globals for browser environment (needed by SwaggerParser)
|
|
||||||
window.Buffer = Buffer;
|
window.Buffer = Buffer;
|
||||||
window.process = process;
|
window.process = process;
|
||||||
|
|
||||||
const rootElement = document.getElementById('root');
|
const rootElement = document.getElementById('root');
|
||||||
const root = createRoot(rootElement);
|
const root = createRoot(rootElement);
|
||||||
const API_BASE = import.meta.env.VITE_API_BASE_URL;
|
|
||||||
const AUTH_BASE = import.meta.env.VITE_AUTH_BASE_URL;
|
|
||||||
|
|
||||||
// Initialize global API clients so all components across khata-ui have generic API access
|
const AUTH_BASE = import.meta.env.VITE_AUTH_BASE_URL;
|
||||||
initializeApiClients(API_BASE, AUTH_BASE);
|
|
||||||
|
|
||||||
const routerMapping = [
|
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" },
|
||||||
];
|
];
|
||||||
|
|
||||||
root.render(
|
root.render(
|
||||||
<BrowserRouter>
|
<AppProvider resourceOverrides={configuration} profileConfig={profileConfiguration}>
|
||||||
<AuthProvider authBaseUrl={AUTH_BASE}>
|
<BrowserRouter>
|
||||||
<AppTheme>
|
<AuthProvider authBaseUrl={AUTH_BASE}>
|
||||||
<CssBaseline enableColorScheme />
|
<AppTheme>
|
||||||
<Header routerMapping={routerMapping} />
|
<CssBaseline enableColorScheme />
|
||||||
|
<Header routerMapping={routerMapping} />
|
||||||
|
|
||||||
<Box sx={{ pb: 8 }}>
|
<Box sx={{ pb: 8 }}>
|
||||||
<Toolbar />
|
<Toolbar />
|
||||||
|
|
||||||
<Routes>
|
<Routes>
|
||||||
{routerMapping.map(({ path, component: Component }) => (
|
{routerMapping.map(({ path, component: Component }) => (
|
||||||
<Route
|
<Route
|
||||||
key={path}
|
key={path}
|
||||||
path={path}
|
path={path}
|
||||||
element={
|
element={
|
||||||
path.startsWith("/admin") ? (
|
path.startsWith("/admin") ? (
|
||||||
<Component basePath="/admin" resourceOverrides={configuration} profileConfig={profileConfiguration} />
|
<Component basePath="/admin" />
|
||||||
) : (
|
) : (
|
||||||
<Component />
|
<Component />
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</Routes>
|
</Routes>
|
||||||
|
</Box>
|
||||||
|
|
||||||
</Box>
|
<Footer />
|
||||||
|
</AppTheme>
|
||||||
<Footer />
|
</AuthProvider>
|
||||||
</AppTheme>
|
</BrowserRouter>
|
||||||
</AuthProvider>
|
</AppProvider>
|
||||||
</BrowserRouter>
|
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ export const configuration: Record<string, ResourceOverride> = {
|
|||||||
},
|
},
|
||||||
pagination: true,
|
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)',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
export interface ChartDataPoint {
|
|
||||||
id: string;
|
|
||||||
amount: number;
|
|
||||||
compareAmount?: number;
|
|
||||||
compareLabel?: string;
|
|
||||||
highlighted?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ChartSeries {
|
|
||||||
rolling: ChartDataPoint[];
|
|
||||||
calendar: ChartDataPoint[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ChartData {
|
|
||||||
daily: ChartDataPoint[];
|
|
||||||
weekly: ChartSeries;
|
|
||||||
monthly: ChartSeries;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AggregatedDashboardData {
|
|
||||||
chartData: ChartData;
|
|
||||||
totalAmount: number;
|
|
||||||
topPayees: Array<{ payeeName: string; amount: number }>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface HistoryChartProps {
|
|
||||||
header: string;
|
|
||||||
summary?: string;
|
|
||||||
tabs: string[];
|
|
||||||
data: ChartData;
|
|
||||||
period: "rolling" | "calendar";
|
|
||||||
onPeriodChange: (mode: "rolling" | "calendar") => void;
|
|
||||||
comparison: boolean;
|
|
||||||
setComparison: (mode: boolean) => void;
|
|
||||||
}
|
|
||||||
@@ -1,192 +0,0 @@
|
|||||||
import { api } from "../../react-openapi";
|
|
||||||
import { LatestItem } from "../components/LatestItemsList";
|
|
||||||
import { ChartDataPoint } from "../types/historyChart";
|
|
||||||
import * as React from "react";
|
|
||||||
import { format } from "./dateUtils";
|
|
||||||
import MonetizationOnIcon from "@mui/icons-material/MonetizationOn";
|
|
||||||
|
|
||||||
import {
|
|
||||||
buildDailyBuckets,
|
|
||||||
buildWeeklyRolling,
|
|
||||||
buildWeeklyCalendar,
|
|
||||||
buildMonthlyRolling,
|
|
||||||
buildMonthlyCalendar
|
|
||||||
} from "./periodBuilders";
|
|
||||||
|
|
||||||
const DEFAULT_ICON = React.createElement(MonetizationOnIcon, {
|
|
||||||
sx: { color: "#388e3c" }
|
|
||||||
});
|
|
||||||
|
|
||||||
export async function fetchLatestTransactions(
|
|
||||||
type: "expense" | "income"
|
|
||||||
): Promise<LatestItem[]> {
|
|
||||||
const res = await api.get("/expenses", {
|
|
||||||
params: { limit: 100, sort: "-occurred_at" }
|
|
||||||
});
|
|
||||||
|
|
||||||
const items = res.data?.items || res.data || [];
|
|
||||||
|
|
||||||
const isValid = (amt: number) =>
|
|
||||||
type === "expense" ? amt < 0 : amt > 0;
|
|
||||||
|
|
||||||
return items
|
|
||||||
.filter((item: any) => isValid(Number(item.amount) || 0))
|
|
||||||
.slice(0, 5)
|
|
||||||
.map((exp: any, index: number) => {
|
|
||||||
const time = new Date(
|
|
||||||
exp.occurred_at || exp.created_at || Date.now()
|
|
||||||
).getTime();
|
|
||||||
|
|
||||||
const diffDays = Math.floor(
|
|
||||||
Math.abs(Date.now() - time) / (1000 * 60 * 60 * 24)
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
id: exp.id || index,
|
|
||||||
icon: DEFAULT_ICON,
|
|
||||||
iconBgColor:
|
|
||||||
type === "expense" ? "#ffebee" : "#e8f5e9",
|
|
||||||
title: exp.payee?.name || exp.payee || "Unknown Payee",
|
|
||||||
subtitle:
|
|
||||||
exp.category?.name || exp.account?.name || "Transaction",
|
|
||||||
amount: `Rs ${Math.abs(exp.amount || 0)}`,
|
|
||||||
timeAgo: diffDays === 0 ? "Today" : `${diffDays} days ago`
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function fetchAggregatedData(
|
|
||||||
type: "expense" | "income"
|
|
||||||
) {
|
|
||||||
const res = await api.get("/expenses", { params: { limit: 0 } });
|
|
||||||
const all: any[] = res.data?.items || res.data || [];
|
|
||||||
|
|
||||||
const now = new Date();
|
|
||||||
|
|
||||||
let totalAmount = 0;
|
|
||||||
const payeeMap: Record<string, number> = {};
|
|
||||||
|
|
||||||
const isValid = (amt: number) =>
|
|
||||||
type === "expense" ? amt < 0 : amt > 0;
|
|
||||||
|
|
||||||
const normalize = (amt: number) => Math.abs(amt);
|
|
||||||
|
|
||||||
const {
|
|
||||||
buckets: dailyBuckets,
|
|
||||||
weekStart,
|
|
||||||
weekEnd,
|
|
||||||
prevWeekStart,
|
|
||||||
prevWeekEnd
|
|
||||||
} = buildDailyBuckets(now);
|
|
||||||
|
|
||||||
const weeklyRolling = buildWeeklyRolling(now);
|
|
||||||
const weeklyCalendar = buildWeeklyCalendar(now);
|
|
||||||
const monthlyRolling = buildMonthlyRolling(now);
|
|
||||||
const monthlyCalendar = buildMonthlyCalendar(now);
|
|
||||||
|
|
||||||
for (const item of all) {
|
|
||||||
const d = new Date(
|
|
||||||
item.occurred_at || item.created_at || Date.now()
|
|
||||||
);
|
|
||||||
|
|
||||||
const amtRaw = Number(item.amount) || 0;
|
|
||||||
if (!isValid(amtRaw)) continue;
|
|
||||||
|
|
||||||
const amt = normalize(amtRaw);
|
|
||||||
totalAmount += amt;
|
|
||||||
|
|
||||||
const payee = item.payee?.name || item.payee || "Unknown";
|
|
||||||
payeeMap[payee] = (payeeMap[payee] || 0) + amt;
|
|
||||||
|
|
||||||
const day = ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"][d.getDay()];
|
|
||||||
|
|
||||||
if (d >= weekStart && d <= weekEnd) {
|
|
||||||
if (dailyBuckets[day]) {
|
|
||||||
dailyBuckets[day].amount += amt;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (d >= prevWeekStart && d <= prevWeekEnd) {
|
|
||||||
if (dailyBuckets[day]) {
|
|
||||||
dailyBuckets[day].compare += amt;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const apply = (arr: any[]) => {
|
|
||||||
for (const b of arr) {
|
|
||||||
if (d >= b.start && d <= b.end) b.amount += amt;
|
|
||||||
if (d >= b.prevStart && d <= b.prevEnd)
|
|
||||||
b.compare += amt;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
apply(weeklyRolling);
|
|
||||||
apply(weeklyCalendar);
|
|
||||||
apply(monthlyRolling);
|
|
||||||
apply(monthlyCalendar);
|
|
||||||
}
|
|
||||||
|
|
||||||
const toPoints = (arr: any[], type: "weekly" | "monthly"): ChartDataPoint[] =>
|
|
||||||
arr.map((x) => {
|
|
||||||
let compareLabel: string | undefined;
|
|
||||||
|
|
||||||
if (x.prevStart && x.prevEnd) {
|
|
||||||
if (type === "monthly") {
|
|
||||||
const year = String(x.prevStart.getFullYear()).slice(2);
|
|
||||||
compareLabel = `${x.prevStart.toLocaleString("default", {
|
|
||||||
month: "short"
|
|
||||||
})}-${year}`;
|
|
||||||
} else {
|
|
||||||
const year = String(x.prevEnd.getFullYear()).slice(2);
|
|
||||||
compareLabel = `${format(x.prevStart)} - ${format(x.prevEnd)} ${year}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
id: x.label,
|
|
||||||
amount: x.amount,
|
|
||||||
compareAmount: x.compare,
|
|
||||||
compareLabel
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
const chartData = {
|
|
||||||
daily: Object.entries(dailyBuckets).map(([k, v]: any) => ({
|
|
||||||
id: k,
|
|
||||||
amount: v.amount,
|
|
||||||
compareAmount: v.compare
|
|
||||||
})),
|
|
||||||
weekly: {
|
|
||||||
rolling: toPoints(weeklyRolling, "weekly"),
|
|
||||||
calendar: toPoints(weeklyCalendar, "weekly")
|
|
||||||
},
|
|
||||||
monthly: {
|
|
||||||
rolling: toPoints(monthlyRolling, "monthly"),
|
|
||||||
calendar: toPoints(monthlyCalendar, "monthly")
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Object.values(chartData).forEach((group: any) => {
|
|
||||||
const arr = Array.isArray(group) ? group : group.rolling;
|
|
||||||
if (!arr?.length) return;
|
|
||||||
|
|
||||||
let max = arr[0];
|
|
||||||
for (const g of arr) {
|
|
||||||
if (g.amount > max.amount) max = g;
|
|
||||||
}
|
|
||||||
if (max.amount > 0) max.highlighted = true;
|
|
||||||
});
|
|
||||||
|
|
||||||
const topPayees = Object.entries(payeeMap)
|
|
||||||
.map(([name, amt]) => ({ payeeName: name, amount: amt }))
|
|
||||||
.sort((a, b) => b.amount - a.amount)
|
|
||||||
.slice(0, 5);
|
|
||||||
|
|
||||||
return { chartData, totalAmount, topPayees };
|
|
||||||
}
|
|
||||||
|
|
||||||
export const fetchAggregatedExpenses = () =>
|
|
||||||
fetchAggregatedData("expense");
|
|
||||||
|
|
||||||
export const fetchAggregatedIncome = () =>
|
|
||||||
fetchAggregatedData("income");
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
export const format = (d: Date) =>
|
|
||||||
`${d.getDate()} ${d.toLocaleString("default", { month: "short" })}`;
|
|
||||||
|
|
||||||
export const startOfDay = (d: Date) => {
|
|
||||||
const x = new Date(d);
|
|
||||||
x.setHours(0, 0, 0, 0);
|
|
||||||
return x;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const endOfDay = (d: Date) => {
|
|
||||||
const x = new Date(d);
|
|
||||||
x.setHours(23, 59, 59, 999);
|
|
||||||
return x;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const getStartOfWeek = (d: Date) => {
|
|
||||||
const date = new Date(d);
|
|
||||||
const day = date.getDay() || 7;
|
|
||||||
if (day !== 1) date.setDate(date.getDate() - (day - 1));
|
|
||||||
return startOfDay(date);
|
|
||||||
};
|
|
||||||
|
|
||||||
export const shiftDate = (d: Date, days: number) =>
|
|
||||||
new Date(d.getTime() + days * 86400000);
|
|
||||||
|
|
||||||
export const getWeekIndex = (date: Date) => {
|
|
||||||
const firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
|
|
||||||
const firstWeekStart = getStartOfWeek(firstDay);
|
|
||||||
return Math.floor(
|
|
||||||
(startOfDay(date).getTime() - firstWeekStart.getTime()) /
|
|
||||||
(7 * 86400000)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -1,178 +0,0 @@
|
|||||||
import {
|
|
||||||
format,
|
|
||||||
endOfDay,
|
|
||||||
getStartOfWeek,
|
|
||||||
shiftDate,
|
|
||||||
getWeekIndex
|
|
||||||
} from "./dateUtils";
|
|
||||||
|
|
||||||
export const buildDailyBuckets = (now: Date) => {
|
|
||||||
const buckets: Record<string, any> = {
|
|
||||||
Mon: { amount: 0, compare: 0 },
|
|
||||||
Tue: { amount: 0, compare: 0 },
|
|
||||||
Wed: { amount: 0, compare: 0 },
|
|
||||||
Thu: { amount: 0, compare: 0 },
|
|
||||||
Fri: { amount: 0, compare: 0 },
|
|
||||||
Sat: { amount: 0, compare: 0 },
|
|
||||||
Sun: { amount: 0, compare: 0 }
|
|
||||||
};
|
|
||||||
|
|
||||||
const weekStart = getStartOfWeek(now);
|
|
||||||
const weekEnd = endOfDay(new Date(weekStart.getTime() + 6 * 86400000));
|
|
||||||
const prevWeekStart = shiftDate(weekStart, -7);
|
|
||||||
const prevWeekEnd = shiftDate(weekEnd, -7);
|
|
||||||
|
|
||||||
return { buckets, weekStart, weekEnd, prevWeekStart, prevWeekEnd };
|
|
||||||
};
|
|
||||||
|
|
||||||
const getPrevMonthWeek = (start: Date) => {
|
|
||||||
const prevMonthDate = new Date(start);
|
|
||||||
prevMonthDate.setMonth(prevMonthDate.getMonth() - 1);
|
|
||||||
|
|
||||||
const prevMonthFirst = new Date(
|
|
||||||
prevMonthDate.getFullYear(),
|
|
||||||
prevMonthDate.getMonth(),
|
|
||||||
1
|
|
||||||
);
|
|
||||||
|
|
||||||
const prevFirstWeekStart = getStartOfWeek(prevMonthFirst);
|
|
||||||
const weekIndex = getWeekIndex(start);
|
|
||||||
|
|
||||||
const prevStart = new Date(
|
|
||||||
prevFirstWeekStart.getTime() + weekIndex * 7 * 86400000
|
|
||||||
);
|
|
||||||
const prevEnd = endOfDay(new Date(prevStart.getTime() + 6 * 86400000));
|
|
||||||
|
|
||||||
return { prevStart, prevEnd };
|
|
||||||
};
|
|
||||||
|
|
||||||
export const buildWeeklyRolling = (now: Date) => {
|
|
||||||
const arr: any[] = [];
|
|
||||||
const currentWeekStart = getStartOfWeek(now);
|
|
||||||
|
|
||||||
for (let i = 4; i >= 0; i--) {
|
|
||||||
const start = new Date(
|
|
||||||
currentWeekStart.getTime() - i * 7 * 86400000
|
|
||||||
);
|
|
||||||
const end = endOfDay(new Date(start.getTime() + 6 * 86400000));
|
|
||||||
|
|
||||||
const { prevStart, prevEnd } = getPrevMonthWeek(start);
|
|
||||||
|
|
||||||
arr.push({
|
|
||||||
label: `${format(start)} - ${format(end)}`,
|
|
||||||
start,
|
|
||||||
end,
|
|
||||||
amount: 0,
|
|
||||||
compare: 0,
|
|
||||||
prevStart,
|
|
||||||
prevEnd
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return arr;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const buildWeeklyCalendar = (now: Date) => {
|
|
||||||
const arr: any[] = [];
|
|
||||||
|
|
||||||
const startOfMonth = new Date(now.getFullYear(), now.getMonth(), 1);
|
|
||||||
const endOfMonth = new Date(now.getFullYear(), now.getMonth() + 1, 0);
|
|
||||||
const firstWeekStart = getStartOfWeek(startOfMonth);
|
|
||||||
|
|
||||||
const totalWeeks =
|
|
||||||
Math.ceil(
|
|
||||||
(endOfMonth.getTime() - firstWeekStart.getTime()) /
|
|
||||||
(7 * 86400000)
|
|
||||||
) + 1;
|
|
||||||
|
|
||||||
for (let i = 0; i < totalWeeks; i++) {
|
|
||||||
const start = new Date(
|
|
||||||
firstWeekStart.getTime() + i * 7 * 86400000
|
|
||||||
);
|
|
||||||
const end = endOfDay(new Date(start.getTime() + 6 * 86400000));
|
|
||||||
|
|
||||||
const { prevStart, prevEnd } = getPrevMonthWeek(start);
|
|
||||||
|
|
||||||
arr.push({
|
|
||||||
label: `${format(start)} - ${format(end)}`,
|
|
||||||
start,
|
|
||||||
end,
|
|
||||||
amount: 0,
|
|
||||||
compare: 0,
|
|
||||||
prevStart,
|
|
||||||
prevEnd
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return arr;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const buildMonthlyRolling = (now: Date) => {
|
|
||||||
const arr: any[] = [];
|
|
||||||
|
|
||||||
for (let i = 11; i >= 0; i--) {
|
|
||||||
const d = new Date(now);
|
|
||||||
d.setMonth(d.getMonth() - i);
|
|
||||||
|
|
||||||
const start = new Date(d.getFullYear(), d.getMonth(), 1);
|
|
||||||
const end =
|
|
||||||
i === 0
|
|
||||||
? endOfDay(now)
|
|
||||||
: endOfDay(new Date(d.getFullYear(), d.getMonth() + 1, 0));
|
|
||||||
|
|
||||||
const prevStart = new Date(start);
|
|
||||||
prevStart.setFullYear(prevStart.getFullYear() - 1);
|
|
||||||
|
|
||||||
let prevEnd = new Date(end);
|
|
||||||
prevEnd.setFullYear(prevEnd.getFullYear() - 1);
|
|
||||||
|
|
||||||
if (i === 0) {
|
|
||||||
prevEnd = new Date(prevStart);
|
|
||||||
prevEnd.setDate(now.getDate());
|
|
||||||
prevEnd = endOfDay(prevEnd);
|
|
||||||
}
|
|
||||||
|
|
||||||
arr.push({
|
|
||||||
label: `${d.toLocaleString("default", {
|
|
||||||
month: "short"
|
|
||||||
})}-${String(d.getFullYear()).slice(2)}`,
|
|
||||||
start,
|
|
||||||
end,
|
|
||||||
amount: 0,
|
|
||||||
compare: 0,
|
|
||||||
prevStart,
|
|
||||||
prevEnd
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return arr;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const buildMonthlyCalendar = (now: Date) => {
|
|
||||||
const arr: any[] = [];
|
|
||||||
|
|
||||||
for (let i = 0; i < 12; i++) {
|
|
||||||
const start = new Date(now.getFullYear(), i, 1);
|
|
||||||
const end = endOfDay(new Date(now.getFullYear(), i + 1, 0));
|
|
||||||
|
|
||||||
const prevStart = new Date(start);
|
|
||||||
prevStart.setFullYear(prevStart.getFullYear() - 1);
|
|
||||||
|
|
||||||
const prevEnd = new Date(end);
|
|
||||||
prevEnd.setFullYear(prevEnd.getFullYear() - 1);
|
|
||||||
|
|
||||||
arr.push({
|
|
||||||
label: `${start.toLocaleString("default", {
|
|
||||||
month: "short"
|
|
||||||
})}-${String(start.getFullYear()).slice(2)}`,
|
|
||||||
start,
|
|
||||||
end,
|
|
||||||
amount: 0,
|
|
||||||
compare: 0,
|
|
||||||
prevStart,
|
|
||||||
prevEnd
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return arr;
|
|
||||||
};
|
|
||||||
Reference in New Issue
Block a user