diff --git a/explorer-nextjs/app/components/AccountStatsCard.tsx b/explorer-nextjs/app/components/AccountStatsCard.tsx
index 0e1ea9b4af..be0f23ce0d 100644
--- a/explorer-nextjs/app/components/AccountStatsCard.tsx
+++ b/explorer-nextjs/app/components/AccountStatsCard.tsx
@@ -12,11 +12,9 @@ import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp";
import { Card, CardContent } from "@mui/material";
import { ExplorerStaticProgressBar } from "./ExplorerStaticProgressBar";
-import {
- MultiSegmentProgressBar,
- MultiSegmentProgressBarProps,
-} from "./ExplorerMultiSegmentProgressBar";
+import { MultiSegmentProgressBar } from "./ExplorerMultiSegmentProgressBar";
import useMediaQuery from "@mui/material/useMediaQuery";
+import CircleIcon from "@mui/icons-material/Circle";
export interface IAccontStatsRowProps {
type: string;
@@ -36,8 +34,10 @@ const progressBarColours = [
"#FEECB3",
];
+const TABLET_WIDTH = "(min-width:700px)";
+
const Row = (props: IAccontStatsRowProps) => {
- const tablet = useMediaQuery("(min-width:700px)");
+ const tablet = useMediaQuery(TABLET_WIDTH);
const {
type,
@@ -61,9 +61,10 @@ const Row = (props: IAccontStatsRowProps) => {
borderBottom: isLastRow
? "none"
: "1px solid rgba(224, 224, 224, 1)",
+ width: "25%",
}}
>
- {type}
+ {type}
{
borderBottom: isLastRow
? "none"
: "1px solid rgba(224, 224, 224, 1)",
+ width: "25%",
}}
>
@@ -87,6 +89,7 @@ const Row = (props: IAccontStatsRowProps) => {
borderBottom: isLastRow
? "none"
: "1px solid rgba(224, 224, 224, 1)",
+ width: "20%",
}}
>
{amount} NYM
@@ -97,6 +100,7 @@ const Row = (props: IAccontStatsRowProps) => {
borderBottom: isLastRow
? "none"
: "1px solid rgba(224, 224, 224, 1)",
+ width: "20%",
}}
>
$ {value}
@@ -106,6 +110,7 @@ const Row = (props: IAccontStatsRowProps) => {
borderBottom: isLastRow
? "none"
: "1px solid rgba(224, 224, 224, 1)",
+ width: "10%",
}}
>
{history && (
@@ -120,38 +125,29 @@ const Row = (props: IAccontStatsRowProps) => {
) : (
+ // MOBILE VIEW
- {type}
-
- {/*
-
- {allocation}%
-
+
+
+ {type}
- */}
+
+
{amount} NYM
@@ -163,6 +159,7 @@ const Row = (props: IAccontStatsRowProps) => {
borderBottom: isLastRow
? "none"
: "1px solid rgba(224, 224, 224, 1)",
+ width: "10%",
}}
>
{history && (
@@ -219,17 +216,13 @@ const Row = (props: IAccontStatsRowProps) => {
export interface IAccountStatsCardProps {
rows: Array;
+ overTitle?: string;
+ priceTitle?: number;
}
-// const progressValues = [
-// { percentage: 25, color: "#4caf50" }, // Green
-// { percentage: 35, color: "#2196f3" }, // Blue
-// { percentage: 40, color: "#ff9800" }, // Orange
-// ];
-
export const AccountStatsCard = (props: IAccountStatsCardProps) => {
- const { rows } = props;
- const tablet = useMediaQuery("(min-width:700px)");
+ const { rows, overTitle, priceTitle } = props;
+ const tablet = useMediaQuery(TABLET_WIDTH);
const progressBarPercentages = () => {
return rows.map((row, i) => row.allocation);
};
@@ -250,22 +243,48 @@ export const AccountStatsCard = (props: IAccountStatsCardProps) => {
return (
+ {overTitle && (
+
+ {overTitle}
+
+ )}
+ {priceTitle && (
+
+ ${priceTitle}
+
+ )}
{!tablet && }
{tablet ? (
- Type
- Allocation
- Amount
- Value
+
+ Type
+
+
+
+ Allocation
+
+
+
+ Amount
+
+
+ Value
+
) : (
- Type
- Amount / Value
+
+ Type
+
+
+
+ Amount / Value
+
+
)}
diff --git a/explorer-nextjs/app/page.tsx b/explorer-nextjs/app/page.tsx
index 2e37759747..2f0b145113 100644
--- a/explorer-nextjs/app/page.tsx
+++ b/explorer-nextjs/app/page.tsx
@@ -255,6 +255,8 @@ export default function PageOverview() {
};
const accountStatsCard: IAccountStatsCardProps = {
+ overTitle: "Total value",
+ priceTitle: 1990.0174,
rows: [
{ type: "Spendable", allocation: 15.53, amount: 12800, value: 1200 },
{