Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8ec54c22d |
Binary file not shown.
Vendored
BIN
Binary file not shown.
@@ -4,7 +4,7 @@ android {
|
||||
namespace = "io.ionic.starter"
|
||||
compileSdk = rootProject.ext.compileSdkVersion
|
||||
defaultConfig {
|
||||
applicationId "io.ionic.starter"
|
||||
applicationId "io.shopkeep.app"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 1
|
||||
|
||||
@@ -21,6 +21,12 @@
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<data android:scheme="io.shopkeep.app" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="app_name">healthcare</string>
|
||||
<string name="title_activity_main">healthcare</string>
|
||||
<string name="app_name">ShopKeep</string>
|
||||
<string name="title_activity_main">ShopKeep</string>
|
||||
<string name="package_name">io.ionic.starter</string>
|
||||
<string name="custom_url_scheme">io.ionic.starter</string>
|
||||
</resources>
|
||||
|
||||
@@ -15,5 +15,4 @@ ext {
|
||||
cordovaAndroidVersion = '14.0.1'
|
||||
rgcfaIncludeGoogle = true
|
||||
androidxCredentialsVersion = '1.3.0'
|
||||
javaVersion = JavaVersion.VERSION_17
|
||||
}
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
import type { CapacitorConfig } from '@capacitor/cli';
|
||||
|
||||
const config: CapacitorConfig = {
|
||||
appId: 'com.healthcare.app',
|
||||
appName: 'healthcare',
|
||||
appId: 'io.shopkeep.app',
|
||||
appName: 'ShopKeep',
|
||||
webDir: 'dist',
|
||||
plugins: {
|
||||
FirebaseAuthentication: {
|
||||
|
||||
Vendored
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
@@ -308,7 +308,7 @@
|
||||
);
|
||||
MARKETING_VERSION = 1.0;
|
||||
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.healthcare.app;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = io.shopkeep.app;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
||||
SWIFT_VERSION = 5.0;
|
||||
@@ -330,7 +330,7 @@
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.healthcare.app;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = io.shopkeep.app;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
|
||||
SWIFT_VERSION = 5.0;
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>healthcare</string>
|
||||
<string>ShopKeep</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
@@ -51,10 +51,10 @@
|
||||
<array>
|
||||
<dict>
|
||||
<key>CFBundleURLName</key>
|
||||
<string>com.healthcare.app</string>
|
||||
<string>io.shopkeep.app</string>
|
||||
<key>CFBundleURLSchemes</key>
|
||||
<array>
|
||||
<string>com.healthcare.app</string>
|
||||
<string>io.shopkeep.app</string>
|
||||
</array>
|
||||
</dict>
|
||||
</array>
|
||||
|
||||
+4
-4
@@ -20,11 +20,11 @@
|
||||
"@capacitor/keyboard": "8.0.3",
|
||||
"@capacitor/push-notifications": "^8.1.1",
|
||||
"@capacitor/status-bar": "8.0.2",
|
||||
"@hookform/resolvers": "^3.9.0",
|
||||
"@ionic/pwa-elements": "^3.0.0",
|
||||
"@ionic/react": "^8.5.0",
|
||||
"@ionic/react-router": "^8.5.0",
|
||||
"@supabase/supabase-js": "^2.108.1",
|
||||
"date-fns": "^4.4.0",
|
||||
"@ionic/react": "8.8.7",
|
||||
"@ionic/react-router": "8.8.7",
|
||||
"@supabase/supabase-js": "^2.0.0",
|
||||
"firebase": "^11.0.0",
|
||||
"ionicons": "^7.4.0",
|
||||
"katex": "^0.16.0",
|
||||
|
||||
Vendored
BIN
Binary file not shown.
+110
-13
@@ -1,12 +1,40 @@
|
||||
import React from 'react';
|
||||
import React, { useEffect } from 'react';
|
||||
import { Redirect, Route } from 'react-router-dom';
|
||||
import { IonApp, IonRouterOutlet, setupIonicReact } from '@ionic/react';
|
||||
import {
|
||||
IonApp,
|
||||
IonRouterOutlet,
|
||||
IonTabs,
|
||||
IonTabBar,
|
||||
IonTabButton,
|
||||
IonIcon,
|
||||
IonLabel,
|
||||
setupIonicReact,
|
||||
} from '@ionic/react';
|
||||
import { IonReactRouter } from '@ionic/react-router';
|
||||
import {
|
||||
homeOutline,
|
||||
peopleOutline,
|
||||
receiptOutline,
|
||||
home,
|
||||
people,
|
||||
receipt,
|
||||
} from 'ionicons/icons';
|
||||
|
||||
import Home from './pages/Home';
|
||||
import Checkups from './pages/Checkups';
|
||||
import Diet from './pages/Diet';
|
||||
import Sleep from './pages/Sleep';
|
||||
import Insights from './pages/Insights';
|
||||
import CustomersPage from './pages/CustomersPage';
|
||||
import CustomerDetailPage from './pages/CustomerDetailPage';
|
||||
import HistoryPage from './pages/HistoryPage';
|
||||
import SaleFormPage from './pages/SaleFormPage';
|
||||
import CreditFormPage from './pages/CreditFormPage';
|
||||
import RepaymentFormPage from './pages/RepaymentFormPage';
|
||||
import AuthPage from './pages/AuthPage';
|
||||
import VerifyEmailPage from './pages/VerifyEmailPage';
|
||||
import ForgotPasswordPage from './pages/ForgotPasswordPage';
|
||||
import NewPasswordPage from './pages/NewPasswordPage';
|
||||
|
||||
import { AuthProvider } from './contexts/AuthContext';
|
||||
import ProtectedRoute from './components/ProtectedRoute';
|
||||
import { setStatusBarStyle, Style } from './utils/statusBar';
|
||||
|
||||
/* Core CSS required for Ionic components to work properly */
|
||||
import '@ionic/react/css/core.css';
|
||||
@@ -40,19 +68,88 @@ import './theme/variables.css';
|
||||
|
||||
setupIonicReact();
|
||||
|
||||
const App: React.FC = () => (
|
||||
const App: React.FC = () => {
|
||||
useEffect(() => {
|
||||
// Set status bar to light icons on our dark-ish backgrounds
|
||||
setStatusBarStyle(Style.Dark);
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<IonApp>
|
||||
<AuthProvider>
|
||||
<IonReactRouter>
|
||||
<IonRouterOutlet>
|
||||
<Route exact path="/home" component={Home} />
|
||||
<Route exact path="/checkups" component={Checkups} />
|
||||
<Route exact path="/diet" component={Diet} />
|
||||
<Route exact path="/sleep" component={Sleep} />
|
||||
<Route exact path="/insights" component={Insights} />
|
||||
{/* Auth Routes */}
|
||||
<Route path="/auth" component={AuthPage} exact />
|
||||
<Route path="/verify-email" component={VerifyEmailPage} exact />
|
||||
<Route
|
||||
path="/forgot-password"
|
||||
component={ForgotPasswordPage}
|
||||
exact
|
||||
/>
|
||||
<Route path="/new-password" component={NewPasswordPage} exact />
|
||||
|
||||
{/* Protected Form & Detail Routes (Outer Outlet for push/pop animation) */}
|
||||
<ProtectedRoute path="/sale/new" component={SaleFormPage} exact />
|
||||
<ProtectedRoute
|
||||
path="/credit/new"
|
||||
component={CreditFormPage}
|
||||
exact
|
||||
/>
|
||||
<ProtectedRoute
|
||||
path="/repayment/new"
|
||||
component={RepaymentFormPage}
|
||||
exact
|
||||
/>
|
||||
<ProtectedRoute
|
||||
path="/customers/:id([0-9a-fA-F-]{36})"
|
||||
component={CustomerDetailPage}
|
||||
exact
|
||||
/>
|
||||
|
||||
{/* Tab Shell */}
|
||||
<Route
|
||||
path={['/home', '/customers', '/history']}
|
||||
render={() => (
|
||||
<IonTabs>
|
||||
<IonRouterOutlet>
|
||||
<ProtectedRoute path="/home" component={Home} exact />
|
||||
<ProtectedRoute
|
||||
path="/customers"
|
||||
component={CustomersPage}
|
||||
exact
|
||||
/>
|
||||
<ProtectedRoute
|
||||
path="/history"
|
||||
component={HistoryPage}
|
||||
exact
|
||||
/>
|
||||
</IonRouterOutlet>
|
||||
<IonTabBar slot="bottom">
|
||||
<IonTabButton tab="home" href="/home">
|
||||
<IonIcon icon={homeOutline} />
|
||||
<IonLabel>Home</IonLabel>
|
||||
</IonTabButton>
|
||||
<IonTabButton tab="customers" href="/customers">
|
||||
<IonIcon icon={peopleOutline} />
|
||||
<IonLabel>Customers</IonLabel>
|
||||
</IonTabButton>
|
||||
<IonTabButton tab="history" href="/history">
|
||||
<IonIcon icon={receiptOutline} />
|
||||
<IonLabel>History</IonLabel>
|
||||
</IonTabButton>
|
||||
</IonTabBar>
|
||||
</IonTabs>
|
||||
)}
|
||||
/>
|
||||
|
||||
{/* Root Redirect */}
|
||||
<Route exact path="/" render={() => <Redirect to="/home" />} />
|
||||
</IonRouterOutlet>
|
||||
</IonReactRouter>
|
||||
</AuthProvider>
|
||||
</IonApp>
|
||||
);
|
||||
);
|
||||
};
|
||||
|
||||
export default App;
|
||||
|
||||
@@ -0,0 +1,130 @@
|
||||
import React from 'react';
|
||||
import { IonIcon, IonItem, IonLabel, IonNote } from '@ionic/react';
|
||||
import {
|
||||
receiptOutline,
|
||||
personAddOutline,
|
||||
cashOutline,
|
||||
chevronForwardOutline,
|
||||
} from 'ionicons/icons';
|
||||
import { formatMoney } from '../utils/money';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { formatDisplayDate } from '../utils/dates';
|
||||
|
||||
export type ActivityType = 'sale' | 'credit' | 'repayment';
|
||||
|
||||
export interface ActivityItem {
|
||||
id: string;
|
||||
type: ActivityType;
|
||||
amount: number;
|
||||
date: string;
|
||||
customerName?: string;
|
||||
note?: string;
|
||||
customerId?: string;
|
||||
}
|
||||
|
||||
interface ActivityRowProps {
|
||||
item: ActivityItem;
|
||||
onClick?: () => void;
|
||||
showDate?: boolean;
|
||||
}
|
||||
|
||||
const ActivityRow: React.FC<ActivityRowProps> = ({
|
||||
item,
|
||||
onClick,
|
||||
showDate = false,
|
||||
}) => {
|
||||
const { profile } = useAuth();
|
||||
const currency = profile?.currency || 'USD';
|
||||
|
||||
const getIcon = () => {
|
||||
switch (item.type) {
|
||||
case 'sale':
|
||||
return receiptOutline;
|
||||
case 'credit':
|
||||
return personAddOutline;
|
||||
case 'repayment':
|
||||
return cashOutline;
|
||||
}
|
||||
};
|
||||
|
||||
const getTitle = () => {
|
||||
switch (item.type) {
|
||||
case 'sale':
|
||||
return 'Cash Sale';
|
||||
case 'credit':
|
||||
return `Credit: ${item.customerName || 'Customer'}`;
|
||||
case 'repayment':
|
||||
return `Repayment: ${item.customerName || 'Customer'}`;
|
||||
}
|
||||
};
|
||||
|
||||
const getAmountColor = () => {
|
||||
switch (item.type) {
|
||||
case 'sale':
|
||||
return 'var(--color-text-primary)';
|
||||
case 'credit':
|
||||
return 'var(--ion-color-primary)';
|
||||
case 'repayment':
|
||||
return 'var(--ion-color-success)';
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonItem
|
||||
lines="none"
|
||||
onClick={onClick}
|
||||
detail={false}
|
||||
style={{
|
||||
'--background': 'transparent',
|
||||
'--padding-start': '0',
|
||||
'--padding-end': '0',
|
||||
'--inner-padding-end': '0',
|
||||
cursor: onClick ? 'pointer' : 'default',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className="icon-container"
|
||||
slot="start"
|
||||
style={{ marginRight: '12px' }}
|
||||
>
|
||||
<IonIcon icon={getIcon()} />
|
||||
</div>
|
||||
<IonLabel>
|
||||
<h3 className="semibold" style={{ margin: '0', fontSize: '15px' }}>
|
||||
{getTitle()}
|
||||
</h3>
|
||||
<p className="secondary-text" style={{ margin: '2px 0 0 0' }}>
|
||||
{showDate ? formatDisplayDate(item.date) : item.note || 'No notes'}
|
||||
</p>
|
||||
</IonLabel>
|
||||
<div
|
||||
slot="end"
|
||||
style={{ textAlign: 'right', display: 'flex', alignItems: 'center' }}
|
||||
>
|
||||
<IonNote
|
||||
className="tabular"
|
||||
style={{
|
||||
fontSize: '15px',
|
||||
color: getAmountColor(),
|
||||
fontWeight: '400',
|
||||
}}
|
||||
>
|
||||
{item.type === 'credit' ? '-' : '+'}
|
||||
{formatMoney(item.amount, currency)}
|
||||
</IonNote>
|
||||
{onClick && (
|
||||
<IonIcon
|
||||
icon={chevronForwardOutline}
|
||||
style={{
|
||||
fontSize: '14px',
|
||||
marginLeft: '8px',
|
||||
color: 'var(--color-text-tertiary)',
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
</IonItem>
|
||||
);
|
||||
};
|
||||
|
||||
export default ActivityRow;
|
||||
@@ -0,0 +1,115 @@
|
||||
import React from 'react';
|
||||
import { IonIcon, IonItem, IonLabel, IonNote } from '@ionic/react';
|
||||
import { chevronForwardOutline } from 'ionicons/icons';
|
||||
import { formatMoney } from '../utils/money';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
|
||||
interface CustomerRowProps {
|
||||
id: string;
|
||||
name: string;
|
||||
balance: number;
|
||||
phone?: string;
|
||||
onClick: () => void;
|
||||
}
|
||||
|
||||
const CustomerRow: React.FC<CustomerRowProps> = ({
|
||||
id,
|
||||
name,
|
||||
balance,
|
||||
phone,
|
||||
onClick,
|
||||
}) => {
|
||||
const { profile } = useAuth();
|
||||
const currency = profile?.currency || 'USD';
|
||||
|
||||
const getInitials = (name: string) => {
|
||||
return name
|
||||
.split(' ')
|
||||
.map((n) => n[0])
|
||||
.join('')
|
||||
.toUpperCase()
|
||||
.slice(0, 2);
|
||||
};
|
||||
|
||||
return (
|
||||
<IonItem
|
||||
lines="none"
|
||||
onClick={onClick}
|
||||
detail={false}
|
||||
style={{
|
||||
'--background': 'transparent',
|
||||
'--padding-start': '0',
|
||||
'--padding-end': '0',
|
||||
'--inner-padding-end': '0',
|
||||
cursor: 'pointer',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className="icon-container bold"
|
||||
slot="start"
|
||||
style={{
|
||||
marginRight: '16px',
|
||||
width: '44px',
|
||||
height: '44px',
|
||||
fontSize: '14px',
|
||||
color: 'var(--ion-color-primary)',
|
||||
}}
|
||||
>
|
||||
{getInitials(name)}
|
||||
</div>
|
||||
<IonLabel>
|
||||
<h3 className="semibold" style={{ margin: '0', fontSize: '16px' }}>
|
||||
{name}
|
||||
</h3>
|
||||
{phone && (
|
||||
<p className="secondary-text" style={{ margin: '2px 0 0 0' }}>
|
||||
{phone}
|
||||
</p>
|
||||
)}
|
||||
</IonLabel>
|
||||
<div
|
||||
slot="end"
|
||||
style={{ textAlign: 'right', display: 'flex', alignItems: 'center' }}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'flex-end',
|
||||
}}
|
||||
>
|
||||
<IonNote
|
||||
className="tabular"
|
||||
style={{
|
||||
fontSize: '16px',
|
||||
color:
|
||||
balance > 0
|
||||
? 'var(--ion-color-danger)'
|
||||
: 'var(--ion-color-success)',
|
||||
fontWeight: '400',
|
||||
}}
|
||||
>
|
||||
{formatMoney(balance, currency)}
|
||||
</IonNote>
|
||||
<span
|
||||
className="tertiary-text"
|
||||
style={{ fontSize: '10px', marginTop: '2px' }}
|
||||
>
|
||||
{balance > 0 ? 'OUTSTANDING' : 'CLEARED'}
|
||||
</span>
|
||||
</div>
|
||||
<IonIcon
|
||||
icon={chevronForwardOutline}
|
||||
style={{
|
||||
fontSize: '16px',
|
||||
marginLeft: '12px',
|
||||
color: 'var(--color-text-tertiary)',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</IonItem>
|
||||
);
|
||||
};
|
||||
|
||||
export default CustomerRow;
|
||||
@@ -0,0 +1,79 @@
|
||||
import React from 'react';
|
||||
import { IonIcon, IonButton } from '@ionic/react';
|
||||
|
||||
interface EmptyStateProps {
|
||||
icon: string;
|
||||
title: string;
|
||||
description?: string;
|
||||
actionText?: string;
|
||||
onAction?: () => void;
|
||||
}
|
||||
|
||||
const EmptyState: React.FC<EmptyStateProps> = ({
|
||||
icon,
|
||||
title,
|
||||
description,
|
||||
actionText,
|
||||
onAction,
|
||||
}) => {
|
||||
return (
|
||||
<div
|
||||
className="widget-card"
|
||||
style={{
|
||||
padding: '40px 20px',
|
||||
alignItems: 'center',
|
||||
textAlign: 'center',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className="icon-container"
|
||||
style={{
|
||||
width: '64px',
|
||||
height: '64px',
|
||||
borderRadius: '20px',
|
||||
marginBottom: '20px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
color: 'var(--color-text-tertiary)',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={icon} style={{ fontSize: '32px' }} />
|
||||
</div>
|
||||
<h3
|
||||
style={{
|
||||
margin: '0 0 8px 0',
|
||||
fontSize: '18px',
|
||||
fontWeight: '700',
|
||||
color: 'var(--color-text-primary)',
|
||||
}}
|
||||
>
|
||||
{title}
|
||||
</h3>
|
||||
{description && (
|
||||
<p
|
||||
className="secondary-text"
|
||||
style={{ margin: '0 0 24px 0', maxWidth: '240px' }}
|
||||
>
|
||||
{description}
|
||||
</p>
|
||||
)}
|
||||
{actionText && onAction && (
|
||||
<IonButton
|
||||
onClick={onAction}
|
||||
shape="round"
|
||||
fill="solid"
|
||||
style={{
|
||||
height: '44px',
|
||||
'--border-radius': '999px',
|
||||
fontSize: '14px',
|
||||
fontWeight: '700',
|
||||
}}
|
||||
>
|
||||
{actionText}
|
||||
</IonButton>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default EmptyState;
|
||||
@@ -0,0 +1,99 @@
|
||||
import React from 'react';
|
||||
import { IonIcon } from '@ionic/react';
|
||||
import { formatMoney } from '../utils/money';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
|
||||
interface MetricCardProps {
|
||||
label: string;
|
||||
value: number;
|
||||
icon?: string;
|
||||
subtitle?: string;
|
||||
fullWidth?: boolean;
|
||||
loading?: boolean;
|
||||
}
|
||||
|
||||
const MetricCard: React.FC<MetricCardProps> = ({
|
||||
label,
|
||||
value,
|
||||
icon,
|
||||
subtitle,
|
||||
fullWidth = false,
|
||||
loading = false,
|
||||
}) => {
|
||||
const { profile } = useAuth();
|
||||
const currency = profile?.currency || 'USD';
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<div
|
||||
className="widget-card"
|
||||
style={{
|
||||
width: fullWidth ? '100%' : 'auto',
|
||||
minHeight: fullWidth ? '160px' : '100px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className="skeleton-text"
|
||||
style={{
|
||||
width: '40%',
|
||||
height: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
marginBottom: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
className="skeleton-text"
|
||||
style={{
|
||||
width: '70%',
|
||||
height: '32px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '8px',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div
|
||||
className="widget-card"
|
||||
style={{
|
||||
width: fullWidth ? '100%' : 'auto',
|
||||
minHeight: fullWidth ? '160px' : '100px',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'flex-start',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<span className="tertiary-text">{label}</span>
|
||||
<div
|
||||
className="tabular"
|
||||
style={{
|
||||
fontSize: fullWidth ? '34px' : '24px',
|
||||
fontWeight: '400',
|
||||
color: 'var(--color-text-primary)',
|
||||
marginTop: '4px',
|
||||
}}
|
||||
>
|
||||
{formatMoney(value, currency)}
|
||||
</div>
|
||||
{subtitle && <div className="secondary-text">{subtitle}</div>}
|
||||
</div>
|
||||
{icon && (
|
||||
<div className="icon-container">
|
||||
<IonIcon icon={icon} />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetricCard;
|
||||
@@ -0,0 +1,88 @@
|
||||
import React from 'react';
|
||||
import { IonInput, IonLabel } from '@ionic/react';
|
||||
import { sanitizeMoneyInput, getCurrencySymbol } from '../utils/money';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
|
||||
interface MoneyInputProps {
|
||||
value: string;
|
||||
onValueChange: (value: string) => void;
|
||||
label?: string;
|
||||
placeholder?: string;
|
||||
error?: string;
|
||||
}
|
||||
|
||||
const MoneyInput: React.FC<MoneyInputProps> = ({
|
||||
value,
|
||||
onValueChange,
|
||||
label,
|
||||
placeholder = '0.00',
|
||||
error,
|
||||
}) => {
|
||||
const { profile } = useAuth();
|
||||
const symbol = getCurrencySymbol(profile?.currency || 'USD');
|
||||
|
||||
const handleChange = (e: CustomEvent) => {
|
||||
const rawValue = e.detail.value || '';
|
||||
const sanitized = sanitizeMoneyInput(rawValue);
|
||||
onValueChange(sanitized);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="money-input-container">
|
||||
{label && (
|
||||
<IonLabel
|
||||
position="stacked"
|
||||
className="semibold"
|
||||
style={{ marginBottom: '8px', display: 'block', fontSize: '13px' }}
|
||||
>
|
||||
{label}
|
||||
</IonLabel>
|
||||
)}
|
||||
<div
|
||||
className="input-wrapper"
|
||||
style={{
|
||||
border: error ? '1px solid var(--ion-color-danger)' : 'none',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
className="bold"
|
||||
style={{
|
||||
marginRight: '8px',
|
||||
color: 'var(--color-text-primary)',
|
||||
fontSize: '18px',
|
||||
}}
|
||||
>
|
||||
{symbol}
|
||||
</span>
|
||||
<IonInput
|
||||
type="text"
|
||||
inputMode="decimal"
|
||||
value={value}
|
||||
placeholder={placeholder}
|
||||
onIonChange={handleChange}
|
||||
style={{
|
||||
fontSize: '20px',
|
||||
fontWeight: '700',
|
||||
'--padding-top': '0',
|
||||
'--padding-bottom': '0',
|
||||
}}
|
||||
className="tabular"
|
||||
/>
|
||||
</div>
|
||||
{error && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
marginTop: '4px',
|
||||
display: 'block',
|
||||
}}
|
||||
>
|
||||
{error}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MoneyInput;
|
||||
@@ -0,0 +1,27 @@
|
||||
import React from 'react';
|
||||
import { Route, Redirect, RouteProps } from 'react-router-dom';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
|
||||
interface ProtectedRouteProps extends RouteProps {
|
||||
component: React.ComponentType<any>;
|
||||
}
|
||||
|
||||
const ProtectedRoute: React.FC<ProtectedRouteProps> = ({
|
||||
component: Component,
|
||||
...rest
|
||||
}) => {
|
||||
const { user, loading } = useAuth();
|
||||
|
||||
return (
|
||||
<Route
|
||||
{...rest}
|
||||
render={(props) => {
|
||||
if (loading) return null; // AuthProvider already handles spinner, but double safety
|
||||
|
||||
return user ? <Component {...props} /> : <Redirect to="/auth" />;
|
||||
}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default ProtectedRoute;
|
||||
@@ -1,141 +0,0 @@
|
||||
import React from 'react';
|
||||
import { Department } from '../../types/cohortHealth';
|
||||
import {
|
||||
IonLabel,
|
||||
IonSegment,
|
||||
IonSegmentButton,
|
||||
IonBadge,
|
||||
IonIcon,
|
||||
} from '@ionic/react';
|
||||
import { shieldCheckmarkOutline, peopleOutline } from 'ionicons/icons';
|
||||
|
||||
interface DepartmentSelectorProps {
|
||||
currentDepartment: Department;
|
||||
onDepartmentChange: (dept: Department) => void;
|
||||
cohortSizes: Record<Department, number>;
|
||||
}
|
||||
|
||||
export const DepartmentSelector: React.FC<DepartmentSelectorProps> = ({
|
||||
currentDepartment,
|
||||
onDepartmentChange,
|
||||
cohortSizes,
|
||||
}) => {
|
||||
const departments: { id: Department; label: string; minRequired: number }[] =
|
||||
[
|
||||
{ id: 'Engineering', label: 'Engineering', minRequired: 5 },
|
||||
{ id: 'Sales', label: 'Sales', minRequired: 5 },
|
||||
{ id: 'Operations', label: 'Operations', minRequired: 5 },
|
||||
{ id: 'Executive Board', label: 'Exec Board', minRequired: 5 },
|
||||
];
|
||||
|
||||
return (
|
||||
<div style={{ margin: '12px 0 20px 0' }}>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.85rem',
|
||||
fontWeight: 700,
|
||||
color: 'var(--ion-color-dark)',
|
||||
textTransform: 'uppercase',
|
||||
letterSpacing: '0.05em',
|
||||
}}
|
||||
>
|
||||
Select Workforce Cohort
|
||||
</span>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
color: 'var(--ion-color-success)',
|
||||
fontSize: '0.8rem',
|
||||
fontWeight: 600,
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={shieldCheckmarkOutline} />
|
||||
<span>k-Anonymity Protected</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
gap: '8px',
|
||||
overflowX: 'auto',
|
||||
paddingBottom: '4px',
|
||||
}}
|
||||
>
|
||||
{departments.map((dept) => {
|
||||
const count = cohortSizes[dept.id] || 0;
|
||||
const isSelected = currentDepartment === dept.id;
|
||||
const isViolating = count > 0 && count < dept.minRequired;
|
||||
|
||||
return (
|
||||
<button
|
||||
key={dept.id}
|
||||
onClick={() => onDepartmentChange(dept.id)}
|
||||
style={{
|
||||
flex: '1 0 auto',
|
||||
padding: '10px 16px',
|
||||
borderRadius: '10px',
|
||||
border: isSelected
|
||||
? '2px solid var(--ion-color-primary)'
|
||||
: '1px solid var(--ion-color-light-shade)',
|
||||
backgroundColor: isSelected
|
||||
? 'rgba(56, 128, 255, 0.06)'
|
||||
: 'var(--ion-color-light)',
|
||||
color: isSelected
|
||||
? 'var(--ion-color-primary-shade)'
|
||||
: 'var(--ion-color-dark)',
|
||||
cursor: 'pointer',
|
||||
transition: 'all 0.15s ease',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
outline: 'none',
|
||||
}}
|
||||
>
|
||||
<span style={{ fontSize: '0.9rem', fontWeight: 700 }}>
|
||||
{dept.label}
|
||||
</span>
|
||||
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
fontSize: '0.75rem',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={peopleOutline} style={{ opacity: 0.7 }} />
|
||||
<span>N = {count}</span>
|
||||
{isViolating && (
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.65rem',
|
||||
color: 'var(--ion-color-danger)',
|
||||
backgroundColor: 'rgba(235, 68, 90, 0.1)',
|
||||
padding: '1px 5px',
|
||||
borderRadius: '4px',
|
||||
fontWeight: 700,
|
||||
}}
|
||||
>
|
||||
Blocked
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</button>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -1,132 +0,0 @@
|
||||
import React from 'react';
|
||||
import {
|
||||
IonCard,
|
||||
IonCardContent,
|
||||
IonText,
|
||||
IonIcon,
|
||||
IonRow,
|
||||
IonCol,
|
||||
} from '@ionic/react';
|
||||
import {
|
||||
moonOutline,
|
||||
flashOutline,
|
||||
fitnessOutline,
|
||||
alertCircleOutline,
|
||||
} from 'ionicons/icons';
|
||||
|
||||
interface MetricCardProps {
|
||||
title: string;
|
||||
value: string | number;
|
||||
subtext: string;
|
||||
type: 'sleep' | 'stress' | 'activity';
|
||||
}
|
||||
|
||||
export const MetricSummaryCard: React.FC<MetricCardProps> = ({
|
||||
title,
|
||||
value,
|
||||
subtext,
|
||||
type,
|
||||
}) => {
|
||||
const getCardTheme = () => {
|
||||
switch (type) {
|
||||
case 'sleep':
|
||||
return {
|
||||
icon: moonOutline,
|
||||
color: 'var(--ion-color-tertiary)',
|
||||
bg: 'rgba(82, 96, 255, 0.08)',
|
||||
label: 'Sleep Quality',
|
||||
};
|
||||
case 'stress':
|
||||
return {
|
||||
icon: flashOutline,
|
||||
color: 'var(--ion-color-danger)',
|
||||
bg: 'rgba(235, 68, 90, 0.08)',
|
||||
label: 'Stress Index',
|
||||
};
|
||||
case 'activity':
|
||||
return {
|
||||
icon: fitnessOutline,
|
||||
color: 'var(--ion-color-success)',
|
||||
bg: 'rgba(45, 211, 111, 0.08)',
|
||||
label: 'Active Minutes',
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
const theme = getCardTheme();
|
||||
|
||||
return (
|
||||
<IonCard
|
||||
className="ion-no-margin"
|
||||
style={{
|
||||
height: '100%',
|
||||
boxShadow: '0 4px 16px rgba(0,0,0,0.04)',
|
||||
borderRadius: '12px',
|
||||
border: '1px solid var(--ion-color-light-shade)',
|
||||
}}
|
||||
>
|
||||
<IonCardContent style={{ padding: '16px' }}>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'space-between',
|
||||
marginBottom: '12px',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.85rem',
|
||||
fontWeight: 600,
|
||||
color: 'var(--ion-color-medium)',
|
||||
textTransform: 'uppercase',
|
||||
letterSpacing: '0.05em',
|
||||
}}
|
||||
>
|
||||
{title}
|
||||
</span>
|
||||
<div
|
||||
style={{
|
||||
backgroundColor: theme.bg,
|
||||
color: theme.color,
|
||||
borderRadius: '50%',
|
||||
padding: '8px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={theme.icon} style={{ fontSize: '20px' }} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style={{ marginBottom: '6px' }}>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '2rem',
|
||||
fontWeight: 700,
|
||||
color: 'var(--ion-color-dark)',
|
||||
}}
|
||||
>
|
||||
{value}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.8rem',
|
||||
color: 'var(--ion-color-medium)',
|
||||
fontWeight: 500,
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
}}
|
||||
>
|
||||
{subtext}
|
||||
</span>
|
||||
</div>
|
||||
</IonCardContent>
|
||||
</IonCard>
|
||||
);
|
||||
};
|
||||
@@ -1,435 +0,0 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonCard,
|
||||
IonCardHeader,
|
||||
IonCardSubtitle,
|
||||
IonCardTitle,
|
||||
IonCardContent,
|
||||
IonText,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
} from '@ionic/react';
|
||||
import { AggregatedTrendPoint } from '../../types/cohortHealth';
|
||||
import { moonOutline, flashOutline, eyeOutline } from 'ionicons/icons';
|
||||
|
||||
interface TrendChartCardProps {
|
||||
trends: AggregatedTrendPoint[];
|
||||
}
|
||||
|
||||
export const TrendChartCard: React.FC<TrendChartCardProps> = ({ trends }) => {
|
||||
const [hoveredPoint, setHoveredPoint] = useState<number | null>(null);
|
||||
|
||||
if (!trends || trends.length === 0) {
|
||||
return (
|
||||
<IonCard style={{ borderRadius: '12px' }}>
|
||||
<IonCardContent className="ion-text-center ion-padding">
|
||||
No trend data to display.
|
||||
</IonCardContent>
|
||||
</IonCard>
|
||||
);
|
||||
}
|
||||
|
||||
// Chart configuration
|
||||
const width = 600;
|
||||
const height = 240;
|
||||
const paddingLeft = 40;
|
||||
const paddingRight = 40;
|
||||
const paddingTop = 20;
|
||||
const paddingBottom = 40;
|
||||
|
||||
const chartWidth = width - paddingLeft - paddingRight;
|
||||
const chartHeight = height - paddingTop - paddingBottom;
|
||||
|
||||
const maxPoints = trends.length;
|
||||
|
||||
// X coordinates helper
|
||||
const getX = (index: number) => {
|
||||
if (maxPoints <= 1) return paddingLeft + chartWidth / 2;
|
||||
return paddingLeft + (index / (maxPoints - 1)) * chartWidth;
|
||||
};
|
||||
|
||||
// Y coordinates helper for Sleep Score (0 - 100)
|
||||
const getYSleep = (score: number) => {
|
||||
// Normalizing between 40 and 100 to make the graph visually richer
|
||||
const minScore = 40;
|
||||
const maxScore = 100;
|
||||
const percentage = (score - minScore) / (maxScore - minScore);
|
||||
const clampedPct = Math.max(0, Math.min(1, percentage));
|
||||
return height - paddingBottom - clampedPct * chartHeight;
|
||||
};
|
||||
|
||||
// Y coordinates helper for Stress Index (1 - 10)
|
||||
const getYStress = (stress: number) => {
|
||||
// Normalizing between 1 and 10
|
||||
const minStress = 1;
|
||||
const maxStress = 10;
|
||||
const percentage = (stress - minStress) / (maxStress - minStress);
|
||||
const clampedPct = Math.max(0, Math.min(1, percentage));
|
||||
return height - paddingBottom - clampedPct * chartHeight;
|
||||
};
|
||||
|
||||
// Build SVG Paths
|
||||
let sleepPointsPath = '';
|
||||
let stressPointsPath = '';
|
||||
|
||||
trends.forEach((t, i) => {
|
||||
const x = getX(i);
|
||||
const ySleep = getYSleep(t.avgSleepScore);
|
||||
const yStress = getYStress(t.avgStressIndex);
|
||||
|
||||
if (i === 0) {
|
||||
sleepPointsPath = `M ${x} ${ySleep}`;
|
||||
stressPointsPath = `M ${x} ${yStress}`;
|
||||
} else {
|
||||
sleepPointsPath += ` L ${x} ${ySleep}`;
|
||||
stressPointsPath += ` L ${x} ${yStress}`;
|
||||
}
|
||||
});
|
||||
|
||||
const formatDate = (dateStr: string) => {
|
||||
const date = new Date(dateStr);
|
||||
return date.toLocaleDateString(undefined, {
|
||||
month: 'short',
|
||||
day: 'numeric',
|
||||
timeZone: 'UTC',
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<IonCard
|
||||
style={{
|
||||
boxShadow: '0 4px 16px rgba(0,0,0,0.04)',
|
||||
borderRadius: '12px',
|
||||
border: '1px solid var(--ion-color-light-shade)',
|
||||
overflow: 'visible',
|
||||
}}
|
||||
>
|
||||
<IonCardHeader style={{ padding: '16px 16px 4px 16px' }}>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<IonCardTitle
|
||||
style={{
|
||||
fontSize: '1.1rem',
|
||||
fontWeight: 700,
|
||||
color: 'var(--ion-color-dark)',
|
||||
}}
|
||||
>
|
||||
14-Day Cohort Biomarker Trends
|
||||
</IonCardTitle>
|
||||
<IonCardSubtitle
|
||||
style={{
|
||||
fontSize: '0.8rem',
|
||||
color: 'var(--ion-color-medium)',
|
||||
marginTop: '4px',
|
||||
}}
|
||||
>
|
||||
Tracking stress levels vs sleep restoration patterns
|
||||
</IonCardSubtitle>
|
||||
</div>
|
||||
|
||||
{/* Legend */}
|
||||
<div style={{ display: 'flex', gap: '16px', fontSize: '0.8rem' }}>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }}>
|
||||
<div
|
||||
style={{
|
||||
width: '12px',
|
||||
height: '3px',
|
||||
backgroundColor: 'var(--ion-color-tertiary)',
|
||||
borderRadius: '2px',
|
||||
}}
|
||||
/>
|
||||
<span style={{ color: 'var(--ion-color-dark)', fontWeight: 600 }}>
|
||||
Sleep Quality
|
||||
</span>
|
||||
</div>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }}>
|
||||
<div
|
||||
style={{
|
||||
width: '12px',
|
||||
height: '3px',
|
||||
backgroundColor: 'var(--ion-color-danger)',
|
||||
borderRadius: '2px',
|
||||
}}
|
||||
/>
|
||||
<span style={{ color: 'var(--ion-color-dark)', fontWeight: 600 }}>
|
||||
Stress Index
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</IonCardHeader>
|
||||
|
||||
<IonCardContent
|
||||
style={{ padding: '0px 12px 16px 12px', position: 'relative' }}
|
||||
>
|
||||
{/* SVG Drawing Canvas */}
|
||||
<div
|
||||
style={{
|
||||
width: '100%',
|
||||
overflowX: 'auto',
|
||||
WebkitOverflowScrolling: 'touch',
|
||||
}}
|
||||
>
|
||||
<svg
|
||||
viewBox={`0 0 ${width} ${height}`}
|
||||
style={{ width: '100%', minWidth: '500px', display: 'block' }}
|
||||
>
|
||||
{/* Gridlines (Horizontal) */}
|
||||
{[0, 0.25, 0.5, 0.75, 1].map((val, idx) => {
|
||||
const y = paddingTop + val * chartHeight;
|
||||
return (
|
||||
<g key={idx}>
|
||||
<line
|
||||
x1={paddingLeft}
|
||||
y1={y}
|
||||
x2={width - paddingRight}
|
||||
y2={y}
|
||||
stroke="var(--ion-color-light-shade)"
|
||||
strokeWidth="1"
|
||||
strokeDasharray="4 4"
|
||||
/>
|
||||
{/* Left Label: Sleep Score Scales */}
|
||||
<text
|
||||
x={paddingLeft - 8}
|
||||
y={y + 4}
|
||||
textAnchor="end"
|
||||
fill="var(--ion-color-medium)"
|
||||
fontSize="9px"
|
||||
fontWeight="500"
|
||||
>
|
||||
{Math.round(100 - val * 60)}
|
||||
</text>
|
||||
{/* Right Label: Stress Scales */}
|
||||
<text
|
||||
x={width - paddingRight + 8}
|
||||
y={y + 4}
|
||||
textAnchor="start"
|
||||
fill="var(--ion-color-medium)"
|
||||
fontSize="9px"
|
||||
fontWeight="500"
|
||||
>
|
||||
{(10 - val * 9).toFixed(1)}
|
||||
</text>
|
||||
</g>
|
||||
);
|
||||
})}
|
||||
|
||||
{/* Main Trend Lines */}
|
||||
<path
|
||||
d={sleepPointsPath}
|
||||
fill="none"
|
||||
stroke="var(--ion-color-tertiary)"
|
||||
strokeWidth="3.5"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
<path
|
||||
d={stressPointsPath}
|
||||
fill="none"
|
||||
stroke="var(--ion-color-danger)"
|
||||
strokeWidth="3.5"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
|
||||
{/* X Axis Labels (Filtered to show 4 ticks to prevent clutter) */}
|
||||
{trends.map((t, i) => {
|
||||
const x = getX(i);
|
||||
const isTick =
|
||||
i === 0 ||
|
||||
i === Math.floor(maxPoints / 3) ||
|
||||
i === Math.floor((maxPoints * 2) / 3) ||
|
||||
i === maxPoints - 1;
|
||||
if (!isTick) return null;
|
||||
|
||||
return (
|
||||
<text
|
||||
key={i}
|
||||
x={x}
|
||||
y={height - paddingBottom + 18}
|
||||
textAnchor="middle"
|
||||
fill="var(--ion-color-medium)"
|
||||
fontSize="10px"
|
||||
fontWeight="600"
|
||||
>
|
||||
{formatDate(t.date)}
|
||||
</text>
|
||||
);
|
||||
})}
|
||||
|
||||
{/* Hover Guides & Interactive Circles */}
|
||||
{trends.map((t, i) => {
|
||||
const x = getX(i);
|
||||
const ySleep = getYSleep(t.avgSleepScore);
|
||||
const yStress = getYStress(t.avgStressIndex);
|
||||
|
||||
return (
|
||||
<g key={i}>
|
||||
{/* Invisible broad hover bar */}
|
||||
<rect
|
||||
x={x - chartWidth / maxPoints / 2}
|
||||
y={paddingTop}
|
||||
width={chartWidth / maxPoints}
|
||||
height={chartHeight}
|
||||
fill="transparent"
|
||||
style={{ cursor: 'pointer' }}
|
||||
onMouseEnter={() => setHoveredPoint(i)}
|
||||
onMouseLeave={() => setHoveredPoint(null)}
|
||||
/>
|
||||
|
||||
{/* Active Point Hover Guide Line */}
|
||||
{hoveredPoint === i && (
|
||||
<>
|
||||
<line
|
||||
x1={x}
|
||||
y1={paddingTop}
|
||||
x2={x}
|
||||
y2={height - paddingBottom}
|
||||
stroke="var(--ion-color-medium)"
|
||||
strokeWidth="1.5"
|
||||
strokeDasharray="2 2"
|
||||
pointerEvents="none"
|
||||
/>
|
||||
{/* Sleep Dot */}
|
||||
<circle
|
||||
cx={x}
|
||||
cy={ySleep}
|
||||
r="6"
|
||||
fill="var(--ion-color-tertiary)"
|
||||
stroke="#ffffff"
|
||||
strokeWidth="2"
|
||||
pointerEvents="none"
|
||||
/>
|
||||
{/* Stress Dot */}
|
||||
<circle
|
||||
cx={x}
|
||||
cy={yStress}
|
||||
r="6"
|
||||
fill="var(--ion-color-danger)"
|
||||
stroke="#ffffff"
|
||||
strokeWidth="2"
|
||||
pointerEvents="none"
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
</g>
|
||||
);
|
||||
})}
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
{/* Dynamic Hover Tooltip Banner */}
|
||||
<div
|
||||
style={{
|
||||
marginTop: '8px',
|
||||
backgroundColor: 'var(--ion-color-light)',
|
||||
borderRadius: '8px',
|
||||
padding: '10px 14px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: hoveredPoint !== null ? 'space-between' : 'center',
|
||||
border: '1px solid var(--ion-color-light-shade)',
|
||||
transition: 'all 0.2s ease',
|
||||
}}
|
||||
>
|
||||
{hoveredPoint !== null ? (
|
||||
<>
|
||||
<div
|
||||
style={{ display: 'flex', alignItems: 'center', gap: '8px' }}
|
||||
>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.85rem',
|
||||
fontWeight: 700,
|
||||
color: 'var(--ion-color-dark)',
|
||||
}}
|
||||
>
|
||||
{formatDate(trends[hoveredPoint].date)}
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.75rem',
|
||||
color: 'var(--ion-color-medium)',
|
||||
backgroundColor: 'rgba(0,0,0,0.05)',
|
||||
padding: '2px 6px',
|
||||
borderRadius: '4px',
|
||||
}}
|
||||
>
|
||||
N = {trends[hoveredPoint].cohortSize} users
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
style={{ display: 'flex', gap: '16px', alignItems: 'center' }}
|
||||
>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.8rem',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
color: 'var(--ion-color-tertiary)',
|
||||
fontWeight: 600,
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={moonOutline} /> Sleep:{' '}
|
||||
{trends[hoveredPoint].avgSleepScore}/100
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.75rem',
|
||||
fontWeight: 400,
|
||||
color: 'var(--ion-color-medium)',
|
||||
}}
|
||||
>
|
||||
({trends[hoveredPoint].poorSleepPercentage}% poor)
|
||||
</span>
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.8rem',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
color: 'var(--ion-color-danger)',
|
||||
fontWeight: 600,
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={flashOutline} /> Stress:{' '}
|
||||
{trends[hoveredPoint].avgStressIndex}/10
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.75rem',
|
||||
fontWeight: 400,
|
||||
color: 'var(--ion-color-medium)',
|
||||
}}
|
||||
>
|
||||
({trends[hoveredPoint].highStressPercentage}% peak)
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
<span
|
||||
style={{
|
||||
fontSize: '0.75rem',
|
||||
color: 'var(--ion-color-medium)',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '6px',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={eyeOutline} style={{ fontSize: '14px' }} /> Hover
|
||||
or tap along the grid timeline to inspect specific historical
|
||||
dates
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</IonCardContent>
|
||||
</IonCard>
|
||||
);
|
||||
};
|
||||
@@ -1,217 +0,0 @@
|
||||
import React from 'react';
|
||||
import { IonIcon, IonButton } from '@ionic/react';
|
||||
import {
|
||||
trashOutline,
|
||||
medkitOutline,
|
||||
restaurantOutline,
|
||||
moonOutline,
|
||||
clipboardOutline,
|
||||
} from 'ionicons/icons';
|
||||
import { format } from 'date-fns';
|
||||
|
||||
interface HealthEntry {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface Props {
|
||||
type: 'checkup' | 'diet' | 'sleep';
|
||||
entries: HealthEntry[];
|
||||
onDelete: (id: string) => void;
|
||||
emptyTitle: string;
|
||||
emptyActionLabel: string;
|
||||
onEmptyAction: () => void;
|
||||
}
|
||||
|
||||
const HealthLogList: React.FC<Props> = ({
|
||||
type,
|
||||
entries,
|
||||
onDelete,
|
||||
emptyTitle,
|
||||
emptyActionLabel,
|
||||
onEmptyAction,
|
||||
}) => {
|
||||
if (entries.length === 0) {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '32px 24px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={
|
||||
type === 'checkup'
|
||||
? medkitOutline
|
||||
: type === 'diet'
|
||||
? restaurantOutline
|
||||
: moonOutline
|
||||
}
|
||||
style={{
|
||||
fontSize: '42px',
|
||||
color: 'rgba(3,105,161,0.36)',
|
||||
marginBottom: '16px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '16px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
{emptyTitle}
|
||||
</div>
|
||||
<IonButton
|
||||
onClick={onEmptyAction}
|
||||
style={{
|
||||
'--background': '#0369a1',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#ffffff',
|
||||
fontWeight: '700',
|
||||
height: '44px',
|
||||
marginTop: '16px',
|
||||
}}
|
||||
>
|
||||
{emptyActionLabel}
|
||||
</IonButton>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const getIcon = () => {
|
||||
switch (type) {
|
||||
case 'checkup':
|
||||
return medkitOutline;
|
||||
case 'diet':
|
||||
return restaurantOutline;
|
||||
case 'sleep':
|
||||
return moonOutline;
|
||||
default:
|
||||
return clipboardOutline;
|
||||
}
|
||||
};
|
||||
|
||||
const getTitle = (entry: any) => {
|
||||
switch (type) {
|
||||
case 'checkup':
|
||||
return `Mood: ${entry.mood} (${entry.energy}%)`;
|
||||
case 'diet':
|
||||
return `${entry.mealType} log`;
|
||||
case 'sleep':
|
||||
return `Sleep: ${entry.hours}h (${entry.quality})`;
|
||||
default:
|
||||
return 'Log entry';
|
||||
}
|
||||
};
|
||||
|
||||
const getSubtitle = (entry: any) => {
|
||||
switch (type) {
|
||||
case 'checkup':
|
||||
return entry.symptoms || 'No symptoms noted';
|
||||
case 'diet':
|
||||
return `${entry.waterCups} cups water, ${entry.produceServings} servings produce`;
|
||||
case 'sleep':
|
||||
return `${entry.interruptions} interruptions`;
|
||||
default:
|
||||
return '';
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '8px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
>
|
||||
{entries.map((entry, index) => (
|
||||
<div
|
||||
key={entry.id}
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '12px',
|
||||
padding: '12px',
|
||||
borderBottom:
|
||||
index === entries.length - 1
|
||||
? 'none'
|
||||
: '1px solid rgba(30,58,95,0.05)',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
borderRadius: '12px',
|
||||
background: 'rgba(56,189,248,0.14)',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
flexShrink: 0,
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={getIcon()}
|
||||
style={{ fontSize: '20px', color: '#0369a1' }}
|
||||
/>
|
||||
</div>
|
||||
<div style={{ flex: 1, minWidth: 0 }}>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '15px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
whiteSpace: 'nowrap',
|
||||
overflow: 'hidden',
|
||||
textOverflow: 'ellipsis',
|
||||
}}
|
||||
>
|
||||
{getTitle(entry)}
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '500',
|
||||
color: 'rgba(30,58,95,0.58)',
|
||||
whiteSpace: 'nowrap',
|
||||
overflow: 'hidden',
|
||||
textOverflow: 'ellipsis',
|
||||
}}
|
||||
>
|
||||
{format(new Date(entry.createdAt), 'MMM d, h:mm a')} •{' '}
|
||||
{getSubtitle(entry)}
|
||||
</div>
|
||||
</div>
|
||||
<IonButton
|
||||
fill="clear"
|
||||
onClick={() => onDelete(entry.id)}
|
||||
style={{
|
||||
'--color': 'rgba(30,58,95,0.38)',
|
||||
'--padding-start': '8px',
|
||||
'--padding-end': '8px',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={trashOutline}
|
||||
slot="icon-only"
|
||||
style={{ fontSize: '18px' }}
|
||||
/>
|
||||
</IonButton>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default HealthLogList;
|
||||
@@ -1,195 +0,0 @@
|
||||
import React from 'react';
|
||||
import { IonIcon } from '@ionic/react';
|
||||
import {
|
||||
checkmarkCircleOutline,
|
||||
warningOutline,
|
||||
informationCircleOutline,
|
||||
waterOutline,
|
||||
moonOutline,
|
||||
heartOutline,
|
||||
analyticsOutline,
|
||||
} from 'ionicons/icons';
|
||||
import { WellbeingSummary, LocalInsight } from '../../types/health';
|
||||
|
||||
// Use this for mapping string names to IonIcons
|
||||
const ICON_MAP: Record<string, string> = {
|
||||
checkmarkCircleOutline,
|
||||
warningOutline,
|
||||
informationCircleOutline,
|
||||
waterOutline,
|
||||
moonOutline,
|
||||
heartOutline,
|
||||
analyticsOutline,
|
||||
};
|
||||
|
||||
interface SummaryProps {
|
||||
summary: WellbeingSummary;
|
||||
primaryInsight: LocalInsight | null;
|
||||
}
|
||||
|
||||
export const InsightSummaryCard: React.FC<SummaryProps> = ({
|
||||
summary,
|
||||
primaryInsight,
|
||||
}) => {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#1e3a5f',
|
||||
borderRadius: '24px',
|
||||
padding: '24px',
|
||||
marginBottom: '12px',
|
||||
color: '#ffffff',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(255,255,255,0.72)',
|
||||
marginBottom: '8px',
|
||||
textTransform: 'uppercase',
|
||||
letterSpacing: '0.05em',
|
||||
}}
|
||||
>
|
||||
Your Pattern
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '20px',
|
||||
fontWeight: '700',
|
||||
lineHeight: '26px',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
{primaryInsight
|
||||
? primaryInsight.title
|
||||
: 'Keep tracking to reveal insights'}
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '14px',
|
||||
color: 'rgba(255,255,255,0.76)',
|
||||
lineHeight: '20px',
|
||||
marginBottom: '20px',
|
||||
}}
|
||||
>
|
||||
{primaryInsight
|
||||
? primaryInsight.body
|
||||
: 'Log your checkups, meals, and sleep regularly for personalized health guidance.'}
|
||||
</div>
|
||||
<div style={{ display: 'flex', gap: '8px' }}>
|
||||
<div
|
||||
style={{
|
||||
background: 'rgba(56,189,248,0.18)',
|
||||
borderRadius: '999px',
|
||||
padding: '6px 12px',
|
||||
fontSize: '12px',
|
||||
fontWeight: '700',
|
||||
}}
|
||||
>
|
||||
Score: {summary.score}/100
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
background: 'rgba(56,189,248,0.18)',
|
||||
borderRadius: '999px',
|
||||
padding: '6px 12px',
|
||||
fontSize: '12px',
|
||||
fontWeight: '700',
|
||||
}}
|
||||
>
|
||||
{summary.streakDays} day streak
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
interface ListProps {
|
||||
insights: LocalInsight[];
|
||||
}
|
||||
|
||||
export const RecommendationList: React.FC<ListProps> = ({ insights }) => {
|
||||
if (insights.length === 0) return null;
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '8px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
>
|
||||
{insights.map((insight, index) => (
|
||||
<div
|
||||
key={insight.id}
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'flex-start',
|
||||
gap: '12px',
|
||||
padding: '16px',
|
||||
borderBottom:
|
||||
index === insights.length - 1
|
||||
? 'none'
|
||||
: '1px solid rgba(30,58,95,0.05)',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
borderRadius: '12px',
|
||||
background:
|
||||
insight.type === 'positive'
|
||||
? 'rgba(52,168,83,0.10)'
|
||||
: insight.type === 'warning'
|
||||
? 'rgba(234,67,53,0.10)'
|
||||
: 'rgba(3,105,161,0.10)',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
flexShrink: 0,
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={ICON_MAP[insight.icon] || informationCircleOutline}
|
||||
style={{
|
||||
fontSize: '20px',
|
||||
color:
|
||||
insight.type === 'positive'
|
||||
? '#34a853'
|
||||
: insight.type === 'warning'
|
||||
? '#ea4335'
|
||||
: '#0369a1',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div style={{ flex: 1 }}>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '15px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
marginBottom: '2px',
|
||||
}}
|
||||
>
|
||||
{insight.title}
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '500',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
lineHeight: '18px',
|
||||
}}
|
||||
>
|
||||
{insight.body}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -1,111 +0,0 @@
|
||||
import React from 'react';
|
||||
import { IonIcon } from '@ionic/react';
|
||||
|
||||
interface Props {
|
||||
label: string;
|
||||
value: string;
|
||||
helper: string;
|
||||
progress: number;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
const MetricMiniCard: React.FC<Props> = ({
|
||||
label,
|
||||
value,
|
||||
helper,
|
||||
progress,
|
||||
icon,
|
||||
}) => {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '16px',
|
||||
minHeight: '112px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
justifyContent: 'space-between',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '32px',
|
||||
height: '32px',
|
||||
borderRadius: '12px',
|
||||
background: 'rgba(56,189,248,0.14)',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
flexShrink: 0,
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={icon} style={{ fontSize: '18px', color: '#0369a1' }} />
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.58)',
|
||||
textAlign: 'right',
|
||||
}}
|
||||
>
|
||||
{label}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style={{ marginTop: '12px' }}>
|
||||
<div style={{ display: 'flex', alignItems: 'baseline' }}>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '26px',
|
||||
fontWeight: '400',
|
||||
color: '#1e3a5f',
|
||||
fontVariantNumeric: 'tabular-nums',
|
||||
}}
|
||||
>
|
||||
{value}
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(30,58,95,0.40)',
|
||||
marginLeft: '4px',
|
||||
}}
|
||||
>
|
||||
{helper}
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
height: '7px',
|
||||
borderRadius: '999px',
|
||||
background: '#e2f2f8',
|
||||
marginTop: '8px',
|
||||
overflow: 'hidden',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
height: '100%',
|
||||
width: `${Math.min(progress * 100, 100)}%`,
|
||||
background: '#38bdf8',
|
||||
borderRadius: '999px',
|
||||
transition: 'width 0.5s ease-out',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetricMiniCard;
|
||||
@@ -1,200 +0,0 @@
|
||||
import React from 'react';
|
||||
import { IonIcon, IonButton } from '@ionic/react';
|
||||
import {
|
||||
clipboardOutline,
|
||||
medkitOutline,
|
||||
restaurantOutline,
|
||||
moonOutline,
|
||||
chevronForwardOutline,
|
||||
} from 'ionicons/icons';
|
||||
import { ActivityEntry } from '../../types/health';
|
||||
import { formatDistanceToNow } from 'date-fns';
|
||||
|
||||
interface Props {
|
||||
entries: ActivityEntry[];
|
||||
onCreate: () => void;
|
||||
onSeeInsights: () => void;
|
||||
}
|
||||
|
||||
const RecentActivityList: React.FC<Props> = ({
|
||||
entries,
|
||||
onCreate,
|
||||
onSeeInsights,
|
||||
}) => {
|
||||
if (entries.length === 0) {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
margin: '0 20px 20px',
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '32px 24px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={clipboardOutline}
|
||||
style={{
|
||||
fontSize: '42px',
|
||||
color: 'rgba(3,105,161,0.36)',
|
||||
marginBottom: '16px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '16px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
No health logs yet
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
color: 'rgba(30,58,95,0.58)',
|
||||
marginBottom: '24px',
|
||||
}}
|
||||
>
|
||||
Start your first self checkup to track your wellbeing.
|
||||
</div>
|
||||
<IonButton
|
||||
onClick={onCreate}
|
||||
style={{
|
||||
'--background': '#0369a1',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#ffffff',
|
||||
fontWeight: '700',
|
||||
height: '44px',
|
||||
width: '100%',
|
||||
maxWidth: '200px',
|
||||
}}
|
||||
>
|
||||
Start a checkup
|
||||
</IonButton>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const getIcon = (type: string) => {
|
||||
switch (type) {
|
||||
case 'checkup':
|
||||
return medkitOutline;
|
||||
case 'diet':
|
||||
return restaurantOutline;
|
||||
case 'sleep':
|
||||
return moonOutline;
|
||||
default:
|
||||
return clipboardOutline;
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
margin: '0 20px 20px',
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '8px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
>
|
||||
{entries.map((entry, index) => (
|
||||
<div
|
||||
key={entry.id}
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '12px',
|
||||
padding: '12px',
|
||||
borderBottom:
|
||||
index === entries.length - 1
|
||||
? 'none'
|
||||
: '1px solid rgba(30,58,95,0.05)',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
borderRadius: '12px',
|
||||
background: 'rgba(3,105,161,0.10)',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
flexShrink: 0,
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={getIcon(entry.type)}
|
||||
style={{ fontSize: '20px', color: '#0369a1' }}
|
||||
/>
|
||||
</div>
|
||||
<div style={{ flex: 1, minWidth: 0 }}>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '15px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
whiteSpace: 'nowrap',
|
||||
overflow: 'hidden',
|
||||
textOverflow: 'ellipsis',
|
||||
}}
|
||||
>
|
||||
{entry.title}
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '500',
|
||||
color: 'rgba(30,58,95,0.58)',
|
||||
whiteSpace: 'nowrap',
|
||||
overflow: 'hidden',
|
||||
textOverflow: 'ellipsis',
|
||||
}}
|
||||
>
|
||||
{entry.subtitle}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '11px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(30,58,95,0.40)',
|
||||
flexShrink: 0,
|
||||
textAlign: 'right',
|
||||
}}
|
||||
>
|
||||
{formatDistanceToNow(new Date(entry.date), { addSuffix: true })}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
<div
|
||||
onClick={onSeeInsights}
|
||||
style={{
|
||||
padding: '16px',
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
gap: '4px',
|
||||
cursor: 'pointer',
|
||||
}}
|
||||
>
|
||||
<span style={{ fontSize: '13px', fontWeight: '700', color: '#0369a1' }}>
|
||||
View all insights
|
||||
</span>
|
||||
<IonIcon
|
||||
icon={chevronForwardOutline}
|
||||
style={{ fontSize: '14px', color: '#0369a1' }}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default RecentActivityList;
|
||||
@@ -1,119 +0,0 @@
|
||||
import React from 'react';
|
||||
import { IonIcon } from '@ionic/react';
|
||||
import { moonOutline } from 'ionicons/icons';
|
||||
import { SleepEntry } from '../../types/health';
|
||||
import { format } from 'date-fns';
|
||||
|
||||
interface Props {
|
||||
entries: SleepEntry[];
|
||||
}
|
||||
|
||||
const SleepTrendCard: React.FC<Props> = ({ entries }) => {
|
||||
const lastSeven = entries.slice(0, 7).reverse();
|
||||
|
||||
if (entries.length === 0) {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '24px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={moonOutline}
|
||||
style={{
|
||||
fontSize: '32px',
|
||||
color: 'rgba(3,105,161,0.20)',
|
||||
marginBottom: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '14px',
|
||||
fontWeight: '500',
|
||||
color: 'rgba(30,58,95,0.50)',
|
||||
}}
|
||||
>
|
||||
Sleep trends appear after your first log
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const maxHours = Math.max(...lastSeven.map((e) => e.hours), 10);
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '20px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '16px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
marginBottom: '16px',
|
||||
}}
|
||||
>
|
||||
7-day sleep trend
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'flex-end',
|
||||
height: '80px',
|
||||
paddingBottom: '20px',
|
||||
}}
|
||||
>
|
||||
{lastSeven.map((entry) => (
|
||||
<div
|
||||
key={entry.id}
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
flex: 1,
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '12px',
|
||||
height: `${(entry.hours / maxHours) * 60}px`,
|
||||
background:
|
||||
entry.quality === 'Restful'
|
||||
? '#38bdf8'
|
||||
: entry.quality === 'Okay'
|
||||
? '#0369a1'
|
||||
: '#1e3a5f',
|
||||
borderRadius: '6px 6px 0 0',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '10px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(30,58,95,0.40)',
|
||||
marginTop: '4px',
|
||||
}}
|
||||
>
|
||||
{format(new Date(entry.createdAt), 'E')[0]}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SleepTrendCard;
|
||||
@@ -1,123 +0,0 @@
|
||||
import React from 'react';
|
||||
import { IonIcon } from '@ionic/react';
|
||||
import { pulseOutline } from 'ionicons/icons';
|
||||
|
||||
interface Props {
|
||||
score: number;
|
||||
message: string;
|
||||
progress: number;
|
||||
}
|
||||
|
||||
const WellbeingScoreCard: React.FC<Props> = ({ score, message, progress }) => {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
margin: '0 20px 12px',
|
||||
background: '#1e3a5f',
|
||||
borderRadius: '24px',
|
||||
padding: '20px',
|
||||
minHeight: '164px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
justifyContent: 'space-between',
|
||||
position: 'relative',
|
||||
overflow: 'hidden',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'flex-start',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(255,255,255,0.72)',
|
||||
marginBottom: '4px',
|
||||
}}
|
||||
>
|
||||
Today’s wellbeing score
|
||||
</div>
|
||||
<div style={{ display: 'flex', alignItems: 'baseline' }}>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '48px',
|
||||
fontWeight: '400',
|
||||
color: '#ffffff',
|
||||
lineHeight: '56px',
|
||||
fontVariantNumeric: 'tabular-nums',
|
||||
}}
|
||||
>
|
||||
{score}
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '18px',
|
||||
fontWeight: '400',
|
||||
color: 'rgba(255,255,255,0.52)',
|
||||
marginLeft: '4px',
|
||||
}}
|
||||
>
|
||||
/100
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
background: 'rgba(56,189,248,0.16)',
|
||||
borderRadius: '12px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
flexShrink: 0,
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={pulseOutline}
|
||||
style={{ fontSize: '22px', color: '#38bdf8' }}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '14px',
|
||||
fontWeight: '500',
|
||||
color: 'rgba(255,255,255,0.78)',
|
||||
lineHeight: '20px',
|
||||
marginBottom: '12px',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
height: '8px',
|
||||
background: 'rgba(255,255,255,0.16)',
|
||||
borderRadius: '999px',
|
||||
overflow: 'hidden',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
height: '100%',
|
||||
width: `${progress * 100}%`,
|
||||
background: '#38bdf8',
|
||||
borderRadius: '999px',
|
||||
transition: 'width 0.5s ease-out',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default WellbeingScoreCard;
|
||||
@@ -0,0 +1,169 @@
|
||||
import React, {
|
||||
createContext,
|
||||
useCallback,
|
||||
useContext,
|
||||
useEffect,
|
||||
useState,
|
||||
} from 'react';
|
||||
import { User } from '@supabase/supabase-js';
|
||||
import { supabase } from '../supabase';
|
||||
import { Database } from '../database.types';
|
||||
import { IonSpinner } from '@ionic/react';
|
||||
|
||||
type Profile = Database['public']['Tables']['profiles']['Row'];
|
||||
|
||||
interface AuthContextType {
|
||||
user: User | null;
|
||||
profile: Profile | null;
|
||||
loading: boolean;
|
||||
refreshProfile: () => Promise<void>;
|
||||
}
|
||||
|
||||
const AuthContext = createContext<AuthContextType | undefined>(undefined);
|
||||
|
||||
export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({
|
||||
children,
|
||||
}) => {
|
||||
const [user, setUser] = useState<User | null>(null);
|
||||
const [profile, setProfile] = useState<Profile | null>(null);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
const fetchProfile = useCallback(async (currentUser: User) => {
|
||||
try {
|
||||
const fallbackProfile = {
|
||||
id: currentUser.id,
|
||||
full_name:
|
||||
typeof currentUser.user_metadata?.full_name === 'string'
|
||||
? currentUser.user_metadata.full_name
|
||||
: '',
|
||||
shop_name: 'My Shop',
|
||||
currency: 'USD',
|
||||
};
|
||||
|
||||
const { data, error } = await supabase
|
||||
.from('profiles')
|
||||
.upsert(fallbackProfile, { onConflict: 'id', ignoreDuplicates: true })
|
||||
.select('*')
|
||||
.single();
|
||||
|
||||
if (error) {
|
||||
console.error('Error fetching profile:', error);
|
||||
setProfile({
|
||||
...fallbackProfile,
|
||||
created_at: new Date().toISOString(),
|
||||
updated_at: new Date().toISOString(),
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
setProfile(data);
|
||||
} catch (err) {
|
||||
console.error('Error fetching profile:', err);
|
||||
setProfile(null);
|
||||
}
|
||||
}, []);
|
||||
|
||||
const refreshProfile = async () => {
|
||||
if (user) {
|
||||
await fetchProfile(user);
|
||||
}
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
let mounted = true;
|
||||
|
||||
const initialiseSession = async () => {
|
||||
const timeout = window.setTimeout(() => {
|
||||
if (mounted) {
|
||||
console.warn('Auth initialisation timed out; showing app shell.');
|
||||
setLoading(false);
|
||||
}
|
||||
}, 8000);
|
||||
|
||||
try {
|
||||
const {
|
||||
data: { session },
|
||||
error,
|
||||
} = await supabase.auth.getSession();
|
||||
|
||||
if (!mounted) return;
|
||||
|
||||
if (error) {
|
||||
console.error('Error restoring auth session:', error);
|
||||
}
|
||||
|
||||
const currentUser = session?.user ?? null;
|
||||
setUser(currentUser);
|
||||
|
||||
if (currentUser) {
|
||||
await fetchProfile(currentUser);
|
||||
} else {
|
||||
setProfile(null);
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Error restoring auth session:', err);
|
||||
if (mounted) {
|
||||
setUser(null);
|
||||
setProfile(null);
|
||||
}
|
||||
} finally {
|
||||
window.clearTimeout(timeout);
|
||||
if (mounted) {
|
||||
setLoading(false);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
void initialiseSession();
|
||||
|
||||
const {
|
||||
data: { subscription },
|
||||
} = supabase.auth.onAuthStateChange((_event, session) => {
|
||||
const currentUser = session?.user ?? null;
|
||||
setUser(currentUser);
|
||||
|
||||
if (currentUser) {
|
||||
void fetchProfile(currentUser);
|
||||
} else {
|
||||
setProfile(null);
|
||||
}
|
||||
|
||||
setLoading(false);
|
||||
});
|
||||
|
||||
return () => {
|
||||
mounted = false;
|
||||
subscription.unsubscribe();
|
||||
};
|
||||
}, [fetchProfile]);
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
height: '100vh',
|
||||
background: 'var(--color-bg, #f0f4ff)',
|
||||
}}
|
||||
>
|
||||
<IonSpinner name="crescent" color="primary" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<AuthContext.Provider value={{ user, profile, loading, refreshProfile }}>
|
||||
{children}
|
||||
</AuthContext.Provider>
|
||||
);
|
||||
};
|
||||
|
||||
export const useAuth = () => {
|
||||
const context = useContext(AuthContext);
|
||||
if (context === undefined) {
|
||||
throw new Error('useAuth must be used within an AuthProvider');
|
||||
}
|
||||
return context;
|
||||
};
|
||||
@@ -0,0 +1,323 @@
|
||||
export type Json =
|
||||
| string
|
||||
| number
|
||||
| boolean
|
||||
| null
|
||||
| { [key: string]: Json | undefined }
|
||||
| Json[]
|
||||
|
||||
export type Database = {
|
||||
// Allows to automatically instantiate createClient with right options
|
||||
// instead of createClient<Database, { PostgrestVersion: 'XX' }>(URL, KEY)
|
||||
__InternalSupabase: {
|
||||
PostgrestVersion: "14.5"
|
||||
}
|
||||
public: {
|
||||
Tables: {
|
||||
credit_customers: {
|
||||
Row: {
|
||||
created_at: string
|
||||
id: string
|
||||
name: string
|
||||
notes: string | null
|
||||
phone: string | null
|
||||
updated_at: string
|
||||
user_id: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
phone?: string | null
|
||||
updated_at?: string
|
||||
user_id: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
id?: string
|
||||
name?: string
|
||||
notes?: string | null
|
||||
phone?: string | null
|
||||
updated_at?: string
|
||||
user_id?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
credits: {
|
||||
Row: {
|
||||
amount: number
|
||||
created_at: string
|
||||
credit_date: string
|
||||
customer_id: string
|
||||
description: string | null
|
||||
id: string
|
||||
updated_at: string
|
||||
user_id: string
|
||||
}
|
||||
Insert: {
|
||||
amount: number
|
||||
created_at?: string
|
||||
credit_date?: string
|
||||
customer_id: string
|
||||
description?: string | null
|
||||
id?: string
|
||||
updated_at?: string
|
||||
user_id: string
|
||||
}
|
||||
Update: {
|
||||
amount?: number
|
||||
created_at?: string
|
||||
credit_date?: string
|
||||
customer_id?: string
|
||||
description?: string | null
|
||||
id?: string
|
||||
updated_at?: string
|
||||
user_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "credits_customer_id_fkey"
|
||||
columns: ["customer_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "credit_customers"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
profiles: {
|
||||
Row: {
|
||||
created_at: string
|
||||
currency: string
|
||||
full_name: string | null
|
||||
id: string
|
||||
shop_name: string | null
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
currency?: string
|
||||
full_name?: string | null
|
||||
id: string
|
||||
shop_name?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
currency?: string
|
||||
full_name?: string | null
|
||||
id?: string
|
||||
shop_name?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
repayments: {
|
||||
Row: {
|
||||
amount: number
|
||||
created_at: string
|
||||
customer_id: string
|
||||
id: string
|
||||
note: string | null
|
||||
repayment_date: string
|
||||
updated_at: string
|
||||
user_id: string
|
||||
}
|
||||
Insert: {
|
||||
amount: number
|
||||
created_at?: string
|
||||
customer_id: string
|
||||
id?: string
|
||||
note?: string | null
|
||||
repayment_date?: string
|
||||
updated_at?: string
|
||||
user_id: string
|
||||
}
|
||||
Update: {
|
||||
amount?: number
|
||||
created_at?: string
|
||||
customer_id?: string
|
||||
id?: string
|
||||
note?: string | null
|
||||
repayment_date?: string
|
||||
updated_at?: string
|
||||
user_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "repayments_customer_id_fkey"
|
||||
columns: ["customer_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "credit_customers"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
sales: {
|
||||
Row: {
|
||||
amount: number
|
||||
created_at: string
|
||||
id: string
|
||||
note: string | null
|
||||
sale_date: string
|
||||
updated_at: string
|
||||
user_id: string
|
||||
}
|
||||
Insert: {
|
||||
amount: number
|
||||
created_at?: string
|
||||
id?: string
|
||||
note?: string | null
|
||||
sale_date?: string
|
||||
updated_at?: string
|
||||
user_id: string
|
||||
}
|
||||
Update: {
|
||||
amount?: number
|
||||
created_at?: string
|
||||
id?: string
|
||||
note?: string | null
|
||||
sale_date?: string
|
||||
updated_at?: string
|
||||
user_id?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
}
|
||||
Views: {
|
||||
[_ in never]: never
|
||||
}
|
||||
Functions: {
|
||||
[_ in never]: never
|
||||
}
|
||||
Enums: {
|
||||
[_ in never]: never
|
||||
}
|
||||
CompositeTypes: {
|
||||
[_ in never]: never
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type DatabaseWithoutInternals = Omit<Database, "__InternalSupabase">
|
||||
|
||||
type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, "public">]
|
||||
|
||||
export type Tables<
|
||||
DefaultSchemaTableNameOrOptions extends
|
||||
| keyof (DefaultSchema["Tables"] & DefaultSchema["Views"])
|
||||
| { schema: keyof DatabaseWithoutInternals },
|
||||
TableName extends DefaultSchemaTableNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] &
|
||||
DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"])
|
||||
: never = never,
|
||||
> = DefaultSchemaTableNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] &
|
||||
DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
||||
Row: infer R
|
||||
}
|
||||
? R
|
||||
: never
|
||||
: DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] &
|
||||
DefaultSchema["Views"])
|
||||
? (DefaultSchema["Tables"] &
|
||||
DefaultSchema["Views"])[DefaultSchemaTableNameOrOptions] extends {
|
||||
Row: infer R
|
||||
}
|
||||
? R
|
||||
: never
|
||||
: never
|
||||
|
||||
export type TablesInsert<
|
||||
DefaultSchemaTableNameOrOptions extends
|
||||
| keyof DefaultSchema["Tables"]
|
||||
| { schema: keyof DatabaseWithoutInternals },
|
||||
TableName extends DefaultSchemaTableNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"]
|
||||
: never = never,
|
||||
> = DefaultSchemaTableNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
||||
Insert: infer I
|
||||
}
|
||||
? I
|
||||
: never
|
||||
: DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"]
|
||||
? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
|
||||
Insert: infer I
|
||||
}
|
||||
? I
|
||||
: never
|
||||
: never
|
||||
|
||||
export type TablesUpdate<
|
||||
DefaultSchemaTableNameOrOptions extends
|
||||
| keyof DefaultSchema["Tables"]
|
||||
| { schema: keyof DatabaseWithoutInternals },
|
||||
TableName extends DefaultSchemaTableNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"]
|
||||
: never = never,
|
||||
> = DefaultSchemaTableNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
||||
Update: infer U
|
||||
}
|
||||
? U
|
||||
: never
|
||||
: DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"]
|
||||
? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
|
||||
Update: infer U
|
||||
}
|
||||
? U
|
||||
: never
|
||||
: never
|
||||
|
||||
export type Enums<
|
||||
DefaultSchemaEnumNameOrOptions extends
|
||||
| keyof DefaultSchema["Enums"]
|
||||
| { schema: keyof DatabaseWithoutInternals },
|
||||
EnumName extends DefaultSchemaEnumNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? keyof DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"]
|
||||
: never = never,
|
||||
> = DefaultSchemaEnumNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"][EnumName]
|
||||
: DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"]
|
||||
? DefaultSchema["Enums"][DefaultSchemaEnumNameOrOptions]
|
||||
: never
|
||||
|
||||
export type CompositeTypes<
|
||||
PublicCompositeTypeNameOrOptions extends
|
||||
| keyof DefaultSchema["CompositeTypes"]
|
||||
| { schema: keyof DatabaseWithoutInternals },
|
||||
CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? keyof DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"]
|
||||
: never = never,
|
||||
> = PublicCompositeTypeNameOrOptions extends {
|
||||
schema: keyof DatabaseWithoutInternals
|
||||
}
|
||||
? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName]
|
||||
: PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"]
|
||||
? DefaultSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions]
|
||||
: never
|
||||
|
||||
export const Constants = {
|
||||
public: {
|
||||
Enums: {},
|
||||
},
|
||||
} as const
|
||||
+10
-5
@@ -5,7 +5,7 @@ import { Capacitor } from '@capacitor/core';
|
||||
import App from './App';
|
||||
|
||||
// ── Ionic initialisation ──────────────────────────────────────────────────────
|
||||
// ?mode=md|ios overrides (used by AppSuite preview); otherwise follow the platform.
|
||||
// ?mode=md|ios overrides (used by Appcakes preview); otherwise follow the platform.
|
||||
const _urlMode = new URLSearchParams(window.location.search).get('mode');
|
||||
const _platform = Capacitor.getPlatform(); // 'ios' | 'android' | 'web'
|
||||
setupIonicReact({
|
||||
@@ -13,7 +13,7 @@ setupIonicReact({
|
||||
});
|
||||
|
||||
// Derive the studio parent origin dynamically so this works in both dev
|
||||
// (parent at localhost:3000) and production (parent at appcakes.qqura.com).
|
||||
// (parent at localhost:3000) and production (parent at studio.appcakes.dev).
|
||||
const studioOrigin = (() => {
|
||||
try {
|
||||
if (document.referrer) return new URL(document.referrer).origin;
|
||||
@@ -49,7 +49,7 @@ if (import.meta.hot) {
|
||||
}
|
||||
|
||||
// ── Session bridge ────────────────────────────────────────────────────────────
|
||||
// Post auth session to the AppSuite parent frame so the AI can test auth-protected
|
||||
// Post auth session to the Appcakes parent frame so the AI can test auth-protected
|
||||
// Edge Functions. Uses import.meta.glob so Vite never errors if supabase.ts is absent.
|
||||
(async () => {
|
||||
const mods = import.meta.glob('./supabase.ts', { eager: false });
|
||||
@@ -73,12 +73,17 @@ if (import.meta.hot) {
|
||||
})();
|
||||
|
||||
// ── Runtime error reporting ───────────────────────────────────────────────────
|
||||
// Forward uncaught errors to the AppSuite dev server so the AI can read them.
|
||||
// Forward uncaught errors to the Appcakes dev server so the AI can read them.
|
||||
// Extract projectId from the preview URL (/preview/{projectId}/) so errors are
|
||||
// scoped per-project on the server rather than mixed into a global queue.
|
||||
const _previewMatch = window.location.pathname.match(/\/preview\/([^/]+)/);
|
||||
const _projectId = _previewMatch?.[1] ?? null;
|
||||
|
||||
function reportError(message: string, stack?: string) {
|
||||
fetch(`${studioOrigin}/api/agent/runtime-error`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ message, stack }),
|
||||
body: JSON.stringify({ message, stack, projectId: _projectId }),
|
||||
}).catch(() => {});
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,233 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonInput,
|
||||
IonButton,
|
||||
IonSpinner,
|
||||
IonIcon,
|
||||
IonText,
|
||||
} from '@ionic/react';
|
||||
import { storefrontOutline } from 'ionicons/icons';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
|
||||
const AuthPage: React.FC = () => {
|
||||
const [mode, setMode] = useState<'signin' | 'signup'>('signin');
|
||||
const [name, setName] = useState('');
|
||||
const [email, setEmail] = useState('');
|
||||
const [password, setPassword] = useState('');
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
const [messageType, setMessageType] = useState<'error' | 'success'>('error');
|
||||
|
||||
const history = useHistory();
|
||||
|
||||
const showMessage = (msg: string, type: 'error' | 'success' = 'error') => {
|
||||
setMessage(msg);
|
||||
setMessageType(type);
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
};
|
||||
|
||||
const handleAuth = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
if (!email || !password || (mode === 'signup' && !name)) {
|
||||
showMessage('Please fill in all fields');
|
||||
return;
|
||||
}
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
if (mode === 'signup') {
|
||||
const { data, error } = await supabase.auth.signUp({
|
||||
email,
|
||||
password,
|
||||
options: {
|
||||
data: {
|
||||
full_name: name,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
if (data.session) {
|
||||
history.push('/home');
|
||||
} else {
|
||||
history.push('/verify-email', { email });
|
||||
}
|
||||
} else {
|
||||
const { data, error } = await supabase.auth.signInWithPassword({
|
||||
email,
|
||||
password,
|
||||
});
|
||||
|
||||
if (error) {
|
||||
if (error.message.toLowerCase().includes('email not confirmed')) {
|
||||
await supabase.auth.resend({ type: 'signup', email });
|
||||
history.push('/verify-email', { email, resent: true });
|
||||
return;
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
|
||||
if (data.session) {
|
||||
history.push('/home');
|
||||
}
|
||||
}
|
||||
} catch (err: any) {
|
||||
showMessage(err.message || 'An authentication error occurred');
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.52) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
<div className="auth-shell">
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '12px',
|
||||
marginTop: '20px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className="icon-container"
|
||||
style={{ width: '44px', height: '44px' }}
|
||||
>
|
||||
<IonIcon icon={storefrontOutline} style={{ fontSize: '22px' }} />
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="bold" style={{ margin: '0', fontSize: '22px' }}>
|
||||
ShopKeep
|
||||
</h1>
|
||||
<p className="secondary-text" style={{ margin: '0' }}>
|
||||
Simple bookkeeping for you
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="auth-card">
|
||||
<div className="pill-toggle">
|
||||
<button
|
||||
className={`pill-toggle-btn ${mode === 'signin' ? 'active' : ''}`}
|
||||
onClick={() => setMode('signin')}
|
||||
>
|
||||
Sign in
|
||||
</button>
|
||||
<button
|
||||
className={`pill-toggle-btn ${mode === 'signup' ? 'active' : ''}`}
|
||||
onClick={() => setMode('signup')}
|
||||
>
|
||||
Create account
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<form
|
||||
onSubmit={handleAuth}
|
||||
style={{ display: 'flex', flexDirection: 'column', gap: '16px' }}
|
||||
>
|
||||
{mode === 'signup' && (
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
label="Full Name"
|
||||
labelPlacement="floating"
|
||||
placeholder="Enter your name"
|
||||
value={name}
|
||||
onIonChange={(e) => setName(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
label="Email"
|
||||
labelPlacement="floating"
|
||||
type="email"
|
||||
placeholder="name@example.com"
|
||||
value={email}
|
||||
onIonChange={(e) => setEmail(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
label="Password"
|
||||
labelPlacement="floating"
|
||||
type="password"
|
||||
placeholder="Min. 6 characters"
|
||||
value={password}
|
||||
onIonChange={(e) => setPassword(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background:
|
||||
messageType === 'error'
|
||||
? 'var(--color-danger-soft)'
|
||||
: 'var(--color-success-soft)',
|
||||
color:
|
||||
messageType === 'error'
|
||||
? 'var(--ion-color-danger-shade)'
|
||||
: 'var(--ion-color-success-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
type="submit"
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '8px',
|
||||
}}
|
||||
disabled={submitting}
|
||||
>
|
||||
{submitting ? (
|
||||
<IonSpinner name="crescent" />
|
||||
) : mode === 'signin' ? (
|
||||
'Sign in'
|
||||
) : (
|
||||
'Create account'
|
||||
)}
|
||||
</IonButton>
|
||||
</form>
|
||||
|
||||
<div style={{ textAlign: 'center', marginTop: '8px' }}>
|
||||
<IonText
|
||||
color="primary"
|
||||
className="semibold"
|
||||
style={{ fontSize: '13px', cursor: 'pointer' }}
|
||||
onClick={() => history.push('/forgot-password')}
|
||||
>
|
||||
Forgot password?
|
||||
</IonText>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default AuthPage;
|
||||
@@ -1,339 +0,0 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonHeader,
|
||||
IonPage,
|
||||
IonTitle,
|
||||
IonToolbar,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonRange,
|
||||
IonInput,
|
||||
IonTextarea,
|
||||
IonAlert,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import {
|
||||
chevronBackOutline,
|
||||
trashOutline,
|
||||
medkitOutline,
|
||||
} from 'ionicons/icons';
|
||||
import {
|
||||
getCheckups,
|
||||
addCheckup,
|
||||
deleteCheckup,
|
||||
clearCheckups,
|
||||
} from '../services/localHealthStore';
|
||||
import { CheckupEntry, CheckupMood } from '../types/health';
|
||||
import HealthLogList from '../components/health/HealthLogList';
|
||||
|
||||
const Checkups: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const [entries, setEntries] = useState<CheckupEntry[]>([]);
|
||||
const [mood, setMood] = useState<CheckupMood | ''>('');
|
||||
const [energy, setEnergy] = useState<number>(70);
|
||||
const [symptoms, setSymptoms] = useState<string>('');
|
||||
const [note, setNote] = useState<string>('');
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [showClearAlert, setShowClearAlert] = useState(false);
|
||||
|
||||
const refreshData = () => {
|
||||
setEntries(getCheckups());
|
||||
};
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
refreshData();
|
||||
});
|
||||
|
||||
const handleSave = () => {
|
||||
if (!mood) {
|
||||
setError('Please select a mood');
|
||||
setTimeout(() => setError(null), 4000);
|
||||
return;
|
||||
}
|
||||
|
||||
addCheckup({
|
||||
mood: mood as CheckupMood,
|
||||
energy,
|
||||
symptoms,
|
||||
note,
|
||||
});
|
||||
|
||||
setMood('');
|
||||
setEnergy(70);
|
||||
setSymptoms('');
|
||||
setNote('');
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const handleDelete = (id: string) => {
|
||||
deleteCheckup(id);
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const handleClear = () => {
|
||||
clearCheckups();
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const moods: CheckupMood[] = ['Great', 'Okay', 'Low', 'Unwell'];
|
||||
|
||||
return (
|
||||
<IonPage style={{ background: '#eef7fb' }}>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#eef7fb', '--color': '#1e3a5f' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle style={{ fontWeight: '700' }}>Self Checkup</IonTitle>
|
||||
<IonButtons slot="end">
|
||||
{entries.length > 0 && (
|
||||
<IonButton onClick={() => setShowClearAlert(true)}>
|
||||
<IonIcon
|
||||
icon={trashOutline}
|
||||
slot="icon-only"
|
||||
style={{ opacity: 0.5 }}
|
||||
/>
|
||||
</IonButton>
|
||||
)}
|
||||
</IonButtons>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent
|
||||
style={{
|
||||
'--background': '#eef7fb',
|
||||
'--padding-start': '20px',
|
||||
'--padding-end': '20px',
|
||||
'--padding-top': '16px',
|
||||
}}
|
||||
>
|
||||
{/* Form Card */}
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '24px',
|
||||
marginBottom: '20px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '16px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{ fontSize: '18px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
How do you feel right now?
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '12px',
|
||||
}}
|
||||
>
|
||||
Mood
|
||||
</div>
|
||||
<div style={{ display: 'flex', gap: '8px', flexWrap: 'wrap' }}>
|
||||
{moods.map((m) => (
|
||||
<div
|
||||
key={m}
|
||||
onClick={() => setMood(m)}
|
||||
style={{
|
||||
padding: '10px 16px',
|
||||
borderRadius: '999px',
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
cursor: 'pointer',
|
||||
background: mood === m ? '#0369a1' : '#e2f2f8',
|
||||
color: mood === m ? '#ffffff' : '#1e3a5f',
|
||||
transition: 'all 0.2s ease',
|
||||
}}
|
||||
>
|
||||
{m}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
}}
|
||||
>
|
||||
Energy
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: '#0369a1',
|
||||
}}
|
||||
>
|
||||
{energy}%
|
||||
</span>
|
||||
</div>
|
||||
<IonRange
|
||||
value={energy}
|
||||
onIonChange={(e) => setEnergy(e.detail.value as number)}
|
||||
style={{
|
||||
'--bar-background': '#e2f2f8',
|
||||
'--bar-background-active': '#38bdf8',
|
||||
'--knob-background': '#0369a1',
|
||||
padding: '0',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Symptoms
|
||||
</div>
|
||||
<IonInput
|
||||
value={symptoms}
|
||||
onIonInput={(e) => setSymptoms(e.detail.value!)}
|
||||
placeholder="e.g. Headache, fatigue..."
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--padding-end': '16px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Notes
|
||||
</div>
|
||||
<IonTextarea
|
||||
value={note}
|
||||
onIonInput={(e) => setNote(e.detail.value!)}
|
||||
placeholder="Add more details..."
|
||||
rows={3}
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--padding-end': '16px',
|
||||
'--padding-top': '12px',
|
||||
'--padding-bottom': '12px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{error && (
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
color: '#dc2626',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
onClick={handleSave}
|
||||
style={{
|
||||
'--background': '#0369a1',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#ffffff',
|
||||
fontWeight: '700',
|
||||
height: '48px',
|
||||
marginTop: '8px',
|
||||
}}
|
||||
>
|
||||
Save checkup
|
||||
</IonButton>
|
||||
</div>
|
||||
|
||||
{/* History Section */}
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'baseline',
|
||||
margin: '0 0 12px',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{ fontSize: '17px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
History
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(30,58,95,0.40)',
|
||||
}}
|
||||
>
|
||||
{entries.length} logs
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<HealthLogList
|
||||
type="checkup"
|
||||
entries={entries}
|
||||
onDelete={handleDelete}
|
||||
emptyTitle="No checkups yet"
|
||||
emptyActionLabel="Save your first checkup"
|
||||
onEmptyAction={() => {}} // Form is already on page
|
||||
/>
|
||||
|
||||
<div style={{ height: '40px' }} />
|
||||
|
||||
<IonAlert
|
||||
isOpen={showClearAlert}
|
||||
onDidDismiss={() => setShowClearAlert(false)}
|
||||
header="Clear history?"
|
||||
message="This will delete all checkup logs permanently."
|
||||
buttons={[
|
||||
{ text: 'Cancel', role: 'cancel' },
|
||||
{ text: 'Clear All', role: 'destructive', handler: handleClear },
|
||||
]}
|
||||
/>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default Checkups;
|
||||
@@ -0,0 +1,359 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonHeader,
|
||||
IonToolbar,
|
||||
IonTitle,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonInput,
|
||||
IonTextarea,
|
||||
IonSpinner,
|
||||
IonLabel,
|
||||
IonSelect,
|
||||
IonSelectOption,
|
||||
} from '@ionic/react';
|
||||
import { chevronBackOutline } from 'ionicons/icons';
|
||||
import { useHistory, useLocation } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { getTodayISO } from '../utils/dates';
|
||||
import MoneyInput from '../components/MoneyInput';
|
||||
import { parseMoney } from '../utils/money';
|
||||
|
||||
interface Customer {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
const CreditFormPage: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const location = useLocation<{ customerId?: string }>();
|
||||
const { user } = useAuth();
|
||||
|
||||
const [mode, setMode] = useState<'existing' | 'new'>('existing');
|
||||
const [customers, setCustomers] = useState<Customer[]>([]);
|
||||
const [selectedCustomerId, setSelectedCustomerId] = useState<string>(
|
||||
location.state?.customerId || ''
|
||||
);
|
||||
const [newName, setNewName] = useState('');
|
||||
const [phone, setPhone] = useState('');
|
||||
const [amount, setAmount] = useState('');
|
||||
const [creditDate, setCreditDate] = useState(getTodayISO());
|
||||
const [description, setDescription] = useState('');
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [loadingCustomers, setLoadingCustomers] = useState(true);
|
||||
const [errors, setErrors] = useState<Record<string, string>>({});
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
const fetchCustomers = async () => {
|
||||
if (!user) return;
|
||||
try {
|
||||
const { data, error } = await supabase
|
||||
.from('credit_customers')
|
||||
.select('id, name')
|
||||
.eq('user_id', user.id)
|
||||
.order('name');
|
||||
|
||||
if (error) throw error;
|
||||
setCustomers(data || []);
|
||||
if (!data || data.length === 0) {
|
||||
setMode('new');
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Error fetching customers:', err);
|
||||
} finally {
|
||||
setLoadingCustomers(false);
|
||||
}
|
||||
};
|
||||
|
||||
fetchCustomers();
|
||||
}, [user]);
|
||||
|
||||
const validate = () => {
|
||||
const newErrors: Record<string, string> = {};
|
||||
const parsedAmount = parseMoney(amount);
|
||||
|
||||
if (mode === 'existing' && !selectedCustomerId) {
|
||||
newErrors.customer = 'Please select a customer';
|
||||
}
|
||||
if (mode === 'new' && !newName.trim()) {
|
||||
newErrors.name = 'Customer name is required';
|
||||
}
|
||||
if (parsedAmount <= 0) {
|
||||
newErrors.amount = 'Amount must be greater than 0';
|
||||
}
|
||||
if (!creditDate) {
|
||||
newErrors.date = 'Date is required';
|
||||
}
|
||||
|
||||
setErrors(newErrors);
|
||||
return Object.keys(newErrors).length === 0;
|
||||
};
|
||||
|
||||
const handleSave = async () => {
|
||||
if (!validate() || !user) return;
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
let customerId = selectedCustomerId;
|
||||
|
||||
if (mode === 'new') {
|
||||
const { data: newCustomer, error: customerError } = await supabase
|
||||
.from('credit_customers')
|
||||
.insert([
|
||||
{
|
||||
user_id: user.id,
|
||||
name: newName.trim(),
|
||||
phone: phone.trim() || null,
|
||||
},
|
||||
])
|
||||
.select()
|
||||
.single();
|
||||
|
||||
if (customerError) throw customerError;
|
||||
customerId = newCustomer.id;
|
||||
}
|
||||
|
||||
const { error: creditError } = await supabase.from('credits').insert([
|
||||
{
|
||||
user_id: user.id,
|
||||
customer_id: customerId,
|
||||
amount: parseMoney(amount),
|
||||
credit_date: creditDate,
|
||||
description: description.trim() || null,
|
||||
},
|
||||
]);
|
||||
|
||||
if (creditError) throw creditError;
|
||||
|
||||
history.goBack();
|
||||
} catch (err: any) {
|
||||
console.error('Error saving credit:', err);
|
||||
setMessage(err.message || 'Could not save credit');
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#f0f4ff' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton color="dark" onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle className="bold">Add credit</IonTitle>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent className="ion-padding" style={{ '--background': '#f0f4ff' }}>
|
||||
<div className="form-card">
|
||||
<div className="pill-toggle" style={{ marginBottom: '8px' }}>
|
||||
<button
|
||||
className={`pill-toggle-btn ${mode === 'existing' ? 'active' : ''}`}
|
||||
onClick={() => setMode('existing')}
|
||||
disabled={customers.length === 0}
|
||||
>
|
||||
Existing Customer
|
||||
</button>
|
||||
<button
|
||||
className={`pill-toggle-btn ${mode === 'new' ? 'active' : ''}`}
|
||||
onClick={() => setMode('new')}
|
||||
>
|
||||
New Customer
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{mode === 'existing' ? (
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Select Customer
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonSelect
|
||||
interface="action-sheet"
|
||||
placeholder="Choose a customer"
|
||||
value={selectedCustomerId}
|
||||
onIonChange={(e) => setSelectedCustomerId(e.detail.value)}
|
||||
style={{ width: '100%' }}
|
||||
>
|
||||
{customers.map((c) => (
|
||||
<IonSelectOption key={c.id} value={c.id}>
|
||||
{c.name}
|
||||
</IonSelectOption>
|
||||
))}
|
||||
</IonSelect>
|
||||
</div>
|
||||
{errors.customer && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{ fontSize: '12px', marginTop: '4px' }}
|
||||
>
|
||||
{errors.customer}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Customer Name
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
placeholder="e.g. John Doe"
|
||||
value={newName}
|
||||
onIonChange={(e) => setNewName(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
{errors.name && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{ fontSize: '12px', marginTop: '4px' }}
|
||||
>
|
||||
{errors.name}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Phone (optional)
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
type="tel"
|
||||
placeholder="e.g. +1 234 567 890"
|
||||
value={phone}
|
||||
onIonChange={(e) => setPhone(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
|
||||
<MoneyInput
|
||||
label="Credit amount"
|
||||
value={amount}
|
||||
onValueChange={(val) => {
|
||||
setAmount(val);
|
||||
if (errors.amount) setErrors({ ...errors, amount: '' });
|
||||
}}
|
||||
error={errors.amount}
|
||||
/>
|
||||
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Credit date
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
type="date"
|
||||
value={creditDate}
|
||||
onIonChange={(e) => setCreditDate(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
{errors.date && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{ fontSize: '12px', marginTop: '4px' }}
|
||||
>
|
||||
{errors.date}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Description (optional)
|
||||
</IonLabel>
|
||||
<div
|
||||
className="input-wrapper"
|
||||
style={{ minHeight: '96px', padding: '8px 16px' }}
|
||||
>
|
||||
<IonTextarea
|
||||
placeholder="e.g. 2 bags of rice, sugar"
|
||||
value={description}
|
||||
onIonChange={(e) => setDescription(e.detail.value!)}
|
||||
rows={4}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background: 'var(--color-danger-soft)',
|
||||
color: 'var(--ion-color-danger-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '16px',
|
||||
}}
|
||||
disabled={submitting || (loadingCustomers && mode === 'existing')}
|
||||
onClick={handleSave}
|
||||
>
|
||||
{submitting ? <IonSpinner name="crescent" /> : 'Save credit'}
|
||||
</IonButton>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default CreditFormPage;
|
||||
@@ -0,0 +1,361 @@
|
||||
import React, { useState, useCallback, useMemo } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonHeader,
|
||||
IonToolbar,
|
||||
IonTitle,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonRefresher,
|
||||
IonRefresherContent,
|
||||
IonAlert,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import {
|
||||
chevronBackOutline,
|
||||
trashOutline,
|
||||
receiptOutline,
|
||||
personAddOutline,
|
||||
cashOutline,
|
||||
} from 'ionicons/icons';
|
||||
import { useHistory, useParams } from 'react-router-dom';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { supabase } from '../supabase';
|
||||
import ActivityRow, { ActivityItem } from '../components/ActivityRow';
|
||||
import EmptyState from '../components/EmptyState';
|
||||
import { formatMoney } from '../utils/money';
|
||||
|
||||
const CustomerDetailPage: React.FC = () => {
|
||||
const { id } = useParams<{ id: string }>();
|
||||
const { user, profile } = useAuth();
|
||||
const history = useHistory();
|
||||
const currency = profile?.currency || 'USD';
|
||||
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [customer, setCustomer] = useState<any>(null);
|
||||
const [activity, setActivity] = useState<ActivityItem[]>([]);
|
||||
const [balance, setBalance] = useState(0);
|
||||
const [showDeleteAlert, setShowDeleteAlert] = useState(false);
|
||||
|
||||
const fetchData = useCallback(async () => {
|
||||
if (!user || !id) return;
|
||||
setLoading(true);
|
||||
|
||||
try {
|
||||
const [
|
||||
{ data: customerData },
|
||||
{ data: creditsData },
|
||||
{ data: repaymentsData },
|
||||
] = await Promise.all([
|
||||
supabase.from('credit_customers').select('*').eq('id', id).single(),
|
||||
supabase
|
||||
.from('credits')
|
||||
.select('*')
|
||||
.eq('customer_id', id)
|
||||
.order('credit_date', { ascending: false }),
|
||||
supabase
|
||||
.from('repayments')
|
||||
.select('*')
|
||||
.eq('customer_id', id)
|
||||
.order('repayment_date', { ascending: false }),
|
||||
]);
|
||||
|
||||
if (customerData) {
|
||||
setCustomer(customerData);
|
||||
|
||||
const totalCredits = (creditsData || []).reduce(
|
||||
(sum, c) => sum + Number(c.amount),
|
||||
0
|
||||
);
|
||||
const totalRepayments = (repaymentsData || []).reduce(
|
||||
(sum, r) => sum + Number(r.amount),
|
||||
0
|
||||
);
|
||||
setBalance(Math.max(0, totalCredits - totalRepayments));
|
||||
|
||||
const combinedActivity: ActivityItem[] = [
|
||||
...(creditsData || []).map((c) => ({
|
||||
id: c.id,
|
||||
type: 'credit' as const,
|
||||
amount: Number(c.amount),
|
||||
date: c.credit_date,
|
||||
note: c.description,
|
||||
})),
|
||||
...(repaymentsData || []).map((r) => ({
|
||||
id: r.id,
|
||||
type: 'repayment' as const,
|
||||
amount: Number(r.amount),
|
||||
date: r.repayment_date,
|
||||
note: r.note,
|
||||
})),
|
||||
].sort((a, b) => b.date.localeCompare(a.date));
|
||||
|
||||
setActivity(combinedActivity);
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Error fetching customer detail:', err);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [user, id]);
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
fetchData();
|
||||
}, [fetchData]);
|
||||
|
||||
const handleRefresh = async (e: CustomEvent) => {
|
||||
await fetchData();
|
||||
e.detail.complete();
|
||||
};
|
||||
|
||||
const handleDelete = async () => {
|
||||
try {
|
||||
const { error } = await supabase
|
||||
.from('credit_customers')
|
||||
.delete()
|
||||
.eq('id', id);
|
||||
if (error) throw error;
|
||||
history.push('/customers');
|
||||
} catch (err) {
|
||||
console.error('Error deleting customer:', err);
|
||||
}
|
||||
};
|
||||
|
||||
const getInitials = (name: string) => {
|
||||
return name
|
||||
.split(' ')
|
||||
.map((n) => n[0])
|
||||
.join('')
|
||||
.toUpperCase()
|
||||
.slice(0, 2);
|
||||
};
|
||||
|
||||
if (!loading && !customer) {
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
className="ion-padding"
|
||||
style={{ '--background': '#f0f4ff' }}
|
||||
>
|
||||
<EmptyState
|
||||
icon="alert-circle-outline"
|
||||
title="Customer not found"
|
||||
actionText="Go Back"
|
||||
onAction={() => history.push('/customers')}
|
||||
/>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#f0f4ff' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton color="dark" onClick={() => history.push('/customers')}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle className="bold">Customer</IonTitle>
|
||||
<IonButtons slot="end">
|
||||
<IonButton color="danger" onClick={() => setShowDeleteAlert(true)}>
|
||||
<IonIcon icon={trashOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent fullscreen style={{ '--background': '#f0f4ff' }}>
|
||||
<IonRefresher slot="fixed" onIonRefresh={handleRefresh}>
|
||||
<IonRefresherContent />
|
||||
</IonRefresher>
|
||||
|
||||
<div className="page-padding" style={{ paddingTop: '16px' }}>
|
||||
<div className="widget-card" style={{ padding: '24px 20px' }}>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
marginBottom: '20px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className="icon-container bold"
|
||||
style={{
|
||||
width: '56px',
|
||||
height: '56px',
|
||||
fontSize: '18px',
|
||||
marginRight: '16px',
|
||||
borderRadius: '16px',
|
||||
}}
|
||||
>
|
||||
{customer ? getInitials(customer.name) : ''}
|
||||
</div>
|
||||
<div>
|
||||
<h2 className="bold" style={{ margin: '0', fontSize: '20px' }}>
|
||||
{customer?.name}
|
||||
</h2>
|
||||
{customer?.phone && (
|
||||
<p className="secondary-text" style={{ margin: '2px 0 0 0' }}>
|
||||
{customer.phone}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style={{ marginBottom: '24px' }}>
|
||||
<span className="tertiary-text">OUTSTANDING BALANCE</span>
|
||||
<div
|
||||
className="tabular"
|
||||
style={{
|
||||
fontSize: '34px',
|
||||
fontWeight: '400',
|
||||
color:
|
||||
balance > 0
|
||||
? 'var(--ion-color-danger)'
|
||||
: 'var(--ion-color-success)',
|
||||
marginTop: '4px',
|
||||
}}
|
||||
>
|
||||
{formatMoney(balance, currency)}
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
display: 'inline-block',
|
||||
padding: '4px 12px',
|
||||
borderRadius: '999px',
|
||||
fontSize: '12px',
|
||||
fontWeight: '600',
|
||||
marginTop: '8px',
|
||||
background:
|
||||
balance > 0
|
||||
? 'var(--color-danger-soft)'
|
||||
: 'var(--color-success-soft)',
|
||||
color:
|
||||
balance > 0
|
||||
? 'var(--ion-color-danger)'
|
||||
: 'var(--ion-color-success)',
|
||||
}}
|
||||
>
|
||||
{balance > 0 ? 'OWING' : 'CLEARED'}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style={{ display: 'flex', gap: '12px' }}>
|
||||
<IonButton
|
||||
fill="clear"
|
||||
className="bold"
|
||||
style={{
|
||||
flex: 1,
|
||||
fontSize: '14px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
color: 'var(--color-text-primary)',
|
||||
'--border-radius': 'var(--radius-inner)',
|
||||
height: '44px',
|
||||
}}
|
||||
onClick={() => history.push('/credit/new', { customerId: id })}
|
||||
>
|
||||
<IonIcon icon={personAddOutline} slot="start" />
|
||||
Credit
|
||||
</IonButton>
|
||||
<IonButton
|
||||
fill="solid"
|
||||
className="bold"
|
||||
style={{
|
||||
flex: 1,
|
||||
fontSize: '14px',
|
||||
'--border-radius': 'var(--radius-inner)',
|
||||
height: '44px',
|
||||
}}
|
||||
onClick={() =>
|
||||
history.push('/repayment/new', { customerId: id })
|
||||
}
|
||||
disabled={balance === 0}
|
||||
>
|
||||
<IonIcon icon={cashOutline} slot="start" />
|
||||
Repay
|
||||
</IonButton>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="section-header">
|
||||
<h2>Activity</h2>
|
||||
</div>
|
||||
|
||||
<div className="page-padding" style={{ paddingBottom: '40px' }}>
|
||||
{loading ? (
|
||||
<div className="widget-card" style={{ gap: '16px' }}>
|
||||
{[1, 2, 3].map((i) => (
|
||||
<div
|
||||
key={i}
|
||||
style={{ display: 'flex', gap: '12px', alignItems: 'center' }}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
borderRadius: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
}}
|
||||
/>
|
||||
<div style={{ flex: 1 }}>
|
||||
<div
|
||||
style={{
|
||||
width: '60%',
|
||||
height: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
marginBottom: '6px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
width: '40%',
|
||||
height: '10px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
) : activity.length > 0 ? (
|
||||
<div className="widget-card" style={{ padding: '8px 16px' }}>
|
||||
{activity.map((item) => (
|
||||
<ActivityRow
|
||||
key={`${item.type}-${item.id}`}
|
||||
item={item}
|
||||
showDate
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
) : (
|
||||
<EmptyState
|
||||
icon={receiptOutline}
|
||||
title="No activity yet"
|
||||
description="Record the first credit or repayment for this customer."
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<IonAlert
|
||||
isOpen={showDeleteAlert}
|
||||
onDidDismiss={() => setShowDeleteAlert(false)}
|
||||
header="Delete Customer"
|
||||
message="Are you sure you want to delete this customer? All their credit and repayment history will be lost."
|
||||
buttons={[
|
||||
{ text: 'Cancel', role: 'cancel' },
|
||||
{ text: 'Delete', role: 'destructive', handler: handleDelete },
|
||||
]}
|
||||
/>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default CustomerDetailPage;
|
||||
@@ -0,0 +1,268 @@
|
||||
import React, { useState, useCallback, useMemo } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonIcon,
|
||||
IonSegmentButton,
|
||||
IonSearchbar,
|
||||
IonRefresher,
|
||||
IonRefresherContent,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import { personAddOutline, peopleOutline } from 'ionicons/icons';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { supabase } from '../supabase';
|
||||
import MetricCard from '../components/MetricCard';
|
||||
import CustomerRow from '../components/CustomerRow';
|
||||
import EmptyState from '../components/EmptyState';
|
||||
|
||||
interface CustomerWithBalance {
|
||||
id: string;
|
||||
name: string;
|
||||
phone: string | null;
|
||||
balance: number;
|
||||
}
|
||||
|
||||
const CustomersPage: React.FC = () => {
|
||||
const { user } = useAuth();
|
||||
const history = useHistory();
|
||||
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [customers, setCustomers] = useState<CustomerWithBalance[]>([]);
|
||||
const [searchQuery, setSearchQuery] = useState('');
|
||||
|
||||
const fetchData = useCallback(async () => {
|
||||
if (!user) return;
|
||||
setLoading(true);
|
||||
|
||||
try {
|
||||
const [
|
||||
{ data: customersData },
|
||||
{ data: creditsData },
|
||||
{ data: repaymentsData },
|
||||
] = await Promise.all([
|
||||
supabase
|
||||
.from('credit_customers')
|
||||
.select('*')
|
||||
.eq('user_id', user.id)
|
||||
.order('name'),
|
||||
supabase
|
||||
.from('credits')
|
||||
.select('customer_id, amount')
|
||||
.eq('user_id', user.id),
|
||||
supabase
|
||||
.from('repayments')
|
||||
.select('customer_id, amount')
|
||||
.eq('user_id', user.id),
|
||||
]);
|
||||
|
||||
const customerBalances: CustomerWithBalance[] = (customersData || []).map(
|
||||
(c) => {
|
||||
const totalCredits = (creditsData || [])
|
||||
.filter((cr) => cr.customer_id === c.id)
|
||||
.reduce((sum, cr) => sum + Number(cr.amount), 0);
|
||||
const totalRepayments = (repaymentsData || [])
|
||||
.filter((r) => r.customer_id === c.id)
|
||||
.reduce((sum, r) => sum + Number(r.amount), 0);
|
||||
return {
|
||||
id: c.id,
|
||||
name: c.name,
|
||||
phone: c.phone,
|
||||
balance: Math.max(0, totalCredits - totalRepayments),
|
||||
};
|
||||
},
|
||||
);
|
||||
|
||||
// Sort: outstanding balances first, then by name
|
||||
setCustomers(
|
||||
customerBalances.sort((a, b) => {
|
||||
if (a.balance > 0 && b.balance === 0) return -1;
|
||||
if (a.balance === 0 && b.balance > 0) return 1;
|
||||
return a.name.localeCompare(b.name);
|
||||
}),
|
||||
);
|
||||
} catch (err) {
|
||||
console.error('Error fetching customers:', err);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [user]);
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
fetchData();
|
||||
}, [fetchData]);
|
||||
|
||||
const handleRefresh = async (e: CustomEvent) => {
|
||||
await fetchData();
|
||||
e.detail.complete();
|
||||
};
|
||||
|
||||
const filteredCustomers = useMemo(() => {
|
||||
const query = searchQuery.toLowerCase().trim();
|
||||
if (!query) return customers;
|
||||
return customers.filter(
|
||||
(c) =>
|
||||
c.name.toLowerCase().includes(query) ||
|
||||
(c.phone && c.phone.toLowerCase().includes(query)),
|
||||
);
|
||||
}, [customers, searchQuery]);
|
||||
|
||||
const totalOutstanding = useMemo(() => {
|
||||
return customers.reduce((sum, c) => sum + c.balance, 0);
|
||||
}, [customers]);
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.35) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
<IonRefresher slot="fixed" onIonRefresh={handleRefresh}>
|
||||
<IonRefresherContent />
|
||||
</IonRefresher>
|
||||
|
||||
<div
|
||||
style={{
|
||||
padding: 'calc(16px + var(--ion-safe-area-top)) 20px 16px',
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<h1 className="bold" style={{ margin: '0', fontSize: '20px' }}>
|
||||
Credit customers
|
||||
</h1>
|
||||
<p className="secondary-text" style={{ margin: '0' }}>
|
||||
Track who owes your shop
|
||||
</p>
|
||||
</div>
|
||||
<div
|
||||
className="icon-container"
|
||||
style={{
|
||||
borderRadius: '12px',
|
||||
background: '#ffffff',
|
||||
color: 'var(--ion-color-primary)',
|
||||
}}
|
||||
onClick={() => history.push('/credit/new')}
|
||||
>
|
||||
<IonIcon icon={personAddOutline} style={{ fontSize: '22px' }} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="page-padding">
|
||||
<IonSearchbar
|
||||
value={searchQuery}
|
||||
onIonInput={(e) => setSearchQuery(e.detail.value!)}
|
||||
placeholder="Search customers"
|
||||
className="custom-searchbar"
|
||||
style={{
|
||||
'--background': 'var(--color-surface-secondary)',
|
||||
'--border-radius': '24px',
|
||||
'--box-shadow': 'none',
|
||||
padding: '0',
|
||||
height: '44px',
|
||||
marginBottom: '16px',
|
||||
}}
|
||||
/>
|
||||
|
||||
<MetricCard
|
||||
label="Total Outstanding"
|
||||
value={totalOutstanding}
|
||||
fullWidth
|
||||
loading={loading}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="section-header">
|
||||
<h2>
|
||||
Customers{' '}
|
||||
{!loading && (
|
||||
<span className="tertiary-text" style={{ marginLeft: '4px' }}>
|
||||
({customers.length})
|
||||
</span>
|
||||
)}
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div className="page-padding" style={{ paddingBottom: '120px' }}>
|
||||
{loading ? (
|
||||
<div className="widget-card" style={{ gap: '16px' }}>
|
||||
{[1, 2, 3].map((i) => (
|
||||
<div
|
||||
key={i}
|
||||
style={{ display: 'flex', gap: '12px', alignItems: 'center' }}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '44px',
|
||||
height: '44px',
|
||||
borderRadius: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
}}
|
||||
/>
|
||||
<div style={{ flex: 1 }}>
|
||||
<div
|
||||
style={{
|
||||
width: '50%',
|
||||
height: '14px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
marginBottom: '6px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
width: '30%',
|
||||
height: '10px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
) : customers.length > 0 ? (
|
||||
<>
|
||||
{filteredCustomers.length > 0 ? (
|
||||
<div className="widget-card" style={{ padding: '8px 16px' }}>
|
||||
{filteredCustomers.map((c) => (
|
||||
<CustomerRow
|
||||
key={c.id}
|
||||
id={c.id}
|
||||
name={c.name}
|
||||
phone={c.phone || undefined}
|
||||
balance={c.balance}
|
||||
onClick={() => history.push(`/customers/${c.id}`)}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
) : (
|
||||
<div style={{ textAlign: 'center', padding: '40px 20px' }}>
|
||||
<p className="secondary-text">
|
||||
No customers matching "{searchQuery}"
|
||||
</p>
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
) : (
|
||||
<EmptyState
|
||||
icon={peopleOutline}
|
||||
title="No credit customers yet"
|
||||
description="Add a credit sale to start tracking balances."
|
||||
actionText="Add Credit"
|
||||
onAction={() => history.push('/credit/new')}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default CustomersPage;
|
||||
@@ -1,376 +0,0 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonHeader,
|
||||
IonPage,
|
||||
IonTitle,
|
||||
IonToolbar,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonInput,
|
||||
IonTextarea,
|
||||
IonSelect,
|
||||
IonSelectOption,
|
||||
IonAlert,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import {
|
||||
chevronBackOutline,
|
||||
trashOutline,
|
||||
waterOutline,
|
||||
leafOutline,
|
||||
} from 'ionicons/icons';
|
||||
import {
|
||||
getDietEntries,
|
||||
addDietEntry,
|
||||
deleteDietEntry,
|
||||
clearDietEntries,
|
||||
getWellbeingSummary,
|
||||
} from '../services/localHealthStore';
|
||||
import { DietEntry, MealType, WellbeingSummary } from '../types/health';
|
||||
import HealthLogList from '../components/health/HealthLogList';
|
||||
import MetricMiniCard from '../components/health/MetricMiniCard';
|
||||
|
||||
const Diet: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const [entries, setEntries] = useState<DietEntry[]>([]);
|
||||
const [summary, setSummary] = useState<WellbeingSummary | null>(null);
|
||||
|
||||
const [mealType, setMealType] = useState<MealType | ''>('');
|
||||
const [waterCups, setWaterCups] = useState<string>('');
|
||||
const [produceServings, setProduceServings] = useState<string>('');
|
||||
const [notes, setNotes] = useState<string>('');
|
||||
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [showClearAlert, setShowClearAlert] = useState(false);
|
||||
|
||||
const refreshData = () => {
|
||||
setEntries(getDietEntries());
|
||||
setSummary(getWellbeingSummary());
|
||||
};
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
refreshData();
|
||||
});
|
||||
|
||||
const handleSave = () => {
|
||||
if (!mealType) {
|
||||
setError('Please select a meal type');
|
||||
setTimeout(() => setError(null), 4000);
|
||||
return;
|
||||
}
|
||||
|
||||
addDietEntry({
|
||||
mealType: mealType as MealType,
|
||||
waterCups: parseInt(waterCups) || 0,
|
||||
produceServings: parseInt(produceServings) || 0,
|
||||
notes,
|
||||
});
|
||||
|
||||
setMealType('');
|
||||
setWaterCups('');
|
||||
setProduceServings('');
|
||||
setNotes('');
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const handleDelete = (id: string) => {
|
||||
deleteDietEntry(id);
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const handleClear = () => {
|
||||
clearDietEntries();
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const mealTypes: MealType[] = ['Breakfast', 'Lunch', 'Dinner', 'Snack'];
|
||||
|
||||
return (
|
||||
<IonPage style={{ background: '#eef7fb' }}>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#eef7fb', '--color': '#1e3a5f' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle style={{ fontWeight: '700' }}>Diet</IonTitle>
|
||||
<IonButtons slot="end">
|
||||
{entries.length > 0 && (
|
||||
<IonButton onClick={() => setShowClearAlert(true)}>
|
||||
<IonIcon
|
||||
icon={trashOutline}
|
||||
slot="icon-only"
|
||||
style={{ opacity: 0.5 }}
|
||||
/>
|
||||
</IonButton>
|
||||
)}
|
||||
</IonButtons>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent
|
||||
style={{
|
||||
'--background': '#eef7fb',
|
||||
'--padding-start': '20px',
|
||||
'--padding-end': '20px',
|
||||
'--padding-top': '16px',
|
||||
}}
|
||||
>
|
||||
{/* Form Card */}
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '24px',
|
||||
marginBottom: '20px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '16px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{ fontSize: '18px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
Log today’s nutrition
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Meal Type
|
||||
</div>
|
||||
<IonSelect
|
||||
value={mealType}
|
||||
onIonChange={(e) => setMealType(e.detail.value)}
|
||||
interface="action-sheet"
|
||||
placeholder="Select a meal"
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--padding-end': '16px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
width: '100%',
|
||||
'--placeholder-color': 'rgba(30,58,95,0.38)',
|
||||
}}
|
||||
>
|
||||
{mealTypes.map((m) => (
|
||||
<IonSelectOption key={m} value={m}>
|
||||
{m}
|
||||
</IonSelectOption>
|
||||
))}
|
||||
</IonSelect>
|
||||
</div>
|
||||
|
||||
<div
|
||||
style={{
|
||||
display: 'grid',
|
||||
gridTemplateColumns: '1fr 1fr',
|
||||
gap: '12px',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Water (cups)
|
||||
</div>
|
||||
<IonInput
|
||||
type="text"
|
||||
inputMode="numeric"
|
||||
value={waterCups}
|
||||
onIonInput={(e) =>
|
||||
setWaterCups(e.detail.value!.replace(/[^0-9]/g, ''))
|
||||
}
|
||||
placeholder="0"
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Produce (servings)
|
||||
</div>
|
||||
<IonInput
|
||||
type="text"
|
||||
inputMode="numeric"
|
||||
value={produceServings}
|
||||
onIonInput={(e) =>
|
||||
setProduceServings(e.detail.value!.replace(/[^0-9]/g, ''))
|
||||
}
|
||||
placeholder="0"
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Notes
|
||||
</div>
|
||||
<IonTextarea
|
||||
value={notes}
|
||||
onIonInput={(e) => setNotes(e.detail.value!)}
|
||||
placeholder="Add more details..."
|
||||
rows={3}
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--padding-end': '16px',
|
||||
'--padding-top': '12px',
|
||||
'--padding-bottom': '12px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{error && (
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
color: '#dc2626',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
onClick={handleSave}
|
||||
style={{
|
||||
'--background': '#0369a1',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#ffffff',
|
||||
fontWeight: '700',
|
||||
height: '48px',
|
||||
marginTop: '8px',
|
||||
}}
|
||||
>
|
||||
Save diet log
|
||||
</IonButton>
|
||||
</div>
|
||||
|
||||
{/* Today Summary */}
|
||||
{summary && (
|
||||
<div
|
||||
style={{
|
||||
display: 'grid',
|
||||
gridTemplateColumns: '1fr 1fr',
|
||||
gap: '12px',
|
||||
marginBottom: '20px',
|
||||
}}
|
||||
>
|
||||
<MetricMiniCard
|
||||
label="Today's Water"
|
||||
value={summary.hydrationCups.toString()}
|
||||
helper="cups"
|
||||
progress={summary.hydrationCups / 8}
|
||||
icon={waterOutline}
|
||||
/>
|
||||
<MetricMiniCard
|
||||
label="Today's Produce"
|
||||
value={summary.produceServings.toString()}
|
||||
helper="servings"
|
||||
progress={summary.produceServings / 5}
|
||||
icon={leafOutline}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* History Section */}
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'baseline',
|
||||
margin: '0 0 12px',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{ fontSize: '17px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
History
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(30,58,95,0.40)',
|
||||
}}
|
||||
>
|
||||
{entries.length} logs
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<HealthLogList
|
||||
type="diet"
|
||||
entries={entries}
|
||||
onDelete={handleDelete}
|
||||
emptyTitle="No diet logs yet"
|
||||
emptyActionLabel="Log a meal"
|
||||
onEmptyAction={() => {}} // Form is already on page
|
||||
/>
|
||||
|
||||
<div style={{ height: '40px' }} />
|
||||
|
||||
<IonAlert
|
||||
isOpen={showClearAlert}
|
||||
onDidDismiss={() => setShowClearAlert(false)}
|
||||
header="Clear history?"
|
||||
message="This will delete all diet logs permanently."
|
||||
buttons={[
|
||||
{ text: 'Cancel', role: 'cancel' },
|
||||
{ text: 'Clear All', role: 'destructive', handler: handleClear },
|
||||
]}
|
||||
/>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default Diet;
|
||||
@@ -0,0 +1,162 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonInput,
|
||||
IonButton,
|
||||
IonSpinner,
|
||||
IonIcon,
|
||||
} from '@ionic/react';
|
||||
import { chevronBackOutline } from 'ionicons/icons';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
|
||||
const ForgotPasswordPage: React.FC = () => {
|
||||
const [email, setEmail] = useState('');
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
const [messageType, setMessageType] = useState<'error' | 'success'>('error');
|
||||
|
||||
const history = useHistory();
|
||||
|
||||
const showMessage = (msg: string, type: 'error' | 'success' = 'error') => {
|
||||
setMessage(msg);
|
||||
setMessageType(type);
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
};
|
||||
|
||||
const handleReset = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
if (!email) {
|
||||
showMessage('Please enter your email');
|
||||
return;
|
||||
}
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
const { error } = await supabase.auth.resetPasswordForEmail(email);
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
history.push('/verify-email', { email, type: 'recovery' });
|
||||
} catch (err: any) {
|
||||
showMessage(err.message || 'An error occurred');
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.52) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
<div className="auth-shell">
|
||||
<IonButton
|
||||
fill="clear"
|
||||
color="dark"
|
||||
onClick={() => history.push('/auth')}
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: 'calc(var(--ion-safe-area-top, 0px) + 8px)',
|
||||
left: '8px',
|
||||
'--padding-start': '8px',
|
||||
'--padding-end': '8px',
|
||||
zIndex: 10,
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
width: '44px',
|
||||
height: '44px',
|
||||
borderRadius: '12px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={chevronBackOutline} />
|
||||
</div>
|
||||
</IonButton>
|
||||
|
||||
<div style={{ marginTop: '80px' }}>
|
||||
<h1
|
||||
className="bold"
|
||||
style={{ fontSize: '24px', margin: '0 0 8px 0' }}
|
||||
>
|
||||
Reset password
|
||||
</h1>
|
||||
<p
|
||||
className="secondary-text"
|
||||
style={{ margin: '0', fontSize: '14px' }}
|
||||
>
|
||||
Enter your email and we'll send a 6-digit recovery code.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="auth-card">
|
||||
<form
|
||||
onSubmit={handleReset}
|
||||
style={{ display: 'flex', flexDirection: 'column', gap: '16px' }}
|
||||
>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
label="Email"
|
||||
labelPlacement="floating"
|
||||
type="email"
|
||||
placeholder="name@example.com"
|
||||
value={email}
|
||||
onIonChange={(e) => setEmail(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background:
|
||||
messageType === 'error'
|
||||
? 'var(--color-danger-soft)'
|
||||
: 'var(--color-success-soft)',
|
||||
color:
|
||||
messageType === 'error'
|
||||
? 'var(--ion-color-danger-shade)'
|
||||
: 'var(--ion-color-success-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
type="submit"
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '8px',
|
||||
}}
|
||||
disabled={submitting}
|
||||
>
|
||||
{submitting ? <IonSpinner name="crescent" /> : 'Send code'}
|
||||
</IonButton>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default ForgotPasswordPage;
|
||||
@@ -0,0 +1,339 @@
|
||||
import React, { useState, useCallback, useMemo } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonIcon,
|
||||
IonRefresher,
|
||||
IonRefresherContent,
|
||||
IonSegment,
|
||||
IonSegmentButton,
|
||||
IonLabel,
|
||||
IonActionSheet,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import {
|
||||
addOutline,
|
||||
receiptOutline,
|
||||
personAddOutline,
|
||||
cashOutline,
|
||||
} from 'ionicons/icons';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { supabase } from '../supabase';
|
||||
import ActivityRow, { ActivityItem } from '../components/ActivityRow';
|
||||
import EmptyState from '../components/EmptyState';
|
||||
import MetricCard from '../components/MetricCard';
|
||||
import { groupItemsByDate, formatRelativeDate } from '../utils/dates';
|
||||
|
||||
const HistoryPage: React.FC = () => {
|
||||
const { user } = useAuth();
|
||||
const history = useHistory();
|
||||
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [filter, setFilter] = useState<
|
||||
'all' | 'sales' | 'credit' | 'repayments'
|
||||
>('all');
|
||||
const [items, setItems] = useState<ActivityItem[]>([]);
|
||||
const [showQuickAdd, setShowQuickAdd] = useState(false);
|
||||
|
||||
const fetchData = useCallback(async () => {
|
||||
if (!user) return;
|
||||
setLoading(true);
|
||||
|
||||
try {
|
||||
const [
|
||||
{ data: salesData },
|
||||
{ data: creditsData },
|
||||
{ data: repaymentsData },
|
||||
] = await Promise.all([
|
||||
supabase
|
||||
.from('sales')
|
||||
.select('*')
|
||||
.eq('user_id', user.id)
|
||||
.order('sale_date', { ascending: false }),
|
||||
supabase
|
||||
.from('credits')
|
||||
.select('*, credit_customers(name)')
|
||||
.eq('user_id', user.id)
|
||||
.order('credit_date', { ascending: false }),
|
||||
supabase
|
||||
.from('repayments')
|
||||
.select('*, credit_customers(name)')
|
||||
.eq('user_id', user.id)
|
||||
.order('repayment_date', { ascending: false }),
|
||||
]);
|
||||
|
||||
const combined: ActivityItem[] = [
|
||||
...(salesData || []).map((s) => ({
|
||||
id: s.id,
|
||||
type: 'sale' as const,
|
||||
amount: Number(s.amount),
|
||||
date: s.sale_date,
|
||||
note: s.note,
|
||||
})),
|
||||
...(creditsData || []).map((c) => ({
|
||||
id: c.id,
|
||||
type: 'credit' as const,
|
||||
amount: Number(c.amount),
|
||||
date: c.credit_date,
|
||||
customerName: (c.credit_customers as any)?.name,
|
||||
note: c.description,
|
||||
customerId: c.customer_id,
|
||||
})),
|
||||
...(repaymentsData || []).map((r) => ({
|
||||
id: r.id,
|
||||
type: 'repayment' as const,
|
||||
amount: Number(r.amount),
|
||||
date: r.repayment_date,
|
||||
customerName: (r.credit_customers as any)?.name,
|
||||
note: r.note,
|
||||
customerId: r.customer_id,
|
||||
})),
|
||||
].sort((a, b) => b.date.localeCompare(a.date));
|
||||
|
||||
setItems(combined);
|
||||
} catch (err) {
|
||||
console.error('Error fetching history:', err);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [user]);
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
fetchData();
|
||||
}, [fetchData]);
|
||||
|
||||
const handleRefresh = async (e: CustomEvent) => {
|
||||
await fetchData();
|
||||
e.detail.complete();
|
||||
};
|
||||
|
||||
const filteredItems = useMemo(() => {
|
||||
if (filter === 'all') return items;
|
||||
if (filter === 'sales') return items.filter((i) => i.type === 'sale');
|
||||
if (filter === 'credit') return items.filter((i) => i.type === 'credit');
|
||||
if (filter === 'repayments')
|
||||
return items.filter((i) => i.type === 'repayment');
|
||||
return items;
|
||||
}, [items, filter]);
|
||||
|
||||
const groupedItems = useMemo(() => {
|
||||
return groupItemsByDate(filteredItems);
|
||||
}, [filteredItems]);
|
||||
|
||||
const totals = useMemo(() => {
|
||||
const salesTotal = items
|
||||
.filter((i) => i.type === 'sale')
|
||||
.reduce((sum, i) => sum + i.amount, 0);
|
||||
const repaymentsTotal = items
|
||||
.filter((i) => i.type === 'repayment')
|
||||
.reduce((sum, i) => sum + i.amount, 0);
|
||||
return { salesTotal, repaymentsTotal };
|
||||
}, [items]);
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.35) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
<IonRefresher slot="fixed" onIonRefresh={handleRefresh}>
|
||||
<IonRefresherContent />
|
||||
</IonRefresher>
|
||||
|
||||
<div
|
||||
style={{
|
||||
padding: 'calc(16px + var(--ion-safe-area-top)) 20px 16px',
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<h1 className="bold" style={{ margin: '0', fontSize: '20px' }}>
|
||||
History
|
||||
</h1>
|
||||
<p className="secondary-text" style={{ margin: '0' }}>
|
||||
All your transactions
|
||||
</p>
|
||||
</div>
|
||||
<div
|
||||
className="icon-container"
|
||||
style={{
|
||||
borderRadius: '12px',
|
||||
background: '#ffffff',
|
||||
color: 'var(--ion-color-primary)',
|
||||
}}
|
||||
onClick={() => setShowQuickAdd(true)}
|
||||
>
|
||||
<IonIcon icon={addOutline} style={{ fontSize: '22px' }} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="page-padding">
|
||||
<IonSegment
|
||||
value={filter}
|
||||
onIonChange={(e) => setFilter(e.detail.value as any)}
|
||||
style={{
|
||||
'--background': 'var(--color-surface-secondary)',
|
||||
borderRadius: '12px',
|
||||
padding: '4px',
|
||||
marginBottom: '16px',
|
||||
}}
|
||||
>
|
||||
<IonSegmentButton
|
||||
value="all"
|
||||
style={{
|
||||
'--indicator-color': 'var(--ion-color-primary)',
|
||||
color: 'var(--color-text-primary)',
|
||||
}}
|
||||
>
|
||||
<IonLabel className="semibold">All</IonLabel>
|
||||
</IonSegmentButton>
|
||||
<IonSegmentButton value="sales">
|
||||
<IonLabel className="semibold">Sales</IonLabel>
|
||||
</IonSegmentButton>
|
||||
<IonSegmentButton value="credit">
|
||||
<IonLabel className="semibold">Credit</IonLabel>
|
||||
</IonSegmentButton>
|
||||
<IonSegmentButton value="repayments">
|
||||
<IonLabel className="semibold">Paid</IonLabel>
|
||||
</IonSegmentButton>
|
||||
</IonSegment>
|
||||
|
||||
<div className="metric-pair-row">
|
||||
<MetricCard
|
||||
label="Total Sales"
|
||||
value={totals.salesTotal}
|
||||
loading={loading}
|
||||
/>
|
||||
<MetricCard
|
||||
label="Total Repaid"
|
||||
value={totals.repaymentsTotal}
|
||||
loading={loading}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
className="page-padding"
|
||||
style={{ paddingBottom: '120px', marginTop: '8px' }}
|
||||
>
|
||||
{loading ? (
|
||||
<div className="widget-card" style={{ gap: '16px' }}>
|
||||
{[1, 2, 3].map((i) => (
|
||||
<div
|
||||
key={i}
|
||||
style={{ display: 'flex', gap: '12px', alignItems: 'center' }}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
borderRadius: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
}}
|
||||
/>
|
||||
<div style={{ flex: 1 }}>
|
||||
<div
|
||||
style={{
|
||||
width: '60%',
|
||||
height: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
marginBottom: '6px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
width: '40%',
|
||||
height: '10px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
) : groupedItems.length > 0 ? (
|
||||
groupedItems.map((group) => (
|
||||
<div key={group.date} style={{ marginBottom: '20px' }}>
|
||||
<div className="tertiary-text" style={{ marginBottom: '12px' }}>
|
||||
{formatRelativeDate(group.date)}
|
||||
</div>
|
||||
<div className="widget-card" style={{ padding: '8px 16px' }}>
|
||||
{group.items.map((item) => (
|
||||
<ActivityRow
|
||||
key={`${item.type}-${item.id}`}
|
||||
item={item}
|
||||
onClick={
|
||||
item.customerId
|
||||
? () => history.push(`/customers/${item.customerId}`)
|
||||
: undefined
|
||||
}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
))
|
||||
) : (
|
||||
<EmptyState
|
||||
icon={receiptOutline}
|
||||
title={
|
||||
filter === 'all' ? 'No activity yet' : `No ${filter} found`
|
||||
}
|
||||
description={
|
||||
filter === 'all'
|
||||
? 'Start recording sales and credits to see your history.'
|
||||
: `You haven't recorded any ${filter} yet.`
|
||||
}
|
||||
actionText={
|
||||
filter === 'all' || filter === 'sales'
|
||||
? 'Add Sale'
|
||||
: filter === 'credit'
|
||||
? 'Add Credit'
|
||||
: 'Record Repayment'
|
||||
}
|
||||
onAction={() => {
|
||||
if (filter === 'sales' || filter === 'all')
|
||||
history.push('/sale/new');
|
||||
else if (filter === 'credit') history.push('/credit/new');
|
||||
else history.push('/repayment/new');
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<IonActionSheet
|
||||
isOpen={showQuickAdd}
|
||||
onDidDismiss={() => setShowQuickAdd(false)}
|
||||
header="Quick Actions"
|
||||
buttons={[
|
||||
{
|
||||
text: 'Add Sale',
|
||||
icon: receiptOutline,
|
||||
handler: () => history.push('/sale/new'),
|
||||
},
|
||||
{
|
||||
text: 'Add Credit',
|
||||
icon: personAddOutline,
|
||||
handler: () => history.push('/credit/new'),
|
||||
},
|
||||
{
|
||||
text: 'Record Repayment',
|
||||
icon: cashOutline,
|
||||
handler: () => history.push('/repayment/new'),
|
||||
},
|
||||
{ text: 'Cancel', role: 'cancel' },
|
||||
]}
|
||||
/>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default HistoryPage;
|
||||
+302
-184
@@ -1,239 +1,357 @@
|
||||
import React, { useState } from 'react';
|
||||
import React, { useState, useCallback } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonIcon,
|
||||
IonText,
|
||||
IonButton,
|
||||
IonActionSheet,
|
||||
IonRefresher,
|
||||
IonRefresherContent,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import {
|
||||
heartCircleOutline,
|
||||
medkitOutline,
|
||||
restaurantOutline,
|
||||
moonOutline,
|
||||
chevronForwardOutline,
|
||||
addCircleOutline,
|
||||
personAddOutline,
|
||||
cashOutline,
|
||||
receiptOutline,
|
||||
walletOutline,
|
||||
checkmarkCircleOutline,
|
||||
personCircleOutline,
|
||||
} from 'ionicons/icons';
|
||||
import WellbeingScoreCard from '../components/health/WellbeingScoreCard';
|
||||
import MetricMiniCard from '../components/health/MetricMiniCard';
|
||||
import RecentActivityList from '../components/health/RecentActivityList';
|
||||
import {
|
||||
getWellbeingSummary,
|
||||
getRecentActivity,
|
||||
} from '../services/localHealthStore';
|
||||
import { WellbeingSummary, ActivityEntry } from '../types/health';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { supabase } from '../supabase';
|
||||
import MetricCard from '../components/MetricCard';
|
||||
import ActivityRow, { ActivityItem } from '../components/ActivityRow';
|
||||
import EmptyState from '../components/EmptyState';
|
||||
import { getTodayISO } from '../utils/dates';
|
||||
|
||||
const Home: React.FC = () => {
|
||||
const { user, profile } = useAuth();
|
||||
const history = useHistory();
|
||||
const [summary, setSummary] = useState<WellbeingSummary>(
|
||||
getWellbeingSummary()
|
||||
);
|
||||
const [recentEntries, setRecentEntries] =
|
||||
useState<ActivityEntry[]>(getRecentActivity());
|
||||
|
||||
const refreshData = () => {
|
||||
setSummary(getWellbeingSummary());
|
||||
setRecentEntries(getRecentActivity());
|
||||
};
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
refreshData();
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [showQuickActions, setShowQuickActions] = useState(false);
|
||||
const [summary, setSummary] = useState({
|
||||
todaySales: 0,
|
||||
outstandingCredit: 0,
|
||||
monthRepayments: 0,
|
||||
recentActivity: [] as ActivityItem[],
|
||||
});
|
||||
|
||||
const fetchData = useCallback(async () => {
|
||||
if (!user) return;
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
|
||||
try {
|
||||
const today = getTodayISO();
|
||||
const firstOfMonth = new Date();
|
||||
firstOfMonth.setDate(1);
|
||||
const firstOfMonthISO = firstOfMonth.toISOString().split('T')[0];
|
||||
|
||||
// Parallel queries for efficiency
|
||||
const [
|
||||
{ data: salesToday },
|
||||
{ data: creditsData },
|
||||
{ data: repaymentsData },
|
||||
{ data: recentSales },
|
||||
{ data: recentCredits },
|
||||
{ data: recentRepayments },
|
||||
] = await Promise.all([
|
||||
supabase.from('sales').select('amount').eq('sale_date', today),
|
||||
supabase.from('credits').select('amount'),
|
||||
supabase.from('repayments').select('amount, repayment_date'),
|
||||
supabase
|
||||
.from('sales')
|
||||
.select('*')
|
||||
.order('created_at', { ascending: false })
|
||||
.limit(5),
|
||||
supabase
|
||||
.from('credits')
|
||||
.select('*, credit_customers(name)')
|
||||
.order('created_at', { ascending: false })
|
||||
.limit(5),
|
||||
supabase
|
||||
.from('repayments')
|
||||
.select('*, credit_customers(name)')
|
||||
.order('created_at', { ascending: false })
|
||||
.limit(5),
|
||||
]);
|
||||
|
||||
// Calculate totals
|
||||
const todaySalesTotal = (salesToday || []).reduce(
|
||||
(sum, s) => sum + Number(s.amount),
|
||||
0
|
||||
);
|
||||
const totalCredits = (creditsData || []).reduce(
|
||||
(sum, c) => sum + Number(c.amount),
|
||||
0
|
||||
);
|
||||
const totalRepayments = (repaymentsData || []).reduce(
|
||||
(sum, r) => sum + Number(r.amount),
|
||||
0
|
||||
);
|
||||
const monthRepaymentsTotal = (repaymentsData || [])
|
||||
.filter((r) => r.repayment_date >= firstOfMonthISO)
|
||||
.reduce((sum, r) => sum + Number(r.amount), 0);
|
||||
|
||||
// Combine activity
|
||||
const activity: ActivityItem[] = [
|
||||
...(recentSales || []).map((s) => ({
|
||||
id: s.id,
|
||||
type: 'sale' as const,
|
||||
amount: Number(s.amount),
|
||||
date: s.sale_date,
|
||||
note: s.note,
|
||||
})),
|
||||
...(recentCredits || []).map((c) => ({
|
||||
id: c.id,
|
||||
type: 'credit' as const,
|
||||
amount: Number(c.amount),
|
||||
date: c.credit_date,
|
||||
customerName: (c.credit_customers as any)?.name,
|
||||
note: c.description,
|
||||
customerId: c.customer_id,
|
||||
})),
|
||||
...(recentRepayments || []).map((r) => ({
|
||||
id: r.id,
|
||||
type: 'repayment' as const,
|
||||
amount: Number(r.amount),
|
||||
date: r.repayment_date,
|
||||
customerName: (r.credit_customers as any)?.name,
|
||||
note: r.note,
|
||||
customerId: r.customer_id,
|
||||
})),
|
||||
].sort((a, b) => b.id.localeCompare(a.id)); // Simplified sort for MVP, ideally use created_at
|
||||
|
||||
setSummary({
|
||||
todaySales: todaySalesTotal,
|
||||
outstandingCredit: Math.max(0, totalCredits - totalRepayments),
|
||||
monthRepayments: monthRepaymentsTotal,
|
||||
recentActivity: activity.slice(0, 10),
|
||||
});
|
||||
} catch (err: any) {
|
||||
console.error('Error fetching dashboard data:', err);
|
||||
setError('Could not load dashboard data');
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [user]);
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
fetchData();
|
||||
}, [fetchData]);
|
||||
|
||||
const handleRefresh = async (e: CustomEvent) => {
|
||||
await fetchData();
|
||||
e.detail.complete();
|
||||
};
|
||||
|
||||
const getGreeting = () => {
|
||||
const hour = new Date().getHours();
|
||||
if (hour < 12) return 'Good morning';
|
||||
if (hour < 17) return 'Good afternoon';
|
||||
return 'Good evening';
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage style={{ background: '#eef7fb' }}>
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(56,189,248,0.16) 0%, #eef7fb 58%, #f8fbfd 100%)',
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.45) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
{/* Top Content Row */}
|
||||
<IonRefresher slot="fixed" onIonRefresh={handleRefresh}>
|
||||
<IonRefresherContent />
|
||||
</IonRefresher>
|
||||
|
||||
<div
|
||||
style={{
|
||||
padding: 'calc(16px + var(--ion-safe-area-top)) 20px 12px',
|
||||
padding: 'calc(16px + var(--ion-safe-area-top)) 20px 16px',
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
gap: '12px',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<div className="secondary-text">{getGreeting()}</div>
|
||||
<h1 className="bold" style={{ margin: '0', fontSize: '20px' }}>
|
||||
{profile?.shop_name || profile?.full_name || 'My Shop'}
|
||||
</h1>
|
||||
</div>
|
||||
<div
|
||||
className="icon-container"
|
||||
style={{
|
||||
borderRadius: '999px',
|
||||
background: 'var(--color-accent-soft)',
|
||||
}}
|
||||
onClick={() => setShowQuickActions(true)}
|
||||
>
|
||||
<IonIcon icon={personCircleOutline} style={{ fontSize: '24px' }} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="page-padding">
|
||||
<MetricCard
|
||||
label="Today's Sales"
|
||||
value={summary.todaySales}
|
||||
fullWidth
|
||||
loading={loading}
|
||||
/>
|
||||
|
||||
<div className="metric-pair-row" style={{ marginTop: '12px' }}>
|
||||
<MetricCard
|
||||
label="Outstanding"
|
||||
value={summary.outstandingCredit}
|
||||
icon={walletOutline}
|
||||
loading={loading}
|
||||
/>
|
||||
<MetricCard
|
||||
label="Repaid (Month)"
|
||||
value={summary.monthRepayments}
|
||||
icon={checkmarkCircleOutline}
|
||||
loading={loading}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div
|
||||
className="pill-toggle"
|
||||
style={{ marginTop: '12px', background: '#ffffff', padding: '8px' }}
|
||||
>
|
||||
<IonButton
|
||||
fill="clear"
|
||||
className="bold"
|
||||
style={{
|
||||
flex: 1,
|
||||
fontSize: '13px',
|
||||
color: 'var(--color-text-primary)',
|
||||
}}
|
||||
onClick={() => history.push('/sale/new')}
|
||||
>
|
||||
<IonIcon icon={addCircleOutline} slot="start" />
|
||||
Add Sale
|
||||
</IonButton>
|
||||
<IonButton
|
||||
fill="clear"
|
||||
className="bold"
|
||||
style={{
|
||||
flex: 1,
|
||||
fontSize: '13px',
|
||||
color: 'var(--color-text-primary)',
|
||||
}}
|
||||
onClick={() => history.push('/credit/new')}
|
||||
>
|
||||
<IonIcon icon={personAddOutline} slot="start" />
|
||||
Credit
|
||||
</IonButton>
|
||||
<IonButton
|
||||
fill="clear"
|
||||
className="bold"
|
||||
style={{
|
||||
flex: 1,
|
||||
fontSize: '13px',
|
||||
color: 'var(--color-text-primary)',
|
||||
}}
|
||||
onClick={() => history.push('/repayment/new')}
|
||||
>
|
||||
<IonIcon icon={cashOutline} slot="start" />
|
||||
Repay
|
||||
</IonButton>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="section-header">
|
||||
<h2>Recent activity</h2>
|
||||
<span className="see-all" onClick={() => history.push('/history')}>
|
||||
See all
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div className="page-padding" style={{ paddingBottom: '120px' }}>
|
||||
{loading ? (
|
||||
<div className="widget-card" style={{ gap: '16px' }}>
|
||||
{[1, 2, 3].map((i) => (
|
||||
<div
|
||||
key={i}
|
||||
style={{ display: 'flex', gap: '12px', alignItems: 'center' }}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '40px',
|
||||
height: '40px',
|
||||
background: 'rgba(3,105,161,0.12)',
|
||||
borderRadius: '12px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
flexShrink: 0,
|
||||
background: 'var(--color-surface-secondary)',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={heartCircleOutline}
|
||||
style={{ fontSize: '22px', color: '#0369a1' }}
|
||||
/>
|
||||
</div>
|
||||
<div style={{ flex: 1 }}>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
lineHeight: '16px',
|
||||
width: '60%',
|
||||
height: '12px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
marginBottom: '6px',
|
||||
}}
|
||||
>
|
||||
Wellbeing
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '20px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
lineHeight: '24px',
|
||||
}}
|
||||
>
|
||||
Good morning
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '999px',
|
||||
padding: '8px 12px',
|
||||
fontSize: '12px',
|
||||
fontWeight: '700',
|
||||
color: '#0369a1',
|
||||
}}
|
||||
>
|
||||
Local
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Score Widget */}
|
||||
<WellbeingScoreCard
|
||||
score={summary.score}
|
||||
message={summary.scoreMessage}
|
||||
progress={summary.scoreProgress}
|
||||
/>
|
||||
|
||||
{/* Metric Row */}
|
||||
<div
|
||||
style={{
|
||||
margin: '0 20px 12px',
|
||||
display: 'grid',
|
||||
gridTemplateColumns: '1fr 1fr',
|
||||
gap: '12px',
|
||||
width: '40%',
|
||||
height: '10px',
|
||||
background: 'var(--color-surface-secondary)',
|
||||
borderRadius: '4px',
|
||||
}}
|
||||
>
|
||||
<MetricMiniCard
|
||||
label="Sleep"
|
||||
value={summary.sleepHours.toString()}
|
||||
helper="hrs"
|
||||
progress={summary.sleepHours / 8}
|
||||
icon={moonOutline}
|
||||
/>
|
||||
<MetricMiniCard
|
||||
label="Water"
|
||||
value={summary.hydrationCups.toString()}
|
||||
helper="cups"
|
||||
progress={summary.hydrationCups / 8}
|
||||
icon={restaurantOutline}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Action Strip */}
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
gap: '8px',
|
||||
overflowX: 'auto',
|
||||
padding: '0 20px 20px',
|
||||
msOverflowStyle: 'none',
|
||||
scrollbarWidth: 'none',
|
||||
}}
|
||||
>
|
||||
{[
|
||||
{ label: 'Checkup', icon: medkitOutline, path: '/checkups' },
|
||||
{ label: 'Diet', icon: restaurantOutline, path: '/diet' },
|
||||
{ label: 'Sleep', icon: moonOutline, path: '/sleep' },
|
||||
].map((action) => (
|
||||
<div
|
||||
key={action.label}
|
||||
onClick={() => history.push(action.path)}
|
||||
style={{
|
||||
flexShrink: 0,
|
||||
background: '#ffffff',
|
||||
borderRadius: '999px',
|
||||
padding: '10px 18px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '8px',
|
||||
minHeight: '44px',
|
||||
cursor: 'pointer',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={action.icon}
|
||||
style={{ fontSize: '18px', color: '#0369a1' }}
|
||||
/>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
>
|
||||
{action.label}
|
||||
</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{/* Section Header */}
|
||||
<div
|
||||
style={{
|
||||
margin: '4px 20px 12px',
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'baseline',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{ fontSize: '17px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
Recent Activity
|
||||
</span>
|
||||
<div
|
||||
onClick={() => history.push('/insights')}
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
gap: '2px',
|
||||
cursor: 'pointer',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{ fontSize: '13px', fontWeight: '700', color: '#0369a1' }}
|
||||
>
|
||||
See insights
|
||||
</span>
|
||||
<IonIcon
|
||||
icon={chevronForwardOutline}
|
||||
style={{ fontSize: '14px', color: '#0369a1' }}
|
||||
) : summary.recentActivity.length > 0 ? (
|
||||
<div className="widget-card" style={{ padding: '8px 16px' }}>
|
||||
{summary.recentActivity.map((item) => (
|
||||
<ActivityRow
|
||||
key={`${item.type}-${item.id}`}
|
||||
item={item}
|
||||
onClick={
|
||||
item.customerId
|
||||
? () => history.push(`/customers/${item.customerId}`)
|
||||
: undefined
|
||||
}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
) : (
|
||||
<EmptyState
|
||||
icon={receiptOutline}
|
||||
title="No activity yet"
|
||||
description="Record your first sale or credit to see it here."
|
||||
actionText="Add Sale"
|
||||
onAction={() => history.push('/sale/new')}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Recent Activity List */}
|
||||
<RecentActivityList
|
||||
entries={recentEntries}
|
||||
onCreate={() => history.push('/checkups')}
|
||||
onSeeInsights={() => history.push('/insights')}
|
||||
<IonActionSheet
|
||||
isOpen={showQuickActions}
|
||||
onDidDismiss={() => setShowQuickActions(false)}
|
||||
header="Settings"
|
||||
buttons={[
|
||||
{
|
||||
text: 'Sign Out',
|
||||
role: 'destructive',
|
||||
handler: () => {
|
||||
supabase.auth.signOut();
|
||||
},
|
||||
},
|
||||
{
|
||||
text: 'Cancel',
|
||||
role: 'cancel',
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
<div style={{ height: '20px' }} />
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
|
||||
@@ -1,204 +0,0 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonHeader,
|
||||
IonPage,
|
||||
IonTitle,
|
||||
IonToolbar,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonGrid,
|
||||
IonRow,
|
||||
IonCol,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import {
|
||||
chevronBackOutline,
|
||||
analyticsOutline,
|
||||
medkitOutline,
|
||||
restaurantOutline,
|
||||
moonOutline,
|
||||
} from 'ionicons/icons';
|
||||
import {
|
||||
getWellbeingSummary,
|
||||
calculateInsights,
|
||||
} from '../services/localHealthStore';
|
||||
import { WellbeingSummary, LocalInsight } from '../types/health';
|
||||
import {
|
||||
InsightSummaryCard,
|
||||
RecommendationList,
|
||||
} from '../components/health/InsightCards';
|
||||
|
||||
const Insights: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const [summary, setSummary] = useState<WellbeingSummary>(
|
||||
getWellbeingSummary()
|
||||
);
|
||||
const [insights, setInsights] = useState<LocalInsight[]>(calculateInsights());
|
||||
|
||||
const refreshData = () => {
|
||||
setSummary(getWellbeingSummary());
|
||||
setInsights(calculateInsights());
|
||||
};
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
refreshData();
|
||||
});
|
||||
|
||||
return (
|
||||
<IonPage style={{ background: '#eef7fb' }}>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#eef7fb', '--color': '#1e3a5f' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle style={{ fontWeight: '700' }}>Insights</IonTitle>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent
|
||||
style={{
|
||||
'--background': '#eef7fb',
|
||||
'--padding-start': '20px',
|
||||
'--padding-end': '20px',
|
||||
'--padding-top': '16px',
|
||||
}}
|
||||
>
|
||||
{insights.length > 0 ? (
|
||||
<>
|
||||
<InsightSummaryCard
|
||||
summary={summary}
|
||||
primaryInsight={insights[0]}
|
||||
/>
|
||||
|
||||
<div
|
||||
style={{
|
||||
margin: '24px 0 12px',
|
||||
fontSize: '17px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
>
|
||||
Habit Guidance
|
||||
</div>
|
||||
|
||||
<RecommendationList insights={insights} />
|
||||
</>
|
||||
) : (
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '40px 24px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
textAlign: 'center',
|
||||
marginTop: '20px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
width: '64px',
|
||||
height: '64px',
|
||||
borderRadius: '20px',
|
||||
background: 'rgba(3,105,161,0.06)',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
marginBottom: '20px',
|
||||
}}
|
||||
>
|
||||
<IonIcon
|
||||
icon={analyticsOutline}
|
||||
style={{ fontSize: '32px', color: 'rgba(3,105,161,0.30)' }}
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '18px',
|
||||
fontWeight: '700',
|
||||
color: '#1e3a5f',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Insights need a few logs first
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '14px',
|
||||
color: 'rgba(30,58,95,0.58)',
|
||||
lineHeight: '20px',
|
||||
marginBottom: '32px',
|
||||
}}
|
||||
>
|
||||
Add a checkup, meal, or sleep log to see personalized guidance
|
||||
based on your patterns.
|
||||
</div>
|
||||
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '12px',
|
||||
width: '100%',
|
||||
}}
|
||||
>
|
||||
<IonButton
|
||||
onClick={() => history.push('/checkups')}
|
||||
style={{
|
||||
'--background': '#0369a1',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#ffffff',
|
||||
fontWeight: '700',
|
||||
height: '48px',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={medkitOutline} slot="start" />
|
||||
Add Checkup
|
||||
</IonButton>
|
||||
<div style={{ display: 'flex', gap: '12px' }}>
|
||||
<IonButton
|
||||
onClick={() => history.push('/diet')}
|
||||
style={{
|
||||
flex: 1,
|
||||
'--background': '#e2f2f8',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#1e3a5f',
|
||||
fontWeight: '700',
|
||||
height: '48px',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={restaurantOutline} slot="start" />
|
||||
Diet
|
||||
</IonButton>
|
||||
<IonButton
|
||||
onClick={() => history.push('/sleep')}
|
||||
style={{
|
||||
flex: 1,
|
||||
'--background': '#e2f2f8',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#1e3a5f',
|
||||
fontWeight: '700',
|
||||
height: '48px',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={moonOutline} slot="start" />
|
||||
Sleep
|
||||
</IonButton>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div style={{ height: '40px' }} />
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default Insights;
|
||||
@@ -0,0 +1,180 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonInput,
|
||||
IonButton,
|
||||
IonSpinner,
|
||||
IonIcon,
|
||||
} from '@ionic/react';
|
||||
import { chevronBackOutline } from 'ionicons/icons';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
|
||||
const NewPasswordPage: React.FC = () => {
|
||||
const [password, setPassword] = useState('');
|
||||
const [confirmPassword, setConfirmPassword] = useState('');
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
|
||||
const history = useHistory();
|
||||
|
||||
const showMessage = (msg: string) => {
|
||||
setMessage(msg);
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
};
|
||||
|
||||
const handleUpdate = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
if (!password || !confirmPassword) {
|
||||
showMessage('Please fill in all fields');
|
||||
return;
|
||||
}
|
||||
|
||||
if (password.length < 6) {
|
||||
showMessage('Password must be at least 6 characters');
|
||||
return;
|
||||
}
|
||||
|
||||
if (password !== confirmPassword) {
|
||||
showMessage('Passwords do not match');
|
||||
return;
|
||||
}
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
const { error } = await supabase.auth.updateUser({ password });
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
history.push('/home');
|
||||
} catch (err: any) {
|
||||
showMessage(err.message || 'An error occurred');
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.52) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
<div className="auth-shell">
|
||||
<IonButton
|
||||
fill="clear"
|
||||
color="dark"
|
||||
onClick={() => history.push('/auth')}
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: 'calc(var(--ion-safe-area-top, 0px) + 8px)',
|
||||
left: '8px',
|
||||
'--padding-start': '8px',
|
||||
'--padding-end': '8px',
|
||||
zIndex: 10,
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
width: '44px',
|
||||
height: '44px',
|
||||
borderRadius: '12px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={chevronBackOutline} />
|
||||
</div>
|
||||
</IonButton>
|
||||
|
||||
<div style={{ marginTop: '80px' }}>
|
||||
<h1
|
||||
className="bold"
|
||||
style={{ fontSize: '24px', margin: '0 0 8px 0' }}
|
||||
>
|
||||
Create new password
|
||||
</h1>
|
||||
<p
|
||||
className="secondary-text"
|
||||
style={{ margin: '0', fontSize: '14px' }}
|
||||
>
|
||||
Set a strong password to protect your account.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="auth-card">
|
||||
<form
|
||||
onSubmit={handleUpdate}
|
||||
style={{ display: 'flex', flexDirection: 'column', gap: '16px' }}
|
||||
>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
label="New Password"
|
||||
labelPlacement="floating"
|
||||
type="password"
|
||||
placeholder="Min. 6 characters"
|
||||
value={password}
|
||||
onIonChange={(e) => setPassword(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
label="Confirm Password"
|
||||
labelPlacement="floating"
|
||||
type="password"
|
||||
placeholder="Repeat your password"
|
||||
value={confirmPassword}
|
||||
onIonChange={(e) => setConfirmPassword(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background: 'var(--color-danger-soft)',
|
||||
color: 'var(--ion-color-danger-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
type="submit"
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '8px',
|
||||
}}
|
||||
disabled={submitting}
|
||||
>
|
||||
{submitting ? (
|
||||
<IonSpinner name="crescent" />
|
||||
) : (
|
||||
'Update password'
|
||||
)}
|
||||
</IonButton>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default NewPasswordPage;
|
||||
@@ -0,0 +1,353 @@
|
||||
import React, { useState, useEffect, useMemo } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonHeader,
|
||||
IonToolbar,
|
||||
IonTitle,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonInput,
|
||||
IonTextarea,
|
||||
IonSpinner,
|
||||
IonLabel,
|
||||
IonSelect,
|
||||
IonSelectOption,
|
||||
} from '@ionic/react';
|
||||
import { chevronBackOutline } from 'ionicons/icons';
|
||||
import { useHistory, useLocation } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { getTodayISO } from '../utils/dates';
|
||||
import MoneyInput from '../components/MoneyInput';
|
||||
import { parseMoney, formatMoney } from '../utils/money';
|
||||
import EmptyState from '../components/EmptyState';
|
||||
|
||||
interface CustomerWithBalance {
|
||||
id: string;
|
||||
name: string;
|
||||
balance: number;
|
||||
}
|
||||
|
||||
const RepaymentFormPage: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const location = useLocation<{ customerId?: string }>();
|
||||
const { user, profile } = useAuth();
|
||||
const currency = profile?.currency || 'USD';
|
||||
|
||||
const [customers, setCustomers] = useState<CustomerWithBalance[]>([]);
|
||||
const [selectedCustomerId, setSelectedCustomerId] = useState<string>(
|
||||
location.state?.customerId || ''
|
||||
);
|
||||
const [amount, setAmount] = useState('');
|
||||
const [repaymentDate, setRepaymentDate] = useState(getTodayISO());
|
||||
const [note, setNote] = useState('');
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [loadingCustomers, setLoadingCustomers] = useState(true);
|
||||
const [errors, setErrors] = useState<Record<string, string>>({});
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
const fetchCustomersAndBalances = async () => {
|
||||
if (!user) return;
|
||||
try {
|
||||
const [
|
||||
{ data: customersData },
|
||||
{ data: creditsData },
|
||||
{ data: repaymentsData },
|
||||
] = await Promise.all([
|
||||
supabase
|
||||
.from('credit_customers')
|
||||
.select('id, name')
|
||||
.eq('user_id', user.id),
|
||||
supabase
|
||||
.from('credits')
|
||||
.select('customer_id, amount')
|
||||
.eq('user_id', user.id),
|
||||
supabase
|
||||
.from('repayments')
|
||||
.select('customer_id, amount')
|
||||
.eq('user_id', user.id),
|
||||
]);
|
||||
|
||||
const customerBalances: CustomerWithBalance[] = (
|
||||
customersData || []
|
||||
).map((c) => {
|
||||
const totalCredits = (creditsData || [])
|
||||
.filter((cr) => cr.customer_id === c.id)
|
||||
.reduce((sum, cr) => sum + Number(cr.amount), 0);
|
||||
const totalRepayments = (repaymentsData || [])
|
||||
.filter((r) => r.customer_id === c.id)
|
||||
.reduce((sum, r) => sum + Number(r.amount), 0);
|
||||
return {
|
||||
id: c.id,
|
||||
name: c.name,
|
||||
balance: Math.max(0, totalCredits - totalRepayments),
|
||||
};
|
||||
});
|
||||
|
||||
// Filter for customers with an outstanding balance
|
||||
const activeCustomers = customerBalances.filter((c) => c.balance > 0);
|
||||
setCustomers(activeCustomers);
|
||||
|
||||
// If a customer was passed in but has no balance, we should handle it
|
||||
if (
|
||||
selectedCustomerId &&
|
||||
!activeCustomers.find((c) => c.id === selectedCustomerId)
|
||||
) {
|
||||
setSelectedCustomerId('');
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Error fetching customers for repayment:', err);
|
||||
} finally {
|
||||
setLoadingCustomers(false);
|
||||
}
|
||||
};
|
||||
|
||||
fetchCustomersAndBalances();
|
||||
}, [user, selectedCustomerId]);
|
||||
|
||||
const selectedCustomer = useMemo(
|
||||
() => customers.find((c) => c.id === selectedCustomerId),
|
||||
[customers, selectedCustomerId]
|
||||
);
|
||||
|
||||
const validate = () => {
|
||||
const newErrors: Record<string, string> = {};
|
||||
const parsedAmount = parseMoney(amount);
|
||||
|
||||
if (!selectedCustomerId) {
|
||||
newErrors.customer = 'Please select a customer';
|
||||
} else if (selectedCustomer && parsedAmount > selectedCustomer.balance) {
|
||||
newErrors.amount = `Amount cannot exceed outstanding balance of ${formatMoney(
|
||||
selectedCustomer.balance,
|
||||
currency
|
||||
)}`;
|
||||
}
|
||||
|
||||
if (parsedAmount <= 0) {
|
||||
newErrors.amount = 'Amount must be greater than 0';
|
||||
}
|
||||
|
||||
if (!repaymentDate) {
|
||||
newErrors.date = 'Date is required';
|
||||
}
|
||||
|
||||
setErrors(newErrors);
|
||||
return Object.keys(newErrors).length === 0;
|
||||
};
|
||||
|
||||
const handleSave = async () => {
|
||||
if (!validate() || !user) return;
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
const { error } = await supabase.from('repayments').insert([
|
||||
{
|
||||
user_id: user.id,
|
||||
customer_id: selectedCustomerId,
|
||||
amount: parseMoney(amount),
|
||||
repayment_date: repaymentDate,
|
||||
note: note.trim() || null,
|
||||
},
|
||||
]);
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
history.goBack();
|
||||
} catch (err: any) {
|
||||
console.error('Error saving repayment:', err);
|
||||
setMessage(err.message || 'Could not save repayment');
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#f0f4ff' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton color="dark" onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle className="bold">Record repayment</IonTitle>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent className="ion-padding" style={{ '--background': '#f0f4ff' }}>
|
||||
{!loadingCustomers && customers.length === 0 ? (
|
||||
<EmptyState
|
||||
icon="wallet-outline"
|
||||
title="No outstanding credit"
|
||||
description="You don't have any customers with an outstanding balance right now."
|
||||
actionText="Add Credit"
|
||||
onAction={() => history.push('/credit/new')}
|
||||
/>
|
||||
) : (
|
||||
<div className="form-card">
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Select Customer
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonSelect
|
||||
interface="action-sheet"
|
||||
placeholder="Choose a customer"
|
||||
value={selectedCustomerId}
|
||||
onIonChange={(e) => setSelectedCustomerId(e.detail.value)}
|
||||
style={{ width: '100%' }}
|
||||
disabled={loadingCustomers}
|
||||
>
|
||||
{customers.map((c) => (
|
||||
<IonSelectOption key={c.id} value={c.id}>
|
||||
{c.name} ({formatMoney(c.balance, currency)})
|
||||
</IonSelectOption>
|
||||
))}
|
||||
</IonSelect>
|
||||
</div>
|
||||
{errors.customer && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{ fontSize: '12px', marginTop: '4px' }}
|
||||
>
|
||||
{errors.customer}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{selectedCustomer && (
|
||||
<div
|
||||
style={{
|
||||
background: 'rgba(99,102,241,0.10)',
|
||||
borderRadius: '12px',
|
||||
padding: '16px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '4px',
|
||||
}}
|
||||
>
|
||||
<span className="tertiary-text" style={{ fontSize: '10px' }}>
|
||||
OUTSTANDING BALANCE
|
||||
</span>
|
||||
<span
|
||||
className="bold tabular"
|
||||
style={{
|
||||
fontSize: '22px',
|
||||
color: 'var(--ion-color-primary)',
|
||||
}}
|
||||
>
|
||||
{formatMoney(selectedCustomer.balance, currency)}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<MoneyInput
|
||||
label="Repayment amount"
|
||||
value={amount}
|
||||
onValueChange={(val) => {
|
||||
setAmount(val);
|
||||
if (errors.amount) setErrors({ ...errors, amount: '' });
|
||||
}}
|
||||
error={errors.amount}
|
||||
/>
|
||||
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Repayment date
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
type="date"
|
||||
value={repaymentDate}
|
||||
onIonChange={(e) => setRepaymentDate(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
{errors.date && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{ fontSize: '12px', marginTop: '4px' }}
|
||||
>
|
||||
{errors.date}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Note (optional)
|
||||
</IonLabel>
|
||||
<div
|
||||
className="input-wrapper"
|
||||
style={{ minHeight: '96px', padding: '8px 16px' }}
|
||||
>
|
||||
<IonTextarea
|
||||
placeholder="e.g. Paid in full"
|
||||
value={note}
|
||||
onIonChange={(e) => setNote(e.detail.value!)}
|
||||
rows={4}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background: 'var(--color-danger-soft)',
|
||||
color: 'var(--ion-color-danger-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '16px',
|
||||
}}
|
||||
disabled={submitting || loadingCustomers}
|
||||
onClick={handleSave}
|
||||
>
|
||||
{submitting ? <IonSpinner name="crescent" /> : 'Save repayment'}
|
||||
</IonButton>
|
||||
</div>
|
||||
)}
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default RepaymentFormPage;
|
||||
@@ -0,0 +1,188 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonHeader,
|
||||
IonToolbar,
|
||||
IonTitle,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonInput,
|
||||
IonTextarea,
|
||||
IonSpinner,
|
||||
IonLabel,
|
||||
} from '@ionic/react';
|
||||
import { chevronBackOutline } from 'ionicons/icons';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
import { useAuth } from '../contexts/AuthContext';
|
||||
import { getTodayISO } from '../utils/dates';
|
||||
import MoneyInput from '../components/MoneyInput';
|
||||
import { parseMoney } from '../utils/money';
|
||||
|
||||
const SaleFormPage: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const { user } = useAuth();
|
||||
|
||||
const [amount, setAmount] = useState('');
|
||||
const [saleDate, setSaleDate] = useState(getTodayISO());
|
||||
const [note, setNote] = useState('');
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [errors, setErrors] = useState<Record<string, string>>({});
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
|
||||
const validate = () => {
|
||||
const newErrors: Record<string, string> = {};
|
||||
const parsedAmount = parseMoney(amount);
|
||||
|
||||
if (parsedAmount <= 0) {
|
||||
newErrors.amount = 'Amount must be greater than 0';
|
||||
}
|
||||
if (!saleDate) {
|
||||
newErrors.date = 'Date is required';
|
||||
}
|
||||
|
||||
setErrors(newErrors);
|
||||
return Object.keys(newErrors).length === 0;
|
||||
};
|
||||
|
||||
const handleSave = async () => {
|
||||
if (!validate() || !user) return;
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
const { error } = await supabase.from('sales').insert([
|
||||
{
|
||||
user_id: user.id,
|
||||
amount: parseMoney(amount),
|
||||
sale_date: saleDate,
|
||||
note: note.trim() || null,
|
||||
},
|
||||
]);
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
history.goBack();
|
||||
} catch (err: any) {
|
||||
console.error('Error saving sale:', err);
|
||||
setMessage(err.message || 'Could not save sale');
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#f0f4ff' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton color="dark" onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle className="bold">Add sale</IonTitle>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent className="ion-padding" style={{ '--background': '#f0f4ff' }}>
|
||||
<div className="form-card">
|
||||
<MoneyInput
|
||||
label="Sale amount"
|
||||
value={amount}
|
||||
onValueChange={(val) => {
|
||||
setAmount(val);
|
||||
if (errors.amount) setErrors({ ...errors, amount: '' });
|
||||
}}
|
||||
error={errors.amount}
|
||||
/>
|
||||
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Sale date
|
||||
</IonLabel>
|
||||
<div className="input-wrapper">
|
||||
<IonInput
|
||||
type="date"
|
||||
value={saleDate}
|
||||
onIonChange={(e) => setSaleDate(e.detail.value!)}
|
||||
/>
|
||||
</div>
|
||||
{errors.date && (
|
||||
<IonLabel
|
||||
color="danger"
|
||||
style={{ fontSize: '12px', marginTop: '4px' }}
|
||||
>
|
||||
{errors.date}
|
||||
</IonLabel>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="form-field">
|
||||
<IonLabel
|
||||
className="semibold"
|
||||
style={{
|
||||
marginBottom: '8px',
|
||||
display: 'block',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
Note (optional)
|
||||
</IonLabel>
|
||||
<div
|
||||
className="input-wrapper"
|
||||
style={{ minHeight: '96px', padding: '8px 16px' }}
|
||||
>
|
||||
<IonTextarea
|
||||
placeholder="e.g. Morning rush items"
|
||||
value={note}
|
||||
onIonChange={(e) => setNote(e.detail.value!)}
|
||||
rows={4}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background: 'var(--color-danger-soft)',
|
||||
color: 'var(--ion-color-danger-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '16px',
|
||||
}}
|
||||
disabled={submitting}
|
||||
onClick={handleSave}
|
||||
>
|
||||
{submitting ? <IonSpinner name="crescent" /> : 'Save sale'}
|
||||
</IonButton>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default SaleFormPage;
|
||||
@@ -1,351 +0,0 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonHeader,
|
||||
IonPage,
|
||||
IonTitle,
|
||||
IonToolbar,
|
||||
IonButtons,
|
||||
IonButton,
|
||||
IonIcon,
|
||||
IonInput,
|
||||
IonTextarea,
|
||||
IonAlert,
|
||||
useIonViewWillEnter,
|
||||
} from '@ionic/react';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { chevronBackOutline, trashOutline, moonOutline } from 'ionicons/icons';
|
||||
import {
|
||||
getSleepEntries,
|
||||
addSleepEntry,
|
||||
deleteSleepEntry,
|
||||
clearSleepEntries,
|
||||
} from '../services/localHealthStore';
|
||||
import { SleepEntry, SleepQuality } from '../types/health';
|
||||
import HealthLogList from '../components/health/HealthLogList';
|
||||
import SleepTrendCard from '../components/health/SleepTrendCard';
|
||||
|
||||
const Sleep: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const [entries, setEntries] = useState<SleepEntry[]>([]);
|
||||
|
||||
const [hours, setHours] = useState<string>('');
|
||||
const [quality, setQuality] = useState<SleepQuality | ''>('');
|
||||
const [interruptions, setInterruptions] = useState<string>('');
|
||||
const [notes, setNotes] = useState<string>('');
|
||||
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [showClearAlert, setShowClearAlert] = useState(false);
|
||||
|
||||
const refreshData = () => {
|
||||
setEntries(getSleepEntries());
|
||||
};
|
||||
|
||||
useIonViewWillEnter(() => {
|
||||
refreshData();
|
||||
});
|
||||
|
||||
const handleSave = () => {
|
||||
const hoursNum = parseFloat(hours);
|
||||
if (!hours || isNaN(hoursNum) || hoursNum <= 0) {
|
||||
setError('Please enter a valid sleep duration');
|
||||
setTimeout(() => setError(null), 4000);
|
||||
return;
|
||||
}
|
||||
if (!quality) {
|
||||
setError('Please select sleep quality');
|
||||
setTimeout(() => setError(null), 4000);
|
||||
return;
|
||||
}
|
||||
|
||||
addSleepEntry({
|
||||
hours: hoursNum,
|
||||
quality: quality as SleepQuality,
|
||||
interruptions: parseInt(interruptions) || 0,
|
||||
notes,
|
||||
});
|
||||
|
||||
setHours('');
|
||||
setQuality('');
|
||||
setInterruptions('');
|
||||
setNotes('');
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const handleDelete = (id: string) => {
|
||||
deleteSleepEntry(id);
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const handleClear = () => {
|
||||
clearSleepEntries();
|
||||
refreshData();
|
||||
};
|
||||
|
||||
const qualities: SleepQuality[] = ['Restful', 'Okay', 'Restless'];
|
||||
|
||||
return (
|
||||
<IonPage style={{ background: '#eef7fb' }}>
|
||||
<IonHeader className="ion-no-border">
|
||||
<IonToolbar style={{ '--background': '#eef7fb', '--color': '#1e3a5f' }}>
|
||||
<IonButtons slot="start">
|
||||
<IonButton onClick={() => history.goBack()}>
|
||||
<IonIcon icon={chevronBackOutline} slot="icon-only" />
|
||||
</IonButton>
|
||||
</IonButtons>
|
||||
<IonTitle style={{ fontWeight: '700' }}>Sleep</IonTitle>
|
||||
<IonButtons slot="end">
|
||||
{entries.length > 0 && (
|
||||
<IonButton onClick={() => setShowClearAlert(true)}>
|
||||
<IonIcon
|
||||
icon={trashOutline}
|
||||
slot="icon-only"
|
||||
style={{ opacity: 0.5 }}
|
||||
/>
|
||||
</IonButton>
|
||||
)}
|
||||
</IonButtons>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent
|
||||
style={{
|
||||
'--background': '#eef7fb',
|
||||
'--padding-start': '20px',
|
||||
'--padding-end': '20px',
|
||||
'--padding-top': '16px',
|
||||
}}
|
||||
>
|
||||
{/* Form Card */}
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
borderRadius: '24px',
|
||||
padding: '24px',
|
||||
marginBottom: '20px',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '16px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{ fontSize: '18px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
Record your sleep
|
||||
</div>
|
||||
|
||||
<div
|
||||
style={{
|
||||
display: 'grid',
|
||||
gridTemplateColumns: '1fr 1fr',
|
||||
gap: '12px',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Duration (hours)
|
||||
</div>
|
||||
<IonInput
|
||||
type="text"
|
||||
inputMode="decimal"
|
||||
value={hours}
|
||||
onIonInput={(e) => {
|
||||
const val = e.detail.value!.replace(/[^0-9.]/g, '');
|
||||
if ((val.match(/\./g) || []).length <= 1) setHours(val);
|
||||
}}
|
||||
placeholder="0.0"
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Interruptions
|
||||
</div>
|
||||
<IonInput
|
||||
type="text"
|
||||
inputMode="numeric"
|
||||
value={interruptions}
|
||||
onIonInput={(e) =>
|
||||
setInterruptions(e.detail.value!.replace(/[^0-9]/g, ''))
|
||||
}
|
||||
placeholder="0"
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '12px',
|
||||
}}
|
||||
>
|
||||
Quality
|
||||
</div>
|
||||
<div style={{ display: 'flex', gap: '8px' }}>
|
||||
{qualities.map((q) => (
|
||||
<div
|
||||
key={q}
|
||||
onClick={() => setQuality(q)}
|
||||
style={{
|
||||
padding: '10px 16px',
|
||||
borderRadius: '999px',
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
cursor: 'pointer',
|
||||
background: quality === q ? '#0369a1' : '#e2f2f8',
|
||||
color: quality === q ? '#ffffff' : '#1e3a5f',
|
||||
transition: 'all 0.2s ease',
|
||||
flex: 1,
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{q}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
fontWeight: '700',
|
||||
color: 'rgba(30,58,95,0.60)',
|
||||
marginBottom: '8px',
|
||||
}}
|
||||
>
|
||||
Notes
|
||||
</div>
|
||||
<IonTextarea
|
||||
value={notes}
|
||||
onIonInput={(e) => setNotes(e.detail.value!)}
|
||||
placeholder="Add more details..."
|
||||
rows={3}
|
||||
style={{
|
||||
'--background': '#f3f8fb',
|
||||
'--padding-start': '16px',
|
||||
'--padding-end': '16px',
|
||||
'--padding-top': '12px',
|
||||
'--padding-bottom': '12px',
|
||||
'--border-radius': '12px',
|
||||
fontSize: '14px',
|
||||
color: '#1e3a5f',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{error && (
|
||||
<div
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
color: '#dc2626',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
onClick={handleSave}
|
||||
style={{
|
||||
'--background': '#0369a1',
|
||||
'--border-radius': '999px',
|
||||
'--color': '#ffffff',
|
||||
fontWeight: '700',
|
||||
height: '48px',
|
||||
marginTop: '8px',
|
||||
}}
|
||||
>
|
||||
Save sleep log
|
||||
</IonButton>
|
||||
</div>
|
||||
|
||||
{/* Trend Widget */}
|
||||
<div style={{ marginBottom: '20px' }}>
|
||||
<SleepTrendCard entries={entries} />
|
||||
</div>
|
||||
|
||||
{/* History Section */}
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'baseline',
|
||||
margin: '0 0 12px',
|
||||
}}
|
||||
>
|
||||
<span
|
||||
style={{ fontSize: '17px', fontWeight: '700', color: '#1e3a5f' }}
|
||||
>
|
||||
History
|
||||
</span>
|
||||
<span
|
||||
style={{
|
||||
fontSize: '12px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(30,58,95,0.40)',
|
||||
}}
|
||||
>
|
||||
{entries.length} logs
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<HealthLogList
|
||||
type="sleep"
|
||||
entries={entries}
|
||||
onDelete={handleDelete}
|
||||
emptyTitle="No sleep logs yet"
|
||||
emptyActionLabel="Log sleep"
|
||||
onEmptyAction={() => {}} // Form is already on page
|
||||
/>
|
||||
|
||||
<div style={{ height: '40px' }} />
|
||||
|
||||
<IonAlert
|
||||
isOpen={showClearAlert}
|
||||
onDidDismiss={() => setShowClearAlert(false)}
|
||||
header="Clear history?"
|
||||
message="This will delete all sleep logs permanently."
|
||||
buttons={[
|
||||
{ text: 'Cancel', role: 'cancel' },
|
||||
{ text: 'Clear All', role: 'destructive', handler: handleClear },
|
||||
]}
|
||||
/>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default Sleep;
|
||||
@@ -0,0 +1,275 @@
|
||||
import React, { useState, useRef, useEffect } from 'react';
|
||||
import {
|
||||
IonContent,
|
||||
IonPage,
|
||||
IonInput,
|
||||
IonButton,
|
||||
IonSpinner,
|
||||
IonIcon,
|
||||
IonText,
|
||||
} from '@ionic/react';
|
||||
import { chevronBackOutline } from 'ionicons/icons';
|
||||
import { useHistory, useLocation } from 'react-router-dom';
|
||||
import { supabase } from '../supabase';
|
||||
|
||||
interface LocationState {
|
||||
email: string;
|
||||
type?: 'signup' | 'recovery';
|
||||
resent?: boolean;
|
||||
}
|
||||
|
||||
const VerifyEmailPage: React.FC = () => {
|
||||
const history = useHistory();
|
||||
const location = useLocation<LocationState>();
|
||||
const email = location.state?.email || '';
|
||||
const type = location.state?.type || 'signup';
|
||||
|
||||
const [digits, setDigits] = useState<string[]>(['', '', '', '', '', '']);
|
||||
const [submitting, setSubmitting] = useState(false);
|
||||
const [resending, setResending] = useState(false);
|
||||
const [cooldown, setCooldown] = useState(location.state?.resent ? 60 : 0);
|
||||
const [message, setMessage] = useState<string | null>(null);
|
||||
const [messageType, setMessageType] = useState<'error' | 'success'>('error');
|
||||
|
||||
const inputRefs = useRef<HTMLIonInputElement[]>([]);
|
||||
|
||||
useEffect(() => {
|
||||
if (cooldown > 0) {
|
||||
const timer = setInterval(() => {
|
||||
setCooldown((c) => c - 1);
|
||||
}, 1000);
|
||||
return () => clearInterval(timer);
|
||||
}
|
||||
}, [cooldown]);
|
||||
|
||||
const showMessage = (msg: string, type: 'error' | 'success' = 'error') => {
|
||||
setMessage(msg);
|
||||
setMessageType(type);
|
||||
setTimeout(() => setMessage(null), 4000);
|
||||
};
|
||||
|
||||
const handleDigitChange = (index: number, value: string) => {
|
||||
const newDigits = [...digits];
|
||||
// Only take the last character (for overwriting)
|
||||
const val = value.slice(-1);
|
||||
|
||||
if (val && !/^\d+$/.test(val)) return;
|
||||
|
||||
newDigits[index] = val;
|
||||
setDigits(newDigits);
|
||||
|
||||
if (val && index < 5) {
|
||||
inputRefs.current[index + 1]?.setFocus();
|
||||
}
|
||||
};
|
||||
|
||||
const handleKeyDown = (index: number, e: any) => {
|
||||
if (e.key === 'Backspace' && !digits[index] && index > 0) {
|
||||
inputRefs.current[index - 1]?.setFocus();
|
||||
}
|
||||
};
|
||||
|
||||
const handleVerify = async () => {
|
||||
const code = digits.join('');
|
||||
if (code.length < 6) {
|
||||
showMessage('Please enter the 6-digit code');
|
||||
return;
|
||||
}
|
||||
|
||||
setSubmitting(true);
|
||||
setMessage(null);
|
||||
|
||||
try {
|
||||
const { data, error } = await supabase.auth.verifyOtp({
|
||||
email,
|
||||
token: code,
|
||||
type: (type === 'recovery' ? 'recovery' : 'signup') as any,
|
||||
});
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
if (type === 'recovery') {
|
||||
history.push('/new-password');
|
||||
} else {
|
||||
history.push('/home');
|
||||
}
|
||||
} catch (err: any) {
|
||||
showMessage(err.message || 'Invalid or expired code');
|
||||
} finally {
|
||||
setSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
const handleResend = async () => {
|
||||
if (cooldown > 0) return;
|
||||
|
||||
setResending(true);
|
||||
try {
|
||||
const { error } = await supabase.auth.resend({
|
||||
type: (type === 'recovery' ? 'recovery' : 'signup') as any,
|
||||
email,
|
||||
});
|
||||
|
||||
if (error) throw error;
|
||||
|
||||
showMessage('A new code has been sent', 'success');
|
||||
setCooldown(60);
|
||||
} catch (err: any) {
|
||||
showMessage(err.message || 'Failed to resend code');
|
||||
} finally {
|
||||
setResending(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<IonPage>
|
||||
<IonContent
|
||||
fullscreen
|
||||
style={{
|
||||
'--background':
|
||||
'linear-gradient(160deg, rgba(199,210,254,0.52) 0%, #f0f4ff 58%, #f8fafc 100%)',
|
||||
}}
|
||||
>
|
||||
<div className="auth-shell">
|
||||
<IonButton
|
||||
fill="clear"
|
||||
color="dark"
|
||||
onClick={() => history.push('/auth')}
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: 'calc(var(--ion-safe-area-top, 0px) + 8px)',
|
||||
left: '8px',
|
||||
'--padding-start': '8px',
|
||||
'--padding-end': '8px',
|
||||
zIndex: 10,
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
background: '#ffffff',
|
||||
width: '44px',
|
||||
height: '44px',
|
||||
borderRadius: '12px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<IonIcon icon={chevronBackOutline} />
|
||||
</div>
|
||||
</IonButton>
|
||||
|
||||
<div style={{ marginTop: '80px' }}>
|
||||
<h1
|
||||
className="bold"
|
||||
style={{ fontSize: '24px', margin: '0 0 8px 0' }}
|
||||
>
|
||||
Verify your email
|
||||
</h1>
|
||||
<p
|
||||
className="secondary-text"
|
||||
style={{ margin: '0', fontSize: '14px' }}
|
||||
>
|
||||
We've sent a 6-digit code to <span className="bold">{email}</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="auth-card">
|
||||
<div
|
||||
style={{ display: 'flex', gap: '8px', justifyContent: 'center' }}
|
||||
>
|
||||
{digits.map((digit, i) => (
|
||||
<div
|
||||
key={i}
|
||||
style={{
|
||||
width: '44px',
|
||||
height: '52px',
|
||||
background: '#e8edf8',
|
||||
borderRadius: '12px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
}}
|
||||
>
|
||||
<IonInput
|
||||
ref={(el) => {
|
||||
inputRefs.current[i] = el!;
|
||||
}}
|
||||
value={digit}
|
||||
onIonInput={(e) => handleDigitChange(i, e.detail.value!)}
|
||||
onKeyDown={(e) => handleKeyDown(i, e)}
|
||||
type="text"
|
||||
inputMode="numeric"
|
||||
style={{
|
||||
textAlign: 'center',
|
||||
fontSize: '22px',
|
||||
fontWeight: '700',
|
||||
color: '#111827',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{message && (
|
||||
<div
|
||||
style={{
|
||||
background:
|
||||
messageType === 'error'
|
||||
? 'var(--color-danger-soft)'
|
||||
: 'var(--color-success-soft)',
|
||||
color:
|
||||
messageType === 'error'
|
||||
? 'var(--ion-color-danger-shade)'
|
||||
: 'var(--ion-color-success-shade)',
|
||||
padding: '12px',
|
||||
borderRadius: '12px',
|
||||
fontSize: '13px',
|
||||
textAlign: 'center',
|
||||
}}
|
||||
>
|
||||
{message}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<IonButton
|
||||
expand="block"
|
||||
className="bold"
|
||||
style={{
|
||||
height: '52px',
|
||||
'--border-radius': 'var(--radius-pill)',
|
||||
marginTop: '16px',
|
||||
}}
|
||||
disabled={submitting}
|
||||
onClick={handleVerify}
|
||||
>
|
||||
{submitting ? <IonSpinner name="crescent" /> : 'Verify code'}
|
||||
</IonButton>
|
||||
|
||||
<div style={{ textAlign: 'center', marginTop: '8px' }}>
|
||||
<IonText
|
||||
color={cooldown > 0 ? 'medium' : 'primary'}
|
||||
className="semibold"
|
||||
style={{
|
||||
fontSize: '13px',
|
||||
cursor: cooldown > 0 ? 'default' : 'pointer',
|
||||
}}
|
||||
onClick={handleResend}
|
||||
>
|
||||
{resending ? (
|
||||
<IonSpinner name="dots" />
|
||||
) : cooldown > 0 ? (
|
||||
`Resend in ${cooldown}s`
|
||||
) : (
|
||||
'Resend code'
|
||||
)}
|
||||
</IonText>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
);
|
||||
};
|
||||
|
||||
export default VerifyEmailPage;
|
||||
@@ -1,255 +0,0 @@
|
||||
import {
|
||||
Department,
|
||||
CohortAnalyticsSummary,
|
||||
AnalyticsResponse,
|
||||
TelemetryLog,
|
||||
AggregatedTrendPoint,
|
||||
} from '../../types/cohortHealth';
|
||||
import { getRawUsers, getRawTelemetry } from './dataStore';
|
||||
|
||||
/**
|
||||
* Enterprise Aggregation & Privacy Preservation Layer.
|
||||
*
|
||||
* DESIGN PRINCIPLE:
|
||||
* In a true Zero-Trust enterprise healthcare or corporate wellness deployment,
|
||||
* raw device telemetry (containing exact timestamps, high-frequency heart rates,
|
||||
* and device sleep signals) is considered highly sensitive.
|
||||
*
|
||||
* To guarantee absolute privacy:
|
||||
* 1. The client browser NEVER has access to raw database tables or individual-level records.
|
||||
* 2. Mathematical aggregations occur solely on the server-side.
|
||||
* 3. Cohort minimum sizes (k-anonymity) are programmatically enforced at the API boundary.
|
||||
* 4. Identification vectors are scrubbed using randomized keys and cryptographic hashes.
|
||||
*/
|
||||
|
||||
// MINIMUM COHORT SIZE (k-anonymity privacy floor)
|
||||
// If the selected cohort contains fewer than 5 individuals, the API refuses execution
|
||||
// to eliminate the possibility of an HR administrator identifying a specific employee's
|
||||
// biometric signals (e.g. recognizing a specific day's stress spike of a single engineer).
|
||||
const PRIVACY_FLOOR_LIMIT = 5;
|
||||
|
||||
export const getCohortAnalytics = (
|
||||
department: Department
|
||||
): AnalyticsResponse => {
|
||||
try {
|
||||
const allUsers = getRawUsers();
|
||||
const allTelemetry = getRawTelemetry();
|
||||
|
||||
// 1. Filter cohort members
|
||||
const cohortUsers = allUsers.filter((u) => u.department === department);
|
||||
const cohortSize = cohortUsers.length;
|
||||
|
||||
// --- PRIVACY GUARD: k-ANONYMITY ENFORCEMENT ---
|
||||
// In production, this prevents "differential attacks" where an attacker isolates
|
||||
// a department with 1 or 2 users to view their personal health metrics.
|
||||
if (cohortSize < PRIVACY_FLOOR_LIMIT) {
|
||||
return {
|
||||
success: false,
|
||||
errorCode: 'INSUFFICIENT_COHORT_SIZE',
|
||||
error: `Privacy Guard Refusal: Cohort '${department}' is too small.`,
|
||||
details: `Under strict privacy compliance (k-anonymity >= 5), we refuse aggregate telemetry queries for departments with fewer than ${PRIVACY_FLOOR_LIMIT} members (current cohort size: ${cohortSize}). This prevents re-identification risks.`,
|
||||
};
|
||||
}
|
||||
|
||||
if (cohortSize === 0 || allTelemetry.length === 0) {
|
||||
return {
|
||||
success: false,
|
||||
errorCode: 'NO_DATA',
|
||||
error: 'No active telemetry found.',
|
||||
details:
|
||||
'The system has no telemetry records on file. Seed the data generator to proceed.',
|
||||
};
|
||||
}
|
||||
|
||||
const cohortUserIds = new Set(cohortUsers.map((u) => u.id));
|
||||
|
||||
// 2. Filter telemetry logs for this cohort
|
||||
const cohortTelemetry = allTelemetry.filter((log) =>
|
||||
cohortUserIds.has(log.userId)
|
||||
);
|
||||
|
||||
// 3. Group telemetry logs by date to compute daily averages
|
||||
const telemetryByDate: Record<string, TelemetryLog[]> = {};
|
||||
cohortTelemetry.forEach((log) => {
|
||||
if (!telemetryByDate[log.date]) {
|
||||
telemetryByDate[log.date] = [];
|
||||
}
|
||||
telemetryByDate[log.date].push(log);
|
||||
});
|
||||
|
||||
// Sort dates chronologically
|
||||
const sortedDates = Object.keys(telemetryByDate).sort();
|
||||
|
||||
// Map to aggregated points
|
||||
const trends: AggregatedTrendPoint[] = sortedDates.map((date) => {
|
||||
const logs = telemetryByDate[date];
|
||||
const count = logs.length;
|
||||
|
||||
const sumSleep = logs.reduce((acc, l) => acc + l.sleepScore, 0);
|
||||
const sumStress = logs.reduce((acc, l) => acc + l.stressIndex, 0);
|
||||
const sumActive = logs.reduce((acc, l) => acc + l.activeMinutes, 0);
|
||||
|
||||
// Poor sleep: sleepScore < 60 (Clinical cutoff for disrupted restorative sleep)
|
||||
const poorSleepCount = logs.filter((l) => l.sleepScore < 60).length;
|
||||
// High stress: stressIndex >= 7 (Corresponds to low heart-rate variability / hyper-arousal)
|
||||
const highStressCount = logs.filter((l) => l.stressIndex >= 7).length;
|
||||
|
||||
return {
|
||||
date,
|
||||
avgSleepScore: parseFloat((sumSleep / count).toFixed(1)),
|
||||
avgStressIndex: parseFloat((sumStress / count).toFixed(1)),
|
||||
avgActiveMinutes: parseFloat((sumActive / count).toFixed(1)),
|
||||
poorSleepPercentage: parseFloat(
|
||||
((poorSleepCount / count) * 100).toFixed(0)
|
||||
),
|
||||
highStressPercentage: parseFloat(
|
||||
((highStressCount / count) * 100).toFixed(0)
|
||||
),
|
||||
cohortSize: count,
|
||||
};
|
||||
});
|
||||
|
||||
// 4. Compute overall statistics for the cohort
|
||||
const overallAvgSleep = parseFloat(
|
||||
(
|
||||
trends.reduce((acc, t) => acc + t.avgSleepScore, 0) / trends.length
|
||||
).toFixed(1)
|
||||
);
|
||||
const overallAvgStress = parseFloat(
|
||||
(
|
||||
trends.reduce((acc, t) => acc + t.avgStressIndex, 0) / trends.length
|
||||
).toFixed(1)
|
||||
);
|
||||
const overallAvgActive = parseFloat(
|
||||
(
|
||||
trends.reduce((acc, t) => acc + t.avgActiveMinutes, 0) / trends.length
|
||||
).toFixed(1)
|
||||
);
|
||||
|
||||
// 5. Generate dynamic insights and alert classification
|
||||
const insightData = analyzeTrendsAndGenerateInsight(trends, department);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
data: {
|
||||
department,
|
||||
trends,
|
||||
overallAvgSleep,
|
||||
overallAvgStress,
|
||||
overallAvgActive,
|
||||
cohortSize,
|
||||
insight: insightData.message,
|
||||
insightSeverity: insightData.severity,
|
||||
},
|
||||
};
|
||||
} catch (err: any) {
|
||||
return {
|
||||
success: false,
|
||||
error: 'Internal aggregate error.',
|
||||
details: err.message || 'An unknown aggregation error occurred.',
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Clinical analytics engine that reads aggregated trend lines to trigger enterprise alerts.
|
||||
* Identifies burnout markers, recovery indexes, and sedentary cycles.
|
||||
*/
|
||||
const analyzeTrendsAndGenerateInsight = (
|
||||
trends: AggregatedTrendPoint[],
|
||||
department: Department
|
||||
): {
|
||||
message: string;
|
||||
severity: 'success' | 'warning' | 'danger' | 'medium';
|
||||
} => {
|
||||
if (trends.length < 5) {
|
||||
return {
|
||||
message:
|
||||
'Monitoring active. Insufficient trend history to run statistical drift alerts.',
|
||||
severity: 'medium',
|
||||
};
|
||||
}
|
||||
|
||||
// Look at last 5 days vs the preceding days to find trends
|
||||
const halfLength = Math.floor(trends.length / 2);
|
||||
const olderTrend = trends.slice(0, halfLength);
|
||||
const newerTrend = trends.slice(halfLength);
|
||||
|
||||
const olderAvgStress =
|
||||
olderTrend.reduce((acc, t) => acc + t.avgStressIndex, 0) /
|
||||
olderTrend.length;
|
||||
const newerAvgStress =
|
||||
newerTrend.reduce((acc, t) => acc + t.avgStressIndex, 0) /
|
||||
newerTrend.length;
|
||||
|
||||
const olderAvgSleep =
|
||||
olderTrend.reduce((acc, t) => acc + t.avgSleepScore, 0) / olderTrend.length;
|
||||
const newerAvgSleep =
|
||||
newerTrend.reduce((acc, t) => acc + t.avgSleepScore, 0) / newerTrend.length;
|
||||
|
||||
const stressDeltaPct =
|
||||
((newerAvgStress - olderAvgStress) / olderAvgStress) * 100;
|
||||
const sleepDeltaPct = ((newerAvgSleep - olderAvgSleep) / olderAvgSleep) * 100;
|
||||
|
||||
// Engineering Burnout Anomaly check
|
||||
if (
|
||||
department === 'Engineering' &&
|
||||
stressDeltaPct > 12 &&
|
||||
sleepDeltaPct < -5
|
||||
) {
|
||||
return {
|
||||
message: `⚠️ COHORT ALERT: The Engineering division has experienced a ${Math.abs(stressDeltaPct).toFixed(0)}% increase in elevated stress markers and a ${Math.abs(sleepDeltaPct).toFixed(0)}% drop in restorative sleep over the last 7 days. Action Recommendation: High likelihood of workload burnout. Consider a meeting-light week or deploying wellness interventions.`,
|
||||
severity: 'danger',
|
||||
};
|
||||
}
|
||||
|
||||
// Sales Stress check
|
||||
if (department === 'Sales') {
|
||||
const weekendTrend = trends.filter((t) => {
|
||||
const day = new Date(t.date).getDay();
|
||||
return day === 0 || day === 6;
|
||||
});
|
||||
const weekdayTrend = trends.filter((t) => {
|
||||
const day = new Date(t.date).getDay();
|
||||
return day !== 0 && day !== 6;
|
||||
});
|
||||
|
||||
const wkStress =
|
||||
weekdayTrend.reduce((acc, t) => acc + t.avgStressIndex, 0) /
|
||||
Math.max(1, weekdayTrend.length);
|
||||
const weStress =
|
||||
weekendTrend.reduce((acc, t) => acc + t.avgStressIndex, 0) /
|
||||
Math.max(1, weekendTrend.length);
|
||||
|
||||
if (wkStress > weStress + 2.0) {
|
||||
return {
|
||||
message: `📊 Dynamic Cohort Insights: Sales telemetry displays high weekday stress peaks (${wkStress.toFixed(1)}/10) with healthy weekend decompression (${weStress.toFixed(1)}/10). Recommendation: Ensure micro-breaks are integrated during intensive mid-week sales sprints.`,
|
||||
severity: 'warning',
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// Operations physical health check
|
||||
if (department === 'Operations') {
|
||||
const avgActive =
|
||||
trends.reduce((acc, t) => acc + t.avgActiveMinutes, 0) / trends.length;
|
||||
if (avgActive > 70) {
|
||||
return {
|
||||
message: `🟢 Healthy Cohort Signal: Operations logs highly consistent physical engagement averaging ${avgActive.toFixed(0)} minutes of active cardiovascular telemetry daily. This correlates with stable stress metrics (${overallAverageStress(trends).toFixed(1)}/10).`,
|
||||
severity: 'success',
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// Default Fallback
|
||||
return {
|
||||
message: `📈 Baseline Trend Analysis: Biomarkers for ${department} are within normal enterprise tolerances. Sleep quality index is stable at ${overallAverageSleep(trends).toFixed(0)}/100, and sympathetic nervous activation indicates low-to-moderate occupational strain.`,
|
||||
severity: 'success',
|
||||
};
|
||||
};
|
||||
|
||||
const overallAverageStress = (trends: AggregatedTrendPoint[]) =>
|
||||
trends.reduce((acc, t) => acc + t.avgStressIndex, 0) / trends.length;
|
||||
|
||||
const overallAverageSleep = (trends: AggregatedTrendPoint[]) =>
|
||||
trends.reduce((acc, t) => acc + t.avgSleepScore, 0) / trends.length;
|
||||
@@ -1,39 +0,0 @@
|
||||
import { User, TelemetryLog } from '../../types/cohortHealth';
|
||||
|
||||
const STORAGE_KEY_USERS = 'cohorthealth_raw_users';
|
||||
const STORAGE_KEY_TELEMETRY = 'cohorthealth_raw_telemetry';
|
||||
|
||||
/**
|
||||
* Enterprise Data Architecture Mock Store.
|
||||
*
|
||||
* DESIGN BOUNDARY NOTE:
|
||||
* This represents the internal, firewalled raw telemetry database. In a production enterprise setting,
|
||||
* this database sits behind strict network VPC guidelines and is completely inaccessible
|
||||
* from public client applications or APIs.
|
||||
*
|
||||
* ONLY the anonymizer/aggregator microservice has secure read permissions to this store.
|
||||
* The client UI is programmatically blocked from calling any function in this file.
|
||||
*/
|
||||
|
||||
export const getRawUsers = (): User[] => {
|
||||
const data = localStorage.getItem(STORAGE_KEY_USERS);
|
||||
return data ? JSON.parse(data) : [];
|
||||
};
|
||||
|
||||
export const saveRawUsers = (users: User[]): void => {
|
||||
localStorage.setItem(STORAGE_KEY_USERS, JSON.stringify(users));
|
||||
};
|
||||
|
||||
export const getRawTelemetry = (): TelemetryLog[] => {
|
||||
const data = localStorage.getItem(STORAGE_KEY_TELEMETRY);
|
||||
return data ? JSON.parse(data) : [];
|
||||
};
|
||||
|
||||
export const saveRawTelemetry = (telemetry: TelemetryLog[]): void => {
|
||||
localStorage.setItem(STORAGE_KEY_TELEMETRY, JSON.stringify(telemetry));
|
||||
};
|
||||
|
||||
export const clearAllData = (): void => {
|
||||
localStorage.removeItem(STORAGE_KEY_USERS);
|
||||
localStorage.removeItem(STORAGE_KEY_TELEMETRY);
|
||||
};
|
||||
@@ -1,247 +0,0 @@
|
||||
import { User, TelemetryLog, Department } from '../../types/cohortHealth';
|
||||
import {
|
||||
getRawUsers,
|
||||
saveRawUsers,
|
||||
getRawTelemetry,
|
||||
saveRawTelemetry,
|
||||
} from './dataStore';
|
||||
|
||||
// In production, we would use a secure cryptographic hashing function like HMAC-SHA256
|
||||
// with a salt rotated daily, which completely obfuscates individual identities
|
||||
// before ingestion. This ensures zero PII (Personally Identifiable Information) enters the telemetry table.
|
||||
const generateSecureEmployeeHash = (
|
||||
index: number,
|
||||
department: string
|
||||
): string => {
|
||||
// Simple deterministic mockup of an anonymized secure employee token
|
||||
return `emp_hash_${department.toLowerCase().substring(0, 3)}_${(1000 + index).toString(16)}`;
|
||||
};
|
||||
|
||||
/**
|
||||
* Enterprise Telemetry Simulation Engine.
|
||||
*
|
||||
* Generates high-fidelity wearable telemetry logs for users across 3 corporate departments:
|
||||
* - Engineering (Injected Burnout Anomaly: 70% experience 14-day decline in sleep and spike in stress)
|
||||
* - Sales (High volatility, weekend recovery, elevated stress levels)
|
||||
* - Operations (Stable baseline, high physical activity, healthy sleep indicators)
|
||||
*/
|
||||
export const generateWorkforceData = (
|
||||
userCount: number = 100,
|
||||
forceReset = false
|
||||
): { users: User[]; logs: TelemetryLog[] } => {
|
||||
const existingUsers = getRawUsers();
|
||||
const existingLogs = getRawTelemetry();
|
||||
|
||||
if (existingUsers.length > 0 && existingLogs.length > 0 && !forceReset) {
|
||||
return { users: existingUsers, logs: existingLogs };
|
||||
}
|
||||
|
||||
const departments: Department[] = ['Engineering', 'Sales', 'Operations'];
|
||||
const users: User[] = [];
|
||||
|
||||
// Distribute users across departments
|
||||
// Engineering: 40%, Sales: 30%, Operations: 30%
|
||||
for (let i = 0; i < userCount; i++) {
|
||||
let dept: Department = 'Operations';
|
||||
if (i < userCount * 0.4) {
|
||||
dept = 'Engineering';
|
||||
} else if (i < userCount * 0.7) {
|
||||
dept = 'Sales';
|
||||
}
|
||||
|
||||
users.push({
|
||||
id: generateSecureEmployeeHash(i, dept),
|
||||
department: dept,
|
||||
joinedAt: new Date(Date.now() - 30 * 24 * 60 * 60 * 1000)
|
||||
.toISOString()
|
||||
.split('T')[0],
|
||||
});
|
||||
}
|
||||
|
||||
// Programmatically append exactly 3 Executive Board users to demonstrate
|
||||
// the Privacy Guard k-anonymity limit (< 5 users) refusing aggregate rendering.
|
||||
for (let i = 0; i < 3; i++) {
|
||||
users.push({
|
||||
id: generateSecureEmployeeHash(userCount + i, 'Executive Board'),
|
||||
department: 'Executive Board',
|
||||
joinedAt: new Date(Date.now() - 30 * 24 * 60 * 60 * 1000)
|
||||
.toISOString()
|
||||
.split('T')[0],
|
||||
});
|
||||
}
|
||||
|
||||
saveRawUsers(users);
|
||||
|
||||
// Generate 14 days of historical data for each user
|
||||
const logs: TelemetryLog[] = [];
|
||||
const today = new Date();
|
||||
|
||||
for (let dayOffset = 13; dayOffset >= 0; dayOffset--) {
|
||||
const currentDate = new Date(today);
|
||||
currentDate.setDate(today.getDate() - dayOffset);
|
||||
const dateStr = currentDate.toISOString().split('T')[0];
|
||||
|
||||
users.forEach((user, uIndex) => {
|
||||
logs.push(generateDailyLogForUser(user, uIndex, dateStr, dayOffset));
|
||||
});
|
||||
}
|
||||
|
||||
saveRawTelemetry(logs);
|
||||
|
||||
// Track current simulation day offset in localstorage so we can increment it during "Wearable Sync Pulse"
|
||||
localStorage.setItem('cohorthealth_sim_day_offset', '0');
|
||||
|
||||
return { users, logs };
|
||||
};
|
||||
|
||||
/**
|
||||
* Generates single-day wearable biomarkers with specific trends and injected anomalies.
|
||||
* @param dayOffset Days in the past (13 = 13 days ago, 0 = today)
|
||||
*/
|
||||
const generateDailyLogForUser = (
|
||||
user: User,
|
||||
userIndex: number,
|
||||
dateStr: string,
|
||||
dayOffset: number
|
||||
): TelemetryLog => {
|
||||
let sleepScore = 75;
|
||||
let stressIndex = 4;
|
||||
let activeMinutes = 45;
|
||||
|
||||
const isWeekend = isDateWeekend(dateStr);
|
||||
|
||||
if (user.department === 'Engineering') {
|
||||
// Burnout Anomaly injection: 70% of Engineering department experiences steady decline
|
||||
const affectedByAnomaly = userIndex % 10 < 7;
|
||||
|
||||
if (affectedByAnomaly) {
|
||||
// Linear decline of sleep score from dayOffset 13 to 0
|
||||
// dayOffset 13 (oldest) -> sleep starts high, stress starts normal
|
||||
// dayOffset 0 (newest) -> sleep drops low, stress spikes high
|
||||
const progression = (13 - dayOffset) / 13; // 0.0 to 1.0 over the 14 days
|
||||
|
||||
sleepScore = Math.round(76 - progression * 24 + (Math.random() * 8 - 4)); // Starts ~76, drops to ~52
|
||||
stressIndex = Math.round(
|
||||
3.5 + progression * 4.5 + (Math.random() * 1.5 - 0.75)
|
||||
); // Starts ~3.5, spikes to ~8.0
|
||||
activeMinutes = Math.round(
|
||||
50 - progression * 25 + (Math.random() * 15 - 7)
|
||||
); // Decline in physical activity
|
||||
} else {
|
||||
// 30% control group - remains relatively healthy
|
||||
sleepScore = Math.round(74 + (Math.random() * 12 - 6));
|
||||
stressIndex = Math.round(4.0 + (Math.random() * 2 - 1));
|
||||
activeMinutes = Math.round(45 + (Math.random() * 20 - 10));
|
||||
}
|
||||
} else if (user.department === 'Sales') {
|
||||
// Sales: High volatility. High weekdays stress, weekend recovery.
|
||||
if (isWeekend) {
|
||||
sleepScore = Math.round(80 + (Math.random() * 8 - 4));
|
||||
stressIndex = Math.round(3.0 + (Math.random() * 1.5 - 0.75));
|
||||
activeMinutes = Math.round(65 + (Math.random() * 30 - 15));
|
||||
} else {
|
||||
sleepScore = Math.round(68 + (Math.random() * 10 - 5));
|
||||
stressIndex = Math.round(6.2 + (Math.random() * 2.2 - 1.1));
|
||||
activeMinutes = Math.round(35 + (Math.random() * 15 - 7));
|
||||
}
|
||||
} else {
|
||||
// Operations: High active minutes, stable sleep and stress
|
||||
sleepScore = Math.round(75 + (Math.random() * 8 - 4));
|
||||
stressIndex = Math.round(3.8 + (Math.random() * 1.5 - 0.75));
|
||||
activeMinutes = Math.round(80 + (Math.random() * 30 - 15));
|
||||
|
||||
// Slight weekend boost
|
||||
if (isWeekend) {
|
||||
sleepScore += 4;
|
||||
stressIndex -= 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
// Bounds enforcement
|
||||
sleepScore = Math.max(0, Math.min(100, sleepScore));
|
||||
stressIndex = Math.max(1, Math.min(10, stressIndex));
|
||||
activeMinutes = Math.max(0, Math.min(180, activeMinutes));
|
||||
|
||||
return {
|
||||
id: `log_${user.id}_${dateStr}`,
|
||||
userId: user.id,
|
||||
date: dateStr,
|
||||
sleepScore,
|
||||
stressIndex,
|
||||
activeMinutes,
|
||||
};
|
||||
};
|
||||
|
||||
const isDateWeekend = (dateStr: string): boolean => {
|
||||
const day = new Date(dateStr).getDay();
|
||||
return day === 0 || day === 6; // Sunday or Saturday
|
||||
};
|
||||
|
||||
/**
|
||||
* Simulates a new wearable data synchronization event (typically run daily via worker threads).
|
||||
* Instantly appends another 24 hours of mock telemetry logs to the database for all users,
|
||||
* progressing the anomaly trends.
|
||||
*/
|
||||
export const triggerWearableSyncPulse = (): {
|
||||
success: boolean;
|
||||
dateSynced: string;
|
||||
recordCount: number;
|
||||
} => {
|
||||
const users = getRawUsers();
|
||||
const logs = getRawTelemetry();
|
||||
|
||||
if (users.length === 0 || logs.length === 0) {
|
||||
// Seed first if empty
|
||||
const { users: seededUsers, logs: seededLogs } = generateWorkforceData(
|
||||
100,
|
||||
true
|
||||
);
|
||||
return {
|
||||
success: true,
|
||||
dateSynced: new Date().toISOString().split('T')[0],
|
||||
recordCount: seededLogs.length,
|
||||
};
|
||||
}
|
||||
|
||||
// Determine what next date is
|
||||
let currentSimOffset = parseInt(
|
||||
localStorage.getItem('cohorthealth_sim_day_offset') || '0',
|
||||
10
|
||||
);
|
||||
currentSimOffset += 1; // Progress 1 day forward
|
||||
localStorage.setItem(
|
||||
'cohorthealth_sim_day_offset',
|
||||
currentSimOffset.toString()
|
||||
);
|
||||
|
||||
const today = new Date();
|
||||
const targetDate = new Date(today);
|
||||
targetDate.setDate(today.getDate() + currentSimOffset);
|
||||
const targetDateStr = targetDate.toISOString().split('T')[0];
|
||||
|
||||
const newLogs: TelemetryLog[] = [];
|
||||
users.forEach((user, uIndex) => {
|
||||
// Use negative dayOffset to simulate ongoing burnout/stable trends in generator
|
||||
// (the linear burnout continues trending slightly negative/tense)
|
||||
const mockOffset = -currentSimOffset;
|
||||
newLogs.push(
|
||||
generateDailyLogForUser(user, uIndex, targetDateStr, mockOffset)
|
||||
);
|
||||
});
|
||||
|
||||
const updatedLogs = [...logs, ...newLogs];
|
||||
saveRawTelemetry(updatedLogs);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
dateSynced: targetDateStr,
|
||||
recordCount: newLogs.length,
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Resets the local store completely and seeds fresh 14-day history.
|
||||
*/
|
||||
export const resetDatabase = (): void => {
|
||||
generateWorkforceData(100, true);
|
||||
};
|
||||
@@ -1,239 +0,0 @@
|
||||
import {
|
||||
CheckupEntry,
|
||||
DietEntry,
|
||||
SleepEntry,
|
||||
ActivityEntry,
|
||||
WellbeingSummary,
|
||||
LocalInsight,
|
||||
} from '../types/health';
|
||||
|
||||
const KEYS = {
|
||||
CHECKUPS: 'healthcare.checkups.v1',
|
||||
DIET: 'healthcare.diet.v1',
|
||||
SLEEP: 'healthcare.sleep.v1',
|
||||
};
|
||||
|
||||
// --- CRUD HELPERS ---
|
||||
|
||||
const getItems = <T,>(key: string): T[] => {
|
||||
const data = localStorage.getItem(key);
|
||||
return data ? JSON.parse(data) : [];
|
||||
};
|
||||
|
||||
const saveItems = <T,>(key: string, items: T[]): void => {
|
||||
localStorage.setItem(key, JSON.stringify(items));
|
||||
};
|
||||
|
||||
export const getCheckups = (): CheckupEntry[] =>
|
||||
getItems<CheckupEntry>(KEYS.CHECKUPS);
|
||||
export const addCheckup = (entry: Omit<CheckupEntry, 'id' | 'createdAt'>) => {
|
||||
const items = getCheckups();
|
||||
const newItem: CheckupEntry = {
|
||||
...entry,
|
||||
id: crypto.randomUUID(),
|
||||
createdAt: new Date().toISOString(),
|
||||
};
|
||||
saveItems(KEYS.CHECKUPS, [newItem, ...items]);
|
||||
};
|
||||
export const deleteCheckup = (id: string) => {
|
||||
const items = getCheckups().filter((i) => i.id !== id);
|
||||
saveItems(KEYS.CHECKUPS, items);
|
||||
};
|
||||
export const clearCheckups = () => saveItems(KEYS.CHECKUPS, []);
|
||||
|
||||
export const getDietEntries = (): DietEntry[] => getItems<DietEntry>(KEYS.DIET);
|
||||
export const addDietEntry = (entry: Omit<DietEntry, 'id' | 'createdAt'>) => {
|
||||
const items = getDietEntries();
|
||||
const newItem: DietEntry = {
|
||||
...entry,
|
||||
id: crypto.randomUUID(),
|
||||
createdAt: new Date().toISOString(),
|
||||
};
|
||||
saveItems(KEYS.DIET, [newItem, ...items]);
|
||||
};
|
||||
export const deleteDietEntry = (id: string) => {
|
||||
const items = getDietEntries().filter((i) => i.id !== id);
|
||||
saveItems(KEYS.DIET, items);
|
||||
};
|
||||
export const clearDietEntries = () => saveItems(KEYS.DIET, []);
|
||||
|
||||
export const getSleepEntries = (): SleepEntry[] =>
|
||||
getItems<SleepEntry>(KEYS.SLEEP);
|
||||
export const addSleepEntry = (entry: Omit<SleepEntry, 'id' | 'createdAt'>) => {
|
||||
const items = getSleepEntries();
|
||||
const newItem: SleepEntry = {
|
||||
...entry,
|
||||
id: crypto.randomUUID(),
|
||||
createdAt: new Date().toISOString(),
|
||||
};
|
||||
saveItems(KEYS.SLEEP, [newItem, ...items]);
|
||||
};
|
||||
export const deleteSleepEntry = (id: string) => {
|
||||
const items = getSleepEntries().filter((i) => i.id !== id);
|
||||
saveItems(KEYS.SLEEP, items);
|
||||
};
|
||||
export const clearSleepEntries = () => saveItems(KEYS.SLEEP, []);
|
||||
|
||||
// --- DASHBOARD HELPERS ---
|
||||
|
||||
export const getRecentActivity = (): ActivityEntry[] => {
|
||||
const checkups = getCheckups().map((i) => ({
|
||||
id: i.id,
|
||||
type: 'checkup' as const,
|
||||
date: i.createdAt,
|
||||
title: `Checkup: ${i.mood}`,
|
||||
subtitle: i.symptoms || 'No symptoms noted',
|
||||
}));
|
||||
const diet = getDietEntries().map((i) => ({
|
||||
id: i.id,
|
||||
type: 'diet' as const,
|
||||
date: i.createdAt,
|
||||
title: `${i.mealType} log`,
|
||||
subtitle: `${i.waterCups} cups water, ${i.produceServings} servings produce`,
|
||||
}));
|
||||
const sleep = getSleepEntries().map((i) => ({
|
||||
id: i.id,
|
||||
type: 'sleep' as const,
|
||||
date: i.createdAt,
|
||||
title: `Sleep: ${i.hours}h`,
|
||||
subtitle: `${i.quality} quality`,
|
||||
}));
|
||||
|
||||
return [...checkups, ...diet, ...sleep]
|
||||
.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime())
|
||||
.slice(0, 5);
|
||||
};
|
||||
|
||||
export const getWellbeingSummary = (): WellbeingSummary => {
|
||||
const today = new Date().toISOString().split('T')[0];
|
||||
const checkups = getCheckups();
|
||||
const diet = getDietEntries();
|
||||
const sleep = getSleepEntries();
|
||||
|
||||
const todayDiet = diet.filter((i) => i.createdAt.startsWith(today));
|
||||
const water = todayDiet.reduce((sum, i) => sum + i.waterCups, 0);
|
||||
const produce = todayDiet.reduce((sum, i) => sum + i.produceServings, 0);
|
||||
|
||||
const lastSleep = sleep[0];
|
||||
const lastCheckup = checkups[0];
|
||||
|
||||
// Simple score calculation (0-100)
|
||||
let score = 50;
|
||||
if (lastCheckup) {
|
||||
if (lastCheckup.mood === 'Great') score += 15;
|
||||
if (lastCheckup.mood === 'Low') score -= 10;
|
||||
if (lastCheckup.mood === 'Unwell') score -= 20;
|
||||
score += lastCheckup.energy / 10;
|
||||
}
|
||||
if (lastSleep) {
|
||||
if (lastSleep.hours >= 7 && lastSleep.hours <= 9) score += 10;
|
||||
if (lastSleep.quality === 'Restful') score += 5;
|
||||
}
|
||||
score += Math.min(water, 8); // +1 per cup up to 8
|
||||
score = Math.min(Math.max(score, 0), 100);
|
||||
|
||||
let message = 'Keep tracking to see your wellbeing score improve.';
|
||||
if (score > 80) message = "You're doing great! Keep up the healthy habits.";
|
||||
else if (score > 60)
|
||||
message = 'Good progress. Try adding more hydration today.';
|
||||
else if (score > 40)
|
||||
message = 'A bit low today. Make sure to get enough rest.';
|
||||
|
||||
return {
|
||||
score: Math.round(score),
|
||||
scoreMessage: message,
|
||||
scoreProgress: score / 100,
|
||||
sleepHours: lastSleep?.hours || 0,
|
||||
sleepQuality: lastSleep?.quality || 'N/A',
|
||||
hydrationCups: water,
|
||||
produceServings: produce,
|
||||
streakDays: calculateStreak([...checkups, ...diet, ...sleep]),
|
||||
};
|
||||
};
|
||||
|
||||
const calculateStreak = (entries: { createdAt: string }[]): number => {
|
||||
if (entries.length === 0) return 0;
|
||||
const dates = [...new Set(entries.map((e) => e.createdAt.split('T')[0]))]
|
||||
.sort()
|
||||
.reverse();
|
||||
|
||||
let streak = 0;
|
||||
let current = new Date();
|
||||
|
||||
for (const dateStr of dates) {
|
||||
const entryDate = new Date(dateStr);
|
||||
const diff = Math.floor(
|
||||
(current.getTime() - entryDate.getTime()) / (1000 * 3600 * 24)
|
||||
);
|
||||
|
||||
if (diff === 0 || diff === 1) {
|
||||
streak++;
|
||||
current = entryDate;
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return streak;
|
||||
};
|
||||
|
||||
// --- INSIGHT RULES ---
|
||||
|
||||
export const calculateInsights = (): LocalInsight[] => {
|
||||
const checkups = getCheckups();
|
||||
const diet = getDietEntries();
|
||||
const sleep = getSleepEntries();
|
||||
const insights: LocalInsight[] = [];
|
||||
|
||||
if (checkups.length === 0 && diet.length === 0 && sleep.length === 0)
|
||||
return [];
|
||||
|
||||
const lastSleep = sleep[0];
|
||||
if (lastSleep) {
|
||||
if (lastSleep.hours < 6) {
|
||||
insights.push({
|
||||
id: 'sleep-low',
|
||||
type: 'warning',
|
||||
title: 'Low sleep duration',
|
||||
body: 'You slept less than 6 hours. Consistent sleep is key for recovery.',
|
||||
icon: 'moonOutline',
|
||||
});
|
||||
} else if (lastSleep.hours >= 7) {
|
||||
insights.push({
|
||||
id: 'sleep-good',
|
||||
type: 'positive',
|
||||
title: 'Healthy sleep pattern',
|
||||
body: 'Great job getting over 7 hours of rest.',
|
||||
icon: 'checkmarkCircleOutline',
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
const today = new Date().toISOString().split('T')[0];
|
||||
const todayDiet = diet.filter((i) => i.createdAt.startsWith(today));
|
||||
const water = todayDiet.reduce((sum, i) => sum + i.waterCups, 0);
|
||||
|
||||
if (water < 4 && diet.length > 0) {
|
||||
insights.push({
|
||||
id: 'water-low',
|
||||
type: 'info',
|
||||
title: 'Boost hydration',
|
||||
body: 'Try to drink at least 8 cups of water daily for better energy.',
|
||||
icon: 'waterOutline',
|
||||
});
|
||||
}
|
||||
|
||||
const lowMoods = checkups
|
||||
.filter((c) => c.mood === 'Low' || c.mood === 'Unwell')
|
||||
.slice(0, 3);
|
||||
if (lowMoods.length >= 2) {
|
||||
insights.push({
|
||||
id: 'mood-warning',
|
||||
type: 'warning',
|
||||
title: 'Mood patterns',
|
||||
body: 'You recorded several low mood entries recently. Consider checking in with a friend.',
|
||||
icon: 'heartOutline',
|
||||
});
|
||||
}
|
||||
|
||||
return insights;
|
||||
};
|
||||
@@ -0,0 +1,7 @@
|
||||
import { createClient } from '@supabase/supabase-js';
|
||||
import type { Database } from './database.types';
|
||||
|
||||
export const supabase = createClient<Database>(
|
||||
'https://sxdbfylkgcfmsatqipli.supabase.co',
|
||||
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InN4ZGJmeWxrZ2NmbXNhdHFpcGxpIiwicm9sZSI6ImFub24iLCJpYXQiOjE3ODExMTI5NjcsImV4cCI6MjA5NjY4ODk2N30.8ZvpjRBskCIH3FFnOkWsxZCOwNMX5txinffgXMDinKI',
|
||||
);
|
||||
Vendored
+51
@@ -0,0 +1,51 @@
|
||||
// Ambient test globals for optional *.test.* files in the editor / tsc.
|
||||
// No test runner is installed in the template; stubs avoid spurious TS errors.
|
||||
|
||||
interface Matchers<R = void> {
|
||||
toBeDefined(): R;
|
||||
toBe(expected: unknown): R;
|
||||
toEqual(expected: unknown): R;
|
||||
toBeTruthy(): R;
|
||||
toBeFalsy(): R;
|
||||
toBeNull(): R;
|
||||
toContain(item: unknown): R;
|
||||
toHaveLength(length: number): R;
|
||||
toMatch(expected: string | RegExp): R;
|
||||
toThrow(expected?: string | RegExp | Error): R;
|
||||
not: Matchers<R>;
|
||||
}
|
||||
|
||||
interface Expect {
|
||||
<T = unknown>(actual: T): Matchers;
|
||||
}
|
||||
|
||||
declare const expect: Expect;
|
||||
|
||||
type TestCaseFn = (
|
||||
name: string,
|
||||
fn?: () => void | Promise<void>,
|
||||
timeout?: number,
|
||||
) => void;
|
||||
|
||||
declare const test: TestCaseFn;
|
||||
declare const it: TestCaseFn;
|
||||
declare const describe: TestCaseFn;
|
||||
|
||||
declare function beforeEach(fn: () => void | Promise<void>): void;
|
||||
declare function afterEach(fn: () => void | Promise<void>): void;
|
||||
declare function beforeAll(fn: () => void | Promise<void>): void;
|
||||
declare function afterAll(fn: () => void | Promise<void>): void;
|
||||
|
||||
declare module "@testing-library/react" {
|
||||
export function render(
|
||||
ui: unknown,
|
||||
options?: object,
|
||||
): {
|
||||
baseElement: Element;
|
||||
container: Element;
|
||||
unmount(): void;
|
||||
rerender(ui: unknown): void;
|
||||
};
|
||||
export const screen: Record<string, (...args: unknown[]) => Element>;
|
||||
export function cleanup(): void;
|
||||
}
|
||||
+266
-74
@@ -1,99 +1,291 @@
|
||||
/* Ionic CSS Variables — customise to match your app's brand */
|
||||
/* ShopKeep — Custom Palette & Shared Styles */
|
||||
:root {
|
||||
/** primary **/
|
||||
--ion-color-primary: #0369a1;
|
||||
--ion-color-primary-rgb: 3, 105, 161;
|
||||
/** ShopKeep Brand Palette **/
|
||||
--ion-color-primary: #6366f1;
|
||||
--ion-color-primary-rgb: 99, 102, 241;
|
||||
--ion-color-primary-contrast: #ffffff;
|
||||
--ion-color-primary-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-primary-shade: #035c8e;
|
||||
--ion-color-primary-tint: #1c78aa;
|
||||
--ion-color-primary-shade: #5759d4;
|
||||
--ion-color-primary-tint: #7375f2;
|
||||
|
||||
/** secondary **/
|
||||
--ion-color-secondary: #38bdf8;
|
||||
--ion-color-secondary-rgb: 56, 189, 248;
|
||||
--ion-color-secondary: #818cf8;
|
||||
--ion-color-secondary-rgb: 129, 140, 248;
|
||||
--ion-color-secondary-contrast: #ffffff;
|
||||
--ion-color-secondary-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-secondary-shade: #31a6da;
|
||||
--ion-color-secondary-tint: #4cc4f9;
|
||||
--ion-color-secondary-shade: #727bda;
|
||||
--ion-color-secondary-tint: #8e98f9;
|
||||
|
||||
/** tertiary **/
|
||||
--ion-color-tertiary: #1e3a5f;
|
||||
--ion-color-tertiary-rgb: 30, 58, 95;
|
||||
--ion-color-tertiary-contrast: #ffffff;
|
||||
--ion-color-tertiary-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-tertiary-shade: #1a3353;
|
||||
--ion-color-tertiary-tint: #354e6f;
|
||||
--ion-color-tertiary: #c7d2fe;
|
||||
--ion-color-tertiary-rgb: 199, 210, 254;
|
||||
--ion-color-tertiary-contrast: #111827;
|
||||
--ion-color-tertiary-contrast-rgb: 17, 24, 39;
|
||||
--ion-color-tertiary-shade: #afb9e0;
|
||||
--ion-color-tertiary-tint: #cdd7fe;
|
||||
|
||||
/** success **/
|
||||
--ion-color-success: #2dd36f;
|
||||
--ion-color-success-rgb: 45, 211, 111;
|
||||
--ion-color-success: #3aa67a;
|
||||
--ion-color-success-rgb: 58, 166, 122;
|
||||
--ion-color-success-contrast: #ffffff;
|
||||
--ion-color-success-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-success-shade: #28ba62;
|
||||
--ion-color-success-tint: #42d77d;
|
||||
--ion-color-success-shade: #33926b;
|
||||
--ion-color-success-tint: #4eb088;
|
||||
|
||||
/** warning **/
|
||||
--ion-color-warning: #ffc409;
|
||||
--ion-color-warning-rgb: 255, 196, 9;
|
||||
--ion-color-warning-contrast: #000000;
|
||||
--ion-color-warning-contrast-rgb: 0, 0, 0;
|
||||
--ion-color-warning-shade: #e0ad08;
|
||||
--ion-color-warning-tint: #ffca22;
|
||||
|
||||
/** danger **/
|
||||
--ion-color-danger: #eb445a;
|
||||
--ion-color-danger-rgb: 235, 68, 90;
|
||||
--ion-color-danger: #cf6679;
|
||||
--ion-color-danger-rgb: 207, 102, 121;
|
||||
--ion-color-danger-contrast: #ffffff;
|
||||
--ion-color-danger-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-danger-shade: #cf3c4f;
|
||||
--ion-color-danger-tint: #ed576b;
|
||||
--ion-color-danger-shade: #b65a6a;
|
||||
--ion-color-danger-tint: #d57587;
|
||||
|
||||
/** dark **/
|
||||
--ion-color-dark: #222428;
|
||||
--ion-color-dark-rgb: 34, 36, 40;
|
||||
--ion-color-dark-contrast: #ffffff;
|
||||
--ion-color-dark-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-dark-shade: #1e2023;
|
||||
--ion-color-dark-tint: #383a3e;
|
||||
--ion-color-light: #f3f5fb;
|
||||
--ion-color-light-rgb: 243, 245, 251;
|
||||
--ion-color-light-contrast: #111827;
|
||||
--ion-color-light-contrast-rgb: 17, 24, 39;
|
||||
--ion-color-light-shade: #d6d8dd;
|
||||
--ion-color-light-tint: #f4f6fb;
|
||||
|
||||
/** medium **/
|
||||
--ion-color-medium: #92949c;
|
||||
--ion-color-medium-rgb: 146, 148, 156;
|
||||
--ion-color-medium-contrast: #ffffff;
|
||||
--ion-color-medium-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-medium-shade: #808289;
|
||||
--ion-color-medium-tint: #9d9fa6;
|
||||
/** App Custom Tokens **/
|
||||
--color-bg: #f0f4ff;
|
||||
--color-surface: #ffffff;
|
||||
--color-surface-secondary: #e8edf8;
|
||||
--color-text-primary: #111827;
|
||||
--color-text-secondary: rgba(17, 24, 39, 0.6);
|
||||
--color-text-tertiary: rgba(17, 24, 39, 0.38);
|
||||
--color-accent-soft: rgba(99, 102, 241, 0.18);
|
||||
--color-success-soft: rgba(58, 166, 122, 0.12);
|
||||
--color-danger-soft: rgba(207, 102, 121, 0.12);
|
||||
|
||||
/** light **/
|
||||
--ion-color-light: #f4f5f8;
|
||||
--ion-color-light-rgb: 244, 245, 248;
|
||||
--ion-color-light-contrast: #000000;
|
||||
--ion-color-light-contrast-rgb: 0, 0, 0;
|
||||
--ion-color-light-shade: #d7d8da;
|
||||
--ion-color-light-tint: #f5f6f9;
|
||||
/** Radii **/
|
||||
--radius-pill: 999px;
|
||||
--radius-card: 24px;
|
||||
--radius-inner: 12px;
|
||||
|
||||
/* Custom Background */
|
||||
--color-bg: #eef7fb;
|
||||
--ion-background-color: #eef7fb;
|
||||
--ion-background-color-rgb: 238, 247, 251;
|
||||
--ion-text-color: #1e3a5f;
|
||||
--ion-text-color-rgb: 30, 58, 95;
|
||||
/** Typography **/
|
||||
--font-tabular: 'SF Mono', 'Roboto Mono', Menlo, monospace;
|
||||
}
|
||||
|
||||
/*
|
||||
* App-wide styles
|
||||
*/
|
||||
* {
|
||||
body {
|
||||
background: var(--color-bg);
|
||||
color: var(--color-text-primary);
|
||||
font-family:
|
||||
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
|
||||
sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
||||
-apple-system, BlinkMacSystemFont, 'Inter', Roboto, Helvetica, Arial,
|
||||
sans-serif;
|
||||
}
|
||||
|
||||
ion-content {
|
||||
--background: var(--color-bg);
|
||||
/** Shared Auth Styles **/
|
||||
.auth-shell {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24px;
|
||||
padding: calc(var(--ion-safe-area-top, 0px) + 18px) 20px
|
||||
calc(var(--ion-safe-area-bottom, 0px) + 28px);
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
ion-toolbar {
|
||||
--background: var(--color-bg);
|
||||
--color: #1e3a5f;
|
||||
.auth-card {
|
||||
background: var(--color-surface);
|
||||
border-radius: var(--radius-card);
|
||||
padding: 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
/** Shared Form Styles **/
|
||||
.form-card {
|
||||
background: var(--color-surface);
|
||||
border-radius: var(--radius-card);
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.form-field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.input-wrapper {
|
||||
background: var(--color-surface-secondary);
|
||||
border-radius: var(--radius-inner);
|
||||
padding: 0 16px;
|
||||
min-height: 52px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.input-wrapper ion-input,
|
||||
.input-wrapper ion-textarea,
|
||||
.input-wrapper ion-select {
|
||||
--padding-start: 0;
|
||||
--padding-end: 0;
|
||||
--placeholder-color: var(--color-text-tertiary);
|
||||
--placeholder-opacity: 1;
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.money-input-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/** Widget Styles **/
|
||||
.widget-card {
|
||||
background: var(--color-surface);
|
||||
border-radius: var(--radius-card);
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.metric-pair-row {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.metric-pair-row .widget-card {
|
||||
flex: 1;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.skeleton-text {
|
||||
animation: skeleton-loading 1s linear infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes skeleton-loading {
|
||||
0% {
|
||||
background-color: var(--color-surface-secondary);
|
||||
opacity: 0.5;
|
||||
}
|
||||
100% {
|
||||
background-color: var(--color-surface-secondary);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/** Icon Containers **/
|
||||
.icon-container {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: var(--radius-inner);
|
||||
background: var(--color-accent-soft);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
color: var(--ion-color-primary);
|
||||
}
|
||||
|
||||
.icon-container ion-icon {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
/** Tab Bar Styling **/
|
||||
ion-tab-bar {
|
||||
--background: var(--color-surface);
|
||||
--border-width: 0;
|
||||
height: calc(64px + var(--ion-safe-area-bottom));
|
||||
padding-bottom: var(--ion-safe-area-bottom);
|
||||
border-top-left-radius: var(--radius-card);
|
||||
border-top-right-radius: var(--radius-card);
|
||||
box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
ion-tab-button {
|
||||
--color: var(--color-text-tertiary);
|
||||
--color-selected: var(--ion-color-primary);
|
||||
}
|
||||
|
||||
ion-tab-button ion-label {
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
ion-tab-button ion-icon {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
/** Generic Utilities **/
|
||||
.tabular {
|
||||
font-family: var(--font-tabular);
|
||||
}
|
||||
|
||||
.semibold {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.tertiary-text {
|
||||
color: var(--color-text-tertiary);
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.05em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.secondary-text {
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.pill-toggle {
|
||||
background: var(--color-surface-secondary);
|
||||
border-radius: var(--radius-pill);
|
||||
display: flex;
|
||||
padding: 4px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.pill-toggle-btn {
|
||||
flex: 1;
|
||||
border-radius: var(--radius-pill);
|
||||
height: 36px;
|
||||
border: none;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--color-text-secondary);
|
||||
background: transparent;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.pill-toggle-btn.active {
|
||||
background: var(--ion-color-primary);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/** Page Spacing **/
|
||||
.page-padding {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 24px 20px 12px;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
margin: 0;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.section-header .see-all {
|
||||
color: var(--ion-color-primary);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/** Custom Searchbar **/
|
||||
.custom-searchbar {
|
||||
--padding-start: 0;
|
||||
--padding-end: 0;
|
||||
}
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
export type Department =
|
||||
| 'Engineering'
|
||||
| 'Sales'
|
||||
| 'Operations'
|
||||
| 'Executive Board';
|
||||
|
||||
export interface User {
|
||||
id: string; // Securely generated hash in production
|
||||
department: Department;
|
||||
joinedAt: string;
|
||||
}
|
||||
|
||||
export interface TelemetryLog {
|
||||
id: string;
|
||||
userId: string; // References User.id
|
||||
date: string; // YYYY-MM-DD
|
||||
sleepScore: number; // 0 - 100
|
||||
stressIndex: number; // 1 - 10 (derived from HRV metrics)
|
||||
activeMinutes: number; // 0 - 120+
|
||||
}
|
||||
|
||||
export interface AggregatedTrendPoint {
|
||||
date: string;
|
||||
avgSleepScore: number;
|
||||
avgStressIndex: number;
|
||||
avgActiveMinutes: number;
|
||||
poorSleepPercentage: number; // sleepScore < 60
|
||||
highStressPercentage: number; // stressIndex >= 7
|
||||
cohortSize: number;
|
||||
}
|
||||
|
||||
export interface CohortAnalyticsSummary {
|
||||
department: Department;
|
||||
trends: AggregatedTrendPoint[];
|
||||
overallAvgSleep: number;
|
||||
overallAvgStress: number;
|
||||
overallAvgActive: number;
|
||||
cohortSize: number;
|
||||
insight: string;
|
||||
insightSeverity: 'success' | 'warning' | 'danger' | 'medium';
|
||||
}
|
||||
|
||||
export interface AnalyticsResponse {
|
||||
success: boolean;
|
||||
data?: CohortAnalyticsSummary;
|
||||
error?: string;
|
||||
errorCode?: 'INSUFFICIENT_COHORT_SIZE' | 'NO_DATA';
|
||||
details?: string;
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
export type CheckupMood = 'Great' | 'Okay' | 'Low' | 'Unwell';
|
||||
|
||||
export interface CheckupEntry {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
mood: CheckupMood;
|
||||
energy: number; // 0-100
|
||||
symptoms: string;
|
||||
note: string;
|
||||
}
|
||||
|
||||
export type MealType = 'Breakfast' | 'Lunch' | 'Dinner' | 'Snack';
|
||||
|
||||
export interface DietEntry {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
mealType: MealType;
|
||||
waterCups: number;
|
||||
produceServings: number;
|
||||
notes: string;
|
||||
}
|
||||
|
||||
export type SleepQuality = 'Restful' | 'Okay' | 'Restless';
|
||||
|
||||
export interface SleepEntry {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
hours: number;
|
||||
quality: SleepQuality;
|
||||
interruptions: number;
|
||||
notes: string;
|
||||
}
|
||||
|
||||
export type ActivityType = 'checkup' | 'diet' | 'sleep';
|
||||
|
||||
export interface ActivityEntry {
|
||||
id: string;
|
||||
type: ActivityType;
|
||||
date: string;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
}
|
||||
|
||||
export interface WellbeingSummary {
|
||||
score: number; // 0-100
|
||||
scoreMessage: string;
|
||||
scoreProgress: number; // 0-1
|
||||
sleepHours: number; // last entry or average
|
||||
sleepQuality: SleepQuality | 'N/A';
|
||||
hydrationCups: number; // today's total
|
||||
produceServings: number; // today's total
|
||||
streakDays: number;
|
||||
}
|
||||
|
||||
export interface LocalInsight {
|
||||
id: string;
|
||||
type: 'positive' | 'warning' | 'info';
|
||||
title: string;
|
||||
body: string;
|
||||
icon: string;
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
/**
|
||||
* Date utilities for ShopKeep.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Returns today's date in YYYY-MM-DD format (local time).
|
||||
*/
|
||||
export const getTodayISO = (): string => {
|
||||
const now = new Date();
|
||||
const year = now.getFullYear();
|
||||
const month = String(now.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(now.getDate()).padStart(2, '0');
|
||||
return `${year}-${month}-${day}`;
|
||||
};
|
||||
|
||||
/**
|
||||
* Formats a date string (YYYY-MM-DD) or ISO string for display.
|
||||
*/
|
||||
export const formatDisplayDate = (
|
||||
dateStr: string,
|
||||
options: Intl.DateTimeFormatOptions = {
|
||||
month: 'short',
|
||||
day: 'numeric',
|
||||
year: 'numeric',
|
||||
}
|
||||
): string => {
|
||||
if (!dateStr) return '';
|
||||
const date = new Date(dateStr);
|
||||
if (isNaN(date.getTime())) return dateStr;
|
||||
return new Intl.DateTimeFormat('en-US', options).format(date);
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns a relative date string (Today, Yesterday, or formatted date).
|
||||
*/
|
||||
export const formatRelativeDate = (dateStr: string): string => {
|
||||
const today = getTodayISO();
|
||||
const date = new Date(dateStr);
|
||||
const dateISO = date.toISOString().split('T')[0];
|
||||
|
||||
if (dateISO === today) return 'Today';
|
||||
|
||||
const yesterday = new Date();
|
||||
yesterday.setDate(yesterday.getDate() - 1);
|
||||
const yesterdayISO = yesterday.toISOString().split('T')[0];
|
||||
|
||||
if (dateISO === yesterdayISO) return 'Yesterday';
|
||||
|
||||
return formatDisplayDate(dateStr);
|
||||
};
|
||||
|
||||
/**
|
||||
* Group items by date.
|
||||
*/
|
||||
export const groupItemsByDate = <T extends { date: string }>(
|
||||
items: T[]
|
||||
): { date: string; items: T[] }[] => {
|
||||
const groups: Record<string, T[]> = {};
|
||||
|
||||
items.forEach((item) => {
|
||||
if (!groups[item.date]) {
|
||||
groups[item.date] = [];
|
||||
}
|
||||
groups[item.date].push(item);
|
||||
});
|
||||
|
||||
return Object.keys(groups)
|
||||
.sort((a, b) => b.localeCompare(a)) // Sort by date descending
|
||||
.map((date) => ({
|
||||
date,
|
||||
items: groups[date],
|
||||
}));
|
||||
};
|
||||
@@ -0,0 +1,65 @@
|
||||
/**
|
||||
* Money utilities for sanitizing, parsing, and formatting currency values.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sanitizes input string to allow only digits and one decimal point.
|
||||
*/
|
||||
export const sanitizeMoneyInput = (value: string): string => {
|
||||
// Remove anything that isn't a digit or a period
|
||||
let sanitized = value.replace(/[^0-9.]/g, '');
|
||||
|
||||
// Ensure only one period exists
|
||||
const parts = sanitized.split('.');
|
||||
if (parts.length > 2) {
|
||||
sanitized = parts[0] + '.' + parts.slice(1).join('');
|
||||
}
|
||||
|
||||
// Limit to 2 decimal places
|
||||
if (parts.length === 2 && parts[1].length > 2) {
|
||||
sanitized = parts[0] + '.' + parts[1].slice(0, 2);
|
||||
}
|
||||
|
||||
return sanitized;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses a sanitized string into a number.
|
||||
*/
|
||||
export const parseMoney = (value: string): number => {
|
||||
const parsed = parseFloat(value);
|
||||
return isNaN(parsed) ? 0 : parsed;
|
||||
};
|
||||
|
||||
/**
|
||||
* Formats a number as currency.
|
||||
*/
|
||||
export const formatMoney = (
|
||||
amount: number,
|
||||
currency: string = 'USD',
|
||||
locale: string = 'en-US'
|
||||
): string => {
|
||||
return new Intl.NumberFormat(locale, {
|
||||
style: 'currency',
|
||||
currency: currency,
|
||||
minimumFractionDigits: 2,
|
||||
maximumFractionDigits: 2,
|
||||
}).format(amount);
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns the currency symbol for a given currency code.
|
||||
*/
|
||||
export const getCurrencySymbol = (
|
||||
currency: string = 'USD',
|
||||
locale: string = 'en-US'
|
||||
): string => {
|
||||
return (
|
||||
new Intl.NumberFormat(locale, {
|
||||
style: 'currency',
|
||||
currency: currency,
|
||||
})
|
||||
.formatToParts(0)
|
||||
.find((part) => part.type === 'currency')?.value || '$'
|
||||
);
|
||||
};
|
||||
@@ -1,3 +1,6 @@
|
||||
// NOTE: @ionic/react and @ionic/react-router are pinned to 8.8.7 in package.json.
|
||||
// 8.8.8 introduced a regression that breaks IonRouterOutlet page transition animations.
|
||||
// Do not upgrade until the upstream fix is confirmed.
|
||||
import { defineConfig, type Plugin } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
|
||||
@@ -1043,11 +1043,11 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"@googlemaps/js-api-loader@npm:^2.0.2":
|
||||
version: 2.1.0
|
||||
resolution: "@googlemaps/js-api-loader@npm:2.1.0"
|
||||
version: 2.1.1
|
||||
resolution: "@googlemaps/js-api-loader@npm:2.1.1"
|
||||
dependencies:
|
||||
"@types/google.maps": "npm:^3.53.1"
|
||||
checksum: 10c0/dc9593252f59af6c8af0056d1045bc6ce8335962fde51b4e294b864f47d3c640c4259c3afedfb9c0f60b62f76d9c8786062888c6f22518ce88f2e0d95dc6b510
|
||||
checksum: 10c0/06cb6eaf686b838be51efd8293010b7bee42e341e9ad41b42a0ee8909cf06cc5711ba6cfdbcd0c62ff05c8ba35d8622c34130e738bc5844011c8bc457d14de64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1086,6 +1086,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@hookform/resolvers@npm:^3.9.0":
|
||||
version: 3.10.0
|
||||
resolution: "@hookform/resolvers@npm:3.10.0"
|
||||
peerDependencies:
|
||||
react-hook-form: ^7.0.0
|
||||
checksum: 10c0/7ee44533b4cdc28c4fa2a94894c735411e5a1f830f4a617c580533321a9b901df0cc8c1e2fad81ad8d55154ebc5cb844cf9c116a3148ffae2bc48758c33cbb8e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ionic/cli-framework-output@npm:^2.2.8":
|
||||
version: 2.2.8
|
||||
resolution: "@ionic/cli-framework-output@npm:2.2.8"
|
||||
@@ -1108,17 +1117,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ionic/core@npm:8.8.8":
|
||||
version: 8.8.8
|
||||
resolution: "@ionic/core@npm:8.8.8"
|
||||
dependencies:
|
||||
"@stencil/core": "npm:4.43.0"
|
||||
ionicons: "npm:^8.0.13"
|
||||
tslib: "npm:^2.1.0"
|
||||
checksum: 10c0/fea32925aaebec558c1c3bb9c30f8c0806d3480a67936e63cdcce8846138688d9b6b5b853ebe771132f0f79efef16568b17d11495f7997ea325a265a7e7d7af3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ionic/pwa-elements@npm:^3.0.0":
|
||||
version: 3.4.0
|
||||
resolution: "@ionic/pwa-elements@npm:3.4.0"
|
||||
@@ -1126,36 +1124,22 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ionic/react-router@npm:^8.5.0":
|
||||
version: 8.8.8
|
||||
resolution: "@ionic/react-router@npm:8.8.8"
|
||||
"@ionic/react-router@npm:8.8.7":
|
||||
version: 8.8.7
|
||||
resolution: "@ionic/react-router@npm:8.8.7"
|
||||
dependencies:
|
||||
"@ionic/react": "npm:8.8.8"
|
||||
"@ionic/react": "npm:8.8.7"
|
||||
tslib: "npm:*"
|
||||
peerDependencies:
|
||||
react: ">=16.8.6"
|
||||
react-dom: ">=16.8.6"
|
||||
react-router: ^5.0.1
|
||||
react-router-dom: ^5.0.1
|
||||
checksum: 10c0/be9555ec4dbfd0565cada39d42236eb0b9e2283a13f500b42d5c0c06d6198c17a7be385cfb2ce4f9e89236c71992c30169328b861943a3fe7344c672ad94ae0c
|
||||
checksum: 10c0/302d6ad9c0d450cf6466ff18622aa7708af77c1c4a676d2ff39eca6add440fe96d36a157feae146c3da460c32e7799357320b3270740b050ab040a664b9f0ff2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ionic/react@npm:8.8.8":
|
||||
version: 8.8.8
|
||||
resolution: "@ionic/react@npm:8.8.8"
|
||||
dependencies:
|
||||
"@ionic/core": "npm:8.8.8"
|
||||
ionicons: "npm:^8.0.13"
|
||||
tslib: "npm:*"
|
||||
peerDependencies:
|
||||
react: ">=16.8.6"
|
||||
react-dom: ">=16.8.6"
|
||||
checksum: 10c0/b1b8888f487dc564735adde57ef3cd054e6c9bc38601f133823e69cb98d8e51c99c8902fe48fdd11ee5521ae58b322f110a1fbc8b8fd9bc62e27fc0b806bddd0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@ionic/react@npm:^8.5.0":
|
||||
"@ionic/react@npm:8.8.7":
|
||||
version: 8.8.7
|
||||
resolution: "@ionic/react@npm:8.8.7"
|
||||
dependencies:
|
||||
@@ -1811,7 +1795,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@supabase/supabase-js@npm:^2.108.1":
|
||||
"@supabase/supabase-js@npm:^2.0.0":
|
||||
version: 2.108.1
|
||||
resolution: "@supabase/supabase-js@npm:2.108.1"
|
||||
dependencies:
|
||||
@@ -1889,9 +1873,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"@types/google.maps@npm:^3.53.1, @types/google.maps@npm:^3.58.1":
|
||||
version: 3.65.0
|
||||
resolution: "@types/google.maps@npm:3.65.0"
|
||||
checksum: 10c0/d41bc1ed2c63f297a8956b097953515e87aa21d25ef918102067efa97113ea558bb42be521337af93698b36d4c6283439b3e087b4b57c7033f59128cdc7159cb
|
||||
version: 3.65.1
|
||||
resolution: "@types/google.maps@npm:3.65.1"
|
||||
checksum: 10c0/9a7da04d9f27be7a3f9a4de2e6dd9271b68b83aa8a6050fc53ec5cc1366669ead4c27185200adf56f07d69c9a2bba72d82a0cf706e41ed4e7e89d98c44c5c6a1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1909,7 +1893,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/node@npm:*, @types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0":
|
||||
"@types/node@npm:*":
|
||||
version: 25.9.1
|
||||
resolution: "@types/node@npm:25.9.1"
|
||||
dependencies:
|
||||
@@ -1918,6 +1902,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0":
|
||||
version: 25.9.2
|
||||
resolution: "@types/node@npm:25.9.2"
|
||||
dependencies:
|
||||
undici-types: "npm:>=7.24.0 <7.24.7"
|
||||
checksum: 10c0/f14c0d56361febb985eccc45cf0834ee6e2f07c4389a636f3e1a55ebde320077a80bface18c9afd3092f5fa295925502c1a9d55f805efa813f634aa9c941cbac
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/react-dom@npm:^19.0.0":
|
||||
version: 19.2.3
|
||||
resolution: "@types/react-dom@npm:19.2.3"
|
||||
@@ -2043,17 +2036,17 @@ __metadata:
|
||||
"@capacitor/keyboard": "npm:8.0.3"
|
||||
"@capacitor/push-notifications": "npm:^8.1.1"
|
||||
"@capacitor/status-bar": "npm:8.0.2"
|
||||
"@hookform/resolvers": "npm:^3.9.0"
|
||||
"@ionic/pwa-elements": "npm:^3.0.0"
|
||||
"@ionic/react": "npm:^8.5.0"
|
||||
"@ionic/react-router": "npm:^8.5.0"
|
||||
"@supabase/supabase-js": "npm:^2.108.1"
|
||||
"@ionic/react": "npm:8.8.7"
|
||||
"@ionic/react-router": "npm:8.8.7"
|
||||
"@supabase/supabase-js": "npm:^2.0.0"
|
||||
"@types/katex": "npm:^0.16.0"
|
||||
"@types/react": "npm:^19.0.0"
|
||||
"@types/react-dom": "npm:^19.0.0"
|
||||
"@types/react-router": "npm:^5.1.20"
|
||||
"@types/react-router-dom": "npm:^5.3.3"
|
||||
"@vitejs/plugin-react": "npm:^4.0.1"
|
||||
date-fns: "npm:^4.4.0"
|
||||
firebase: "npm:^11.0.0"
|
||||
ionicons: "npm:^7.4.0"
|
||||
katex: "npm:^0.16.0"
|
||||
@@ -2249,13 +2242,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"date-fns@npm:^4.4.0":
|
||||
version: 4.4.0
|
||||
resolution: "date-fns@npm:4.4.0"
|
||||
checksum: 10c0/988f0a13db183f5dfc85c36bbb6847a9c135a9225888bbea4005876ec15539a8613c21a07370a4e7ea543918d5a1cafb423c528b42cdbbde5fdfddb178126b21
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.3.1, debug@npm:^4.3.4, debug@npm:^4.4.0":
|
||||
version: 4.4.3
|
||||
resolution: "debug@npm:4.4.3"
|
||||
@@ -3002,8 +2988,8 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"protobufjs@npm:^7.2.5":
|
||||
version: 7.6.1
|
||||
resolution: "protobufjs@npm:7.6.1"
|
||||
version: 7.6.3
|
||||
resolution: "protobufjs@npm:7.6.3"
|
||||
dependencies:
|
||||
"@protobufjs/aspromise": "npm:^1.1.2"
|
||||
"@protobufjs/base64": "npm:^1.1.2"
|
||||
@@ -3017,7 +3003,7 @@ __metadata:
|
||||
"@protobufjs/utf8": "npm:^1.1.1"
|
||||
"@types/node": "npm:>=13.7.0"
|
||||
long: "npm:^5.3.2"
|
||||
checksum: 10c0/364c6914facac19ace915e353f71c5d5996bfa8177a3a68c09bd2513a3ecf780538aca06cb3439237f50489db2fae321c4a4db60fd7f9ec65315b7ad66bea029
|
||||
checksum: 10c0/e1132b1ff82684280041550d720398568763ff40928def03e8bb409eaed6edd222e63372e3f52d7c19e5a8e9975333480e26950759086eb5a1f5b5c118da7bf8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -3601,13 +3587,13 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"websocket-driver@npm:>=0.5.1":
|
||||
version: 0.7.4
|
||||
resolution: "websocket-driver@npm:0.7.4"
|
||||
version: 0.7.5
|
||||
resolution: "websocket-driver@npm:0.7.5"
|
||||
dependencies:
|
||||
http-parser-js: "npm:>=0.5.1"
|
||||
safe-buffer: "npm:>=5.1.0"
|
||||
websocket-extensions: "npm:>=0.1.1"
|
||||
checksum: 10c0/5f09547912b27bdc57bac17b7b6527d8993aa4ac8a2d10588bb74aebaf785fdcf64fea034aae0c359b7adff2044dd66f3d03866e4685571f81b13e548f9021f1
|
||||
checksum: 10c0/843a3c9f529ce07f2721829f70f62986247525ab22625e857b69da13dc90967bacfe57b85e196801b565cd797e309ddd5b06fa8435732e34e8a8ab6201d7abed
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Reference in New Issue
Block a user