arbret/frontend/app/trades/page.tsx
counterweight bf57fc6b77
fix: Remove agreed_price from price API response
The agreed_price depends on trade direction (buy/sell) and must be
calculated on the frontend. Returning a buy-side-only agreed_price
from the API was misleading and unused.

Frontend already calculates the direction-aware price correctly.
2025-12-23 10:36:18 +01:00

479 lines
15 KiB
TypeScript

"use client";
import React from "react";
import { useEffect, useState, useCallback } from "react";
import { Permission } from "../auth-context";
import { api } from "../api";
import { Header } from "../components/Header";
import { useRequireAuth } from "../hooks/useRequireAuth";
import { components } from "../generated/api";
import { formatDateTime } from "../utils/date";
import {
layoutStyles,
typographyStyles,
bannerStyles,
badgeStyles,
buttonStyles,
} from "../styles/shared";
type ExchangeResponse = components["schemas"]["ExchangeResponse"];
/**
* Format EUR amount from cents to display string
*/
function formatEur(cents: number): string {
return `${(cents / 100).toLocaleString("de-DE")}`;
}
/**
* Format satoshi amount with styled components
* Leading zeros are subtle, main digits are prominent
*/
function SatsDisplay({ sats }: { sats: number }) {
const btc = sats / 100_000_000;
const btcStr = btc.toFixed(8);
const [whole, decimal] = btcStr.split(".");
const part1 = decimal.slice(0, 2);
const part2 = decimal.slice(2, 5);
const part3 = decimal.slice(5, 8);
const fullDecimal = part1 + part2 + part3;
let firstNonZero = fullDecimal.length;
for (let i = 0; i < fullDecimal.length; i++) {
if (fullDecimal[i] !== "0") {
firstNonZero = i;
break;
}
}
const subtleStyle: React.CSSProperties = {
opacity: 0.45,
fontWeight: 400,
};
const renderPart = (part: string, startIdx: number) => {
return part.split("").map((char, i) => {
const globalIdx = startIdx + i;
const isSubtle = globalIdx < firstNonZero;
return (
<span key={globalIdx} style={isSubtle ? subtleStyle : undefined}>
{char}
</span>
);
});
};
return (
<span style={{ fontFamily: "'DM Mono', monospace" }}>
<span style={subtleStyle}></span>
<span style={subtleStyle}> {whole}.</span>
{renderPart(part1, 0)}
<span> </span>
{renderPart(part2, 2)}
<span> </span>
{renderPart(part3, 5)}
<span> sats</span>
</span>
);
}
/**
* Get status display properties
*/
function getTradeStatusDisplay(status: string): {
text: string;
bgColor: string;
textColor: string;
} {
switch (status) {
case "booked":
return {
text: "Pending",
bgColor: "rgba(99, 102, 241, 0.2)",
textColor: "rgba(129, 140, 248, 0.9)",
};
case "completed":
return {
text: "Completed",
bgColor: "rgba(34, 197, 94, 0.2)",
textColor: "rgba(34, 197, 94, 0.9)",
};
case "cancelled_by_user":
return {
text: "Cancelled",
bgColor: "rgba(239, 68, 68, 0.2)",
textColor: "rgba(239, 68, 68, 0.9)",
};
case "cancelled_by_admin":
return {
text: "Cancelled by Admin",
bgColor: "rgba(239, 68, 68, 0.2)",
textColor: "rgba(239, 68, 68, 0.9)",
};
case "no_show":
return {
text: "No Show",
bgColor: "rgba(251, 146, 60, 0.2)",
textColor: "rgba(251, 146, 60, 0.9)",
};
default:
return {
text: status,
bgColor: "rgba(255, 255, 255, 0.1)",
textColor: "rgba(255, 255, 255, 0.6)",
};
}
}
export default function TradesPage() {
const { user, isLoading, isAuthorized } = useRequireAuth({
requiredPermission: Permission.VIEW_OWN_EXCHANGES,
fallbackRedirect: "/",
});
const [trades, setTrades] = useState<ExchangeResponse[]>([]);
const [isLoadingTrades, setIsLoadingTrades] = useState(true);
const [cancellingId, setCancellingId] = useState<number | null>(null);
const [confirmCancelId, setConfirmCancelId] = useState<number | null>(null);
const [error, setError] = useState<string | null>(null);
const fetchTrades = useCallback(async () => {
try {
const data = await api.get<ExchangeResponse[]>("/api/trades");
setTrades(data);
} catch (err) {
console.error("Failed to fetch trades:", err);
setError("Failed to load trades");
} finally {
setIsLoadingTrades(false);
}
}, []);
useEffect(() => {
if (user && isAuthorized) {
fetchTrades();
}
}, [user, isAuthorized, fetchTrades]);
const handleCancel = async (tradeId: number) => {
setCancellingId(tradeId);
setError(null);
try {
await api.post<ExchangeResponse>(`/api/trades/${tradeId}/cancel`, {});
await fetchTrades();
setConfirmCancelId(null);
} catch (err) {
setError(err instanceof Error ? err.message : "Failed to cancel trade");
} finally {
setCancellingId(null);
}
};
if (isLoading) {
return (
<main style={layoutStyles.main}>
<div style={layoutStyles.loader}>Loading...</div>
</main>
);
}
if (!isAuthorized) {
return null;
}
const upcomingTrades = trades.filter(
(t) => t.status === "booked" && new Date(t.slot_start) > new Date()
);
const pastOrFinalTrades = trades.filter(
(t) => t.status !== "booked" || new Date(t.slot_start) <= new Date()
);
return (
<main style={layoutStyles.main}>
<Header currentPage="appointments" />
<div style={styles.content}>
<h1 style={typographyStyles.pageTitle}>My Trades</h1>
<p style={typographyStyles.pageSubtitle}>View and manage your Bitcoin trades</p>
{error && <div style={bannerStyles.errorBanner}>{error}</div>}
{isLoadingTrades ? (
<div style={styles.emptyState}>Loading trades...</div>
) : trades.length === 0 ? (
<div style={styles.emptyState}>
<p>You don&apos;t have any trades yet.</p>
<a href="/exchange" style={styles.emptyStateLink}>
Start trading
</a>
</div>
) : (
<>
{/* Upcoming Trades */}
{upcomingTrades.length > 0 && (
<div style={styles.section}>
<h2 style={styles.sectionTitle}>Upcoming ({upcomingTrades.length})</h2>
<div style={styles.tradeList}>
{upcomingTrades.map((trade) => {
const status = getTradeStatusDisplay(trade.status);
const isBuy = trade.direction === "buy";
return (
<div key={trade.id} style={styles.tradeCard}>
<div style={styles.tradeHeader}>
<div style={styles.tradeInfo}>
<div style={styles.tradeTime}>{formatDateTime(trade.slot_start)}</div>
<div style={styles.tradeDetails}>
<span
style={{
...styles.directionBadge,
background: isBuy
? "rgba(74, 222, 128, 0.15)"
: "rgba(248, 113, 113, 0.15)",
color: isBuy ? "#4ade80" : "#f87171",
}}
>
{isBuy ? "BUY" : "SELL"}
</span>
<span style={styles.amount}>{formatEur(trade.eur_amount)}</span>
<span style={styles.arrow}></span>
<span style={styles.satsAmount}>
<SatsDisplay sats={trade.sats_amount} />
</span>
</div>
<div style={styles.rateRow}>
<span style={styles.rateLabel}>Rate:</span>
<span style={styles.rateValue}>
{trade.agreed_price_eur.toLocaleString("de-DE", {
maximumFractionDigits: 0,
})}
/BTC
</span>
</div>
<span
style={{
...badgeStyles.badge,
background: status.bgColor,
color: status.textColor,
marginTop: "0.5rem",
}}
>
{status.text}
</span>
</div>
{trade.status === "booked" && (
<div style={styles.buttonGroup}>
{confirmCancelId === trade.id ? (
<>
<button
onClick={() => handleCancel(trade.id)}
disabled={cancellingId === trade.id}
style={styles.confirmButton}
>
{cancellingId === trade.id ? "..." : "Confirm"}
</button>
<button
onClick={() => setConfirmCancelId(null)}
style={buttonStyles.secondaryButton}
>
No
</button>
</>
) : (
<button
onClick={() => setConfirmCancelId(trade.id)}
style={buttonStyles.secondaryButton}
>
Cancel
</button>
)}
</div>
)}
</div>
</div>
);
})}
</div>
</div>
)}
{/* Past/Completed/Cancelled Trades */}
{pastOrFinalTrades.length > 0 && (
<div style={styles.section}>
<h2 style={typographyStyles.sectionTitleMuted}>
History ({pastOrFinalTrades.length})
</h2>
<div style={styles.tradeList}>
{pastOrFinalTrades.map((trade) => {
const status = getTradeStatusDisplay(trade.status);
const isBuy = trade.direction === "buy";
return (
<div key={trade.id} style={{ ...styles.tradeCard, ...styles.tradeCardPast }}>
<div style={styles.tradeTime}>{formatDateTime(trade.slot_start)}</div>
<div style={styles.tradeDetails}>
<span
style={{
...styles.directionBadge,
background: isBuy
? "rgba(74, 222, 128, 0.1)"
: "rgba(248, 113, 113, 0.1)",
color: isBuy ? "rgba(74, 222, 128, 0.7)" : "rgba(248, 113, 113, 0.7)",
}}
>
{isBuy ? "BUY" : "SELL"}
</span>
<span style={styles.amount}>{formatEur(trade.eur_amount)}</span>
<span style={styles.arrow}></span>
<span style={styles.satsAmount}>
<SatsDisplay sats={trade.sats_amount} />
</span>
</div>
<span
style={{
...badgeStyles.badge,
background: status.bgColor,
color: status.textColor,
marginTop: "0.5rem",
}}
>
{status.text}
</span>
</div>
);
})}
</div>
</div>
)}
</>
)}
</div>
</main>
);
}
// Page-specific styles
const styles: Record<string, React.CSSProperties> = {
content: {
flex: 1,
padding: "2rem",
maxWidth: "800px",
margin: "0 auto",
width: "100%",
},
section: {
marginBottom: "2rem",
},
sectionTitle: {
fontFamily: "'DM Sans', system-ui, sans-serif",
fontSize: "1.1rem",
fontWeight: 500,
color: "#fff",
marginBottom: "1rem",
},
tradeList: {
display: "flex",
flexDirection: "column",
gap: "0.75rem",
},
tradeCard: {
background: "rgba(255, 255, 255, 0.03)",
border: "1px solid rgba(255, 255, 255, 0.08)",
borderRadius: "12px",
padding: "1.25rem",
transition: "all 0.2s",
},
tradeCardPast: {
opacity: 0.6,
background: "rgba(255, 255, 255, 0.01)",
},
tradeHeader: {
display: "flex",
justifyContent: "space-between",
alignItems: "flex-start",
gap: "1rem",
},
tradeInfo: {
display: "flex",
flexDirection: "column",
gap: "0.25rem",
},
tradeTime: {
fontFamily: "'DM Sans', system-ui, sans-serif",
fontSize: "1rem",
fontWeight: 500,
color: "#fff",
marginBottom: "0.5rem",
},
tradeDetails: {
display: "flex",
alignItems: "center",
gap: "0.5rem",
flexWrap: "wrap",
},
directionBadge: {
fontFamily: "'DM Sans', system-ui, sans-serif",
fontSize: "0.7rem",
fontWeight: 600,
padding: "0.2rem 0.5rem",
borderRadius: "4px",
textTransform: "uppercase",
},
amount: {
fontFamily: "'DM Mono', monospace",
fontSize: "0.95rem",
color: "#fff",
fontWeight: 500,
},
arrow: {
color: "rgba(255, 255, 255, 0.3)",
fontSize: "0.8rem",
},
satsAmount: {
fontFamily: "'DM Mono', monospace",
fontSize: "0.9rem",
color: "#f7931a", // Bitcoin orange
},
rateRow: {
display: "flex",
alignItems: "center",
gap: "0.5rem",
marginTop: "0.25rem",
},
rateLabel: {
fontFamily: "'DM Sans', system-ui, sans-serif",
fontSize: "0.75rem",
color: "rgba(255, 255, 255, 0.4)",
},
rateValue: {
fontFamily: "'DM Mono', monospace",
fontSize: "0.8rem",
color: "rgba(255, 255, 255, 0.7)",
},
buttonGroup: {
display: "flex",
gap: "0.5rem",
},
confirmButton: {
fontFamily: "'DM Sans', system-ui, sans-serif",
padding: "0.35rem 0.75rem",
fontSize: "0.75rem",
background: "rgba(239, 68, 68, 0.2)",
border: "1px solid rgba(239, 68, 68, 0.3)",
borderRadius: "6px",
color: "#f87171",
cursor: "pointer",
transition: "all 0.2s",
},
emptyState: {
fontFamily: "'DM Sans', system-ui, sans-serif",
color: "rgba(255, 255, 255, 0.4)",
textAlign: "center",
padding: "3rem",
},
emptyStateLink: {
color: "#a78bfa",
textDecoration: "none",
},
};