@cimplify/cli 0.7.10 → 0.7.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/dist/{add-SMWNH54I.mjs → add-BCQCRULA.mjs} +1 -1
  2. package/dist/{chunk-AGJ3GDM5.mjs → chunk-NYRKS2ZC.mjs} +1 -1
  3. package/dist/chunk-R6TUXVFC.mjs +6463 -0
  4. package/dist/{chunk-DTKRN5WC.mjs → chunk-ZSO64OIW.mjs} +2 -2
  5. package/dist/dispatcher.mjs +9 -9
  6. package/dist/{doctor-DD2HRC43.mjs → doctor-4FTJFRJK.mjs} +2 -2
  7. package/dist/{explain-H46SCM2M.mjs → explain-6FFAG3OD.mjs} +1 -1
  8. package/dist/{introspect-YKAWUZ6D.mjs → introspect-2I2MHUMW.mjs} +2 -2
  9. package/dist/{list-6FF2UPH2.mjs → list-Y7AZYDWJ.mjs} +1 -1
  10. package/dist/{update-STXI3CS4.mjs → update-SBYEU77K.mjs} +1 -1
  11. package/package.json +2 -2
  12. package/templates/storefront-auto/app/account/addresses/actions.ts +56 -0
  13. package/templates/storefront-auto/app/account/addresses/page.tsx +178 -15
  14. package/templates/storefront-auto/app/account/orders/page.tsx +84 -15
  15. package/templates/storefront-auto/app/account/page.tsx +39 -16
  16. package/templates/storefront-auto/app/account/wallets/actions.ts +52 -0
  17. package/templates/storefront-auto/app/account/wallets/page.tsx +185 -0
  18. package/templates/storefront-auto/app/sitemap-page/page.tsx +1 -1
  19. package/templates/storefront-auto/bun.lock +8 -2
  20. package/templates/storefront-auto/lib/brand.ts +1 -1
  21. package/templates/storefront-auto/lib/cimplify-server.ts +54 -0
  22. package/templates/storefront-auto/middleware.ts +39 -0
  23. package/templates/storefront-auto/package.json +1 -1
  24. package/templates/storefront-bakery/AGENTS.md +4 -4
  25. package/templates/storefront-bakery/app/account/addresses/actions.ts +56 -0
  26. package/templates/storefront-bakery/app/account/addresses/page.tsx +178 -15
  27. package/templates/storefront-bakery/app/account/orders/page.tsx +84 -15
  28. package/templates/storefront-bakery/app/account/page.tsx +39 -16
  29. package/templates/storefront-bakery/app/account/wallets/actions.ts +52 -0
  30. package/templates/storefront-bakery/app/account/wallets/page.tsx +185 -0
  31. package/templates/storefront-bakery/app/sitemap-page/page.tsx +1 -1
  32. package/templates/storefront-bakery/bun.lock +8 -2
  33. package/templates/storefront-bakery/lib/brand.ts +1 -1
  34. package/templates/storefront-bakery/lib/cimplify-server.ts +54 -0
  35. package/templates/storefront-bakery/middleware.ts +39 -0
  36. package/templates/storefront-bakery/package.json +1 -1
  37. package/templates/storefront-fashion/AGENTS.md +4 -4
  38. package/templates/storefront-fashion/app/account/addresses/actions.ts +56 -0
  39. package/templates/storefront-fashion/app/account/addresses/page.tsx +178 -15
  40. package/templates/storefront-fashion/app/account/orders/page.tsx +84 -15
  41. package/templates/storefront-fashion/app/account/page.tsx +39 -16
  42. package/templates/storefront-fashion/app/account/wallets/actions.ts +52 -0
  43. package/templates/storefront-fashion/app/account/wallets/page.tsx +185 -0
  44. package/templates/storefront-fashion/app/sitemap-page/page.tsx +1 -1
  45. package/templates/storefront-fashion/bun.lock +8 -2
  46. package/templates/storefront-fashion/lib/brand.ts +1 -1
  47. package/templates/storefront-fashion/lib/cimplify-server.ts +54 -0
  48. package/templates/storefront-fashion/middleware.ts +39 -0
  49. package/templates/storefront-fashion/package.json +1 -1
  50. package/templates/storefront-grocery/AGENTS.md +4 -4
  51. package/templates/storefront-grocery/app/account/addresses/actions.ts +56 -0
  52. package/templates/storefront-grocery/app/account/addresses/page.tsx +178 -15
  53. package/templates/storefront-grocery/app/account/orders/page.tsx +84 -15
  54. package/templates/storefront-grocery/app/account/page.tsx +39 -16
  55. package/templates/storefront-grocery/app/account/wallets/actions.ts +52 -0
  56. package/templates/storefront-grocery/app/account/wallets/page.tsx +185 -0
  57. package/templates/storefront-grocery/app/sitemap-page/page.tsx +1 -1
  58. package/templates/storefront-grocery/bun.lock +8 -2
  59. package/templates/storefront-grocery/lib/brand.ts +1 -1
  60. package/templates/storefront-grocery/lib/cimplify-server.ts +54 -0
  61. package/templates/storefront-grocery/middleware.ts +39 -0
  62. package/templates/storefront-grocery/package.json +1 -1
  63. package/templates/storefront-pharmacy/AGENTS.md +4 -4
  64. package/templates/storefront-pharmacy/app/account/addresses/actions.ts +56 -0
  65. package/templates/storefront-pharmacy/app/account/addresses/page.tsx +178 -15
  66. package/templates/storefront-pharmacy/app/account/orders/page.tsx +84 -15
  67. package/templates/storefront-pharmacy/app/account/page.tsx +39 -16
  68. package/templates/storefront-pharmacy/app/account/wallets/actions.ts +52 -0
  69. package/templates/storefront-pharmacy/app/account/wallets/page.tsx +185 -0
  70. package/templates/storefront-pharmacy/app/sitemap-page/page.tsx +1 -1
  71. package/templates/storefront-pharmacy/bun.lock +8 -2
  72. package/templates/storefront-pharmacy/lib/brand.ts +1 -1
  73. package/templates/storefront-pharmacy/lib/cimplify-server.ts +54 -0
  74. package/templates/storefront-pharmacy/middleware.ts +39 -0
  75. package/templates/storefront-pharmacy/package.json +1 -1
  76. package/templates/storefront-restaurant/AGENTS.md +4 -4
  77. package/templates/storefront-restaurant/app/account/addresses/actions.ts +56 -0
  78. package/templates/storefront-restaurant/app/account/addresses/page.tsx +178 -15
  79. package/templates/storefront-restaurant/app/account/orders/page.tsx +84 -15
  80. package/templates/storefront-restaurant/app/account/page.tsx +39 -16
  81. package/templates/storefront-restaurant/app/account/wallets/actions.ts +52 -0
  82. package/templates/storefront-restaurant/app/account/wallets/page.tsx +185 -0
  83. package/templates/storefront-restaurant/app/sitemap-page/page.tsx +1 -1
  84. package/templates/storefront-restaurant/bun.lock +8 -2
  85. package/templates/storefront-restaurant/lib/brand.ts +1 -1
  86. package/templates/storefront-restaurant/lib/cimplify-server.ts +54 -0
  87. package/templates/storefront-restaurant/middleware.ts +39 -0
  88. package/templates/storefront-restaurant/package.json +1 -1
  89. package/templates/storefront-retail/AGENTS.md +4 -4
  90. package/templates/storefront-retail/app/account/addresses/actions.ts +56 -0
  91. package/templates/storefront-retail/app/account/addresses/page.tsx +178 -15
  92. package/templates/storefront-retail/app/account/orders/page.tsx +84 -15
  93. package/templates/storefront-retail/app/account/page.tsx +39 -16
  94. package/templates/storefront-retail/app/account/wallets/actions.ts +52 -0
  95. package/templates/storefront-retail/app/account/wallets/page.tsx +185 -0
  96. package/templates/storefront-retail/app/sitemap-page/page.tsx +1 -1
  97. package/templates/storefront-retail/bun.lock +8 -2
  98. package/templates/storefront-retail/lib/brand.ts +1 -1
  99. package/templates/storefront-retail/lib/cimplify-server.ts +54 -0
  100. package/templates/storefront-retail/middleware.ts +39 -0
  101. package/templates/storefront-retail/package.json +1 -1
  102. package/templates/storefront-services/AGENTS.md +4 -4
  103. package/templates/storefront-services/app/account/addresses/actions.ts +56 -0
  104. package/templates/storefront-services/app/account/addresses/page.tsx +178 -15
  105. package/templates/storefront-services/app/account/orders/page.tsx +84 -15
  106. package/templates/storefront-services/app/account/page.tsx +39 -16
  107. package/templates/storefront-services/app/account/wallets/actions.ts +52 -0
  108. package/templates/storefront-services/app/account/wallets/page.tsx +185 -0
  109. package/templates/storefront-services/app/sitemap-page/page.tsx +1 -1
  110. package/templates/storefront-services/bun.lock +8 -2
  111. package/templates/storefront-services/lib/brand.ts +1 -1
  112. package/templates/storefront-services/lib/cimplify-server.ts +54 -0
  113. package/templates/storefront-services/middleware.ts +39 -0
  114. package/templates/storefront-services/package.json +1 -1
  115. package/dist/chunk-YFLBC6BL.mjs +0 -6151
  116. package/templates/storefront-auto/app/account/settings/page.tsx +0 -21
  117. package/templates/storefront-auto/components/account-iframe.tsx +0 -19
  118. package/templates/storefront-bakery/app/account/settings/page.tsx +0 -21
  119. package/templates/storefront-bakery/components/account-iframe.tsx +0 -19
  120. package/templates/storefront-fashion/app/account/settings/page.tsx +0 -21
  121. package/templates/storefront-fashion/components/account-iframe.tsx +0 -19
  122. package/templates/storefront-grocery/app/account/settings/page.tsx +0 -21
  123. package/templates/storefront-grocery/components/account-iframe.tsx +0 -19
  124. package/templates/storefront-pharmacy/app/account/settings/page.tsx +0 -21
  125. package/templates/storefront-pharmacy/components/account-iframe.tsx +0 -19
  126. package/templates/storefront-restaurant/app/account/settings/page.tsx +0 -21
  127. package/templates/storefront-restaurant/components/account-iframe.tsx +0 -19
  128. package/templates/storefront-retail/app/account/settings/page.tsx +0 -21
  129. package/templates/storefront-retail/components/account-iframe.tsx +0 -19
  130. package/templates/storefront-services/app/account/settings/page.tsx +0 -21
  131. package/templates/storefront-services/components/account-iframe.tsx +0 -19
@@ -1,21 +1,90 @@
1
- import type { Metadata } from "next";
2
- import { AccountIframe } from "@/components/account-iframe";
1
+ import {
2
+ AccountOrdersPage,
3
+ AccountSignedOutPrompt,
4
+ } from "@cimplify/sdk/react";
5
+ import type { OrderRowData, OrderRowStatus } from "@cimplify/sdk/react";
6
+ import type { Order, OrderStatus } from "@cimplify/sdk";
7
+ import { formatMoney } from "@cimplify/sdk";
3
8
  import { brand } from "@/lib/brand";
9
+ import { ACCOUNT_NAV, apiFetch, serverAccessToken, serverSession } from "@/lib/cimplify-server";
4
10
 
5
- export const metadata: Metadata = {
6
- title: `Orders ${brand.name}`,
7
- };
11
+ const CLIENT_ID = process.env.NEXT_PUBLIC_CIMPLIFY_CLIENT_ID ?? "";
12
+ const REDIRECT_URI = process.env.CIMPLIFY_REDIRECT_URI ?? "";
13
+
14
+ function mapStatus(status: OrderStatus): OrderRowStatus {
15
+ switch (status) {
16
+ case "in_preparation":
17
+ case "ready_to_serve":
18
+ case "partially_served":
19
+ return { kind: "preparing", label: "Preparing" };
20
+ case "delivered":
21
+ return { kind: "delivered" };
22
+ case "picked_up":
23
+ return { kind: "delivered", label: "Picked up" };
24
+ case "served":
25
+ case "completed":
26
+ return { kind: "completed" };
27
+ case "cancelled":
28
+ case "refunded":
29
+ return { kind: "cancelled", label: status === "refunded" ? "Refunded" : undefined };
30
+ case "pending":
31
+ case "created":
32
+ case "confirmed":
33
+ default:
34
+ return { kind: "active", label: "Confirmed" };
35
+ }
36
+ }
37
+
38
+ function relativeMeta(iso: string, orderNumber: string): string {
39
+ const when = new Date(iso);
40
+ const formatted = when.toLocaleDateString(undefined, {
41
+ month: "short",
42
+ day: "numeric",
43
+ year: when.getFullYear() === new Date().getFullYear() ? undefined : "numeric",
44
+ });
45
+ return `Order ${orderNumber} · ${formatted}`;
46
+ }
47
+
48
+ function toRowData(order: Order): OrderRowData {
49
+ const count = order.items?.length ?? 0;
50
+ return {
51
+ id: order.id,
52
+ href: `/account/orders/${order.id}`,
53
+ summary: count > 0 ? `${count} ${count === 1 ? "item" : "items"}` : "Order",
54
+ meta: relativeMeta(order.created_at, order.user_friendly_id ?? order.id),
55
+ status: mapStatus(order.status),
56
+ total: formatMoney(order.total_price, order.currency),
57
+ };
58
+ }
59
+
60
+ export default async function OrdersPage() {
61
+ const session = await serverSession();
62
+ if (!session) {
63
+ return (
64
+ <AccountSignedOutPrompt
65
+ clientId={CLIENT_ID}
66
+ redirectUri={REDIRECT_URI}
67
+ eyebrow={brand.account.loginEyebrow}
68
+ title={brand.account.loginTitle}
69
+ description={brand.account.loginSubtitle}
70
+ />
71
+ );
72
+ }
73
+
74
+ const bearer = await serverAccessToken();
75
+ const orders = await apiFetch<Order[]>(
76
+ `/v1/link/orders?business_id=${encodeURIComponent(brand.mock.businessId)}`,
77
+ { bearer },
78
+ );
8
79
 
9
- export default function OrdersPage() {
10
80
  return (
11
- <article className="max-w-5xl mx-auto px-6 sm:px-8 py-12">
12
- <p className="text-[11px] font-semibold uppercase tracking-[0.16em] text-primary mb-2">
13
- Account
14
- </p>
15
- <h1 className="font-serif text-[clamp(2rem,4vw,2.75rem)] font-semibold mb-8 -tracking-[0.02em]">
16
- Your orders
17
- </h1>
18
- <AccountIframe section="orders" />
19
- </article>
81
+ <AccountOrdersPage
82
+ customerName={session.name ?? ""}
83
+ customerEmail={session.email}
84
+ customerId={session.sub}
85
+ merchantName={brand.name}
86
+ nav={ACCOUNT_NAV}
87
+ orders={(orders ?? []).map(toRowData)}
88
+ />
20
89
  );
21
90
  }
@@ -1,22 +1,45 @@
1
- import type { Metadata } from "next";
2
- import { AccountIframe } from "@/components/account-iframe";
1
+ import {
2
+ AccountDashboardPage,
3
+ AccountSignedOutPrompt,
4
+ } from "@cimplify/sdk/react";
5
+ import type { CustomerAddress, CustomerMobileMoney } from "@cimplify/sdk";
3
6
  import { brand } from "@/lib/brand";
7
+ import { ACCOUNT_NAV, apiFetch, serverAccessToken, serverSession } from "@/lib/cimplify-server";
4
8
 
5
- export const metadata: Metadata = {
6
- title: `Account ${brand.name}`,
7
- description: brand.account.signupSubtitle,
8
- };
9
+ const CLIENT_ID = process.env.NEXT_PUBLIC_CIMPLIFY_CLIENT_ID ?? "";
10
+ const REDIRECT_URI = process.env.CIMPLIFY_REDIRECT_URI ?? "";
11
+
12
+ export default async function AccountPage() {
13
+ const session = await serverSession();
14
+ if (!session) {
15
+ return (
16
+ <AccountSignedOutPrompt
17
+ clientId={CLIENT_ID}
18
+ redirectUri={REDIRECT_URI}
19
+ eyebrow={brand.account.loginEyebrow}
20
+ title={brand.account.loginTitle}
21
+ description={brand.account.loginSubtitle}
22
+ />
23
+ );
24
+ }
25
+
26
+ const bearer = await serverAccessToken();
27
+ const [addresses, wallets] = await Promise.all([
28
+ apiFetch<CustomerAddress[]>("/v1/link/addresses", { bearer }),
29
+ apiFetch<CustomerMobileMoney[]>("/v1/link/mobile-money", { bearer }),
30
+ ]);
9
31
 
10
- export default function AccountPage() {
11
32
  return (
12
- <article className="max-w-5xl mx-auto px-6 sm:px-8 py-12">
13
- <p className="text-[11px] font-semibold uppercase tracking-[0.16em] text-primary mb-2">
14
- {brand.account.accountEyebrow}
15
- </p>
16
- <h1 className="font-serif text-[clamp(2rem,4vw,2.75rem)] font-semibold mb-8 -tracking-[0.02em]">
17
- {brand.account.accountTitle}
18
- </h1>
19
- <AccountIframe />
20
- </article>
33
+ <AccountDashboardPage
34
+ customerName={session.name ?? ""}
35
+ customerEmail={session.email}
36
+ customerId={session.sub}
37
+ merchantName={brand.name}
38
+ nav={ACCOUNT_NAV}
39
+ identitySummary={{
40
+ addresses: addresses?.length ?? 0,
41
+ paymentMethods: wallets?.length ?? 0,
42
+ }}
43
+ />
21
44
  );
22
45
  }
@@ -0,0 +1,52 @@
1
+ "use server";
2
+
3
+ import { revalidatePath } from "next/cache";
4
+ import { apiFetch, serverAccessToken } from "@/lib/cimplify-server";
5
+ import type { CustomerMobileMoney, MobileMoneyProvider } from "@cimplify/sdk";
6
+
7
+ const ACCOUNT_WALLETS = "/account/wallets";
8
+
9
+ function required(form: FormData, key: string): string {
10
+ const value = String(form.get(key) ?? "").trim();
11
+ if (!value) throw new Error(`Missing required field: ${key}`);
12
+ return value;
13
+ }
14
+
15
+ function optional(form: FormData, key: string): string | undefined {
16
+ const value = String(form.get(key) ?? "").trim();
17
+ return value || undefined;
18
+ }
19
+
20
+ export async function createWalletAction(form: FormData): Promise<void> {
21
+ const bearer = await serverAccessToken();
22
+ await apiFetch<CustomerMobileMoney>("/v1/link/mobile-money", {
23
+ bearer,
24
+ method: "POST",
25
+ body: JSON.stringify({
26
+ phone_number: required(form, "phone_number"),
27
+ provider: required(form, "provider") as MobileMoneyProvider,
28
+ label: optional(form, "label"),
29
+ }),
30
+ });
31
+ revalidatePath(ACCOUNT_WALLETS);
32
+ }
33
+
34
+ export async function deleteWalletAction(form: FormData): Promise<void> {
35
+ const bearer = await serverAccessToken();
36
+ const id = required(form, "mobile_money_id");
37
+ await apiFetch<unknown>(`/v1/link/mobile-money/${encodeURIComponent(id)}`, {
38
+ bearer,
39
+ method: "DELETE",
40
+ });
41
+ revalidatePath(ACCOUNT_WALLETS);
42
+ }
43
+
44
+ export async function setDefaultWalletAction(form: FormData): Promise<void> {
45
+ const bearer = await serverAccessToken();
46
+ const id = required(form, "mobile_money_id");
47
+ await apiFetch<unknown>(`/v1/link/mobile-money/${encodeURIComponent(id)}/default`, {
48
+ bearer,
49
+ method: "POST",
50
+ });
51
+ revalidatePath(ACCOUNT_WALLETS);
52
+ }
@@ -0,0 +1,185 @@
1
+ import {
2
+ AccountContent,
3
+ AccountHero,
4
+ AccountNav,
5
+ AccountShell,
6
+ AccountSidebar,
7
+ AccountSignedOutPrompt,
8
+ Button,
9
+ EmptyState,
10
+ Section,
11
+ } from "@cimplify/sdk/react";
12
+ import type { CustomerMobileMoney } from "@cimplify/sdk";
13
+ import { MOBILE_MONEY_PROVIDER } from "@cimplify/sdk";
14
+ import { brand } from "@/lib/brand";
15
+ import { ACCOUNT_NAV, apiFetch, serverAccessToken, serverSession } from "@/lib/cimplify-server";
16
+ import {
17
+ createWalletAction,
18
+ deleteWalletAction,
19
+ setDefaultWalletAction,
20
+ } from "./actions";
21
+
22
+ const CLIENT_ID = process.env.NEXT_PUBLIC_CIMPLIFY_CLIENT_ID ?? "";
23
+ const REDIRECT_URI = process.env.CIMPLIFY_REDIRECT_URI ?? "";
24
+
25
+ const PROVIDER_LABEL: Record<string, string> = {
26
+ [MOBILE_MONEY_PROVIDER.MTN]: "MTN",
27
+ [MOBILE_MONEY_PROVIDER.VODAFONE]: "Vodafone",
28
+ [MOBILE_MONEY_PROVIDER.TELECEL]: "Telecel",
29
+ [MOBILE_MONEY_PROVIDER.AIRTEL]: "Airtel",
30
+ [MOBILE_MONEY_PROVIDER.AIRTELTIGO]: "AirtelTigo",
31
+ [MOBILE_MONEY_PROVIDER.MPESA]: "M-Pesa",
32
+ };
33
+
34
+ function maskedPhone(phone: string): string {
35
+ const digits = phone.replace(/\D/g, "");
36
+ if (digits.length < 4) return phone;
37
+ return `${phone.slice(0, 4)} ••• ${digits.slice(-3)}`;
38
+ }
39
+
40
+ function WalletCard({ wallet }: { wallet: CustomerMobileMoney }) {
41
+ const isDefault = wallet.is_default === true;
42
+ const providerLabel = PROVIDER_LABEL[wallet.provider] ?? wallet.provider;
43
+ return (
44
+ <div className="flex items-start justify-between gap-4 rounded-[14px] border border-border bg-card p-5">
45
+ <div className="min-w-0">
46
+ <div className="flex items-center gap-2 mb-1.5">
47
+ <span className="text-[14px] font-medium text-foreground">
48
+ {wallet.label || providerLabel}
49
+ </span>
50
+ {isDefault && (
51
+ <span className="text-[10px] font-medium tracking-[0.08em] uppercase text-foreground/60 bg-foreground/5 px-2 py-0.5 rounded-full">
52
+ Default
53
+ </span>
54
+ )}
55
+ </div>
56
+ <p className="text-[13px] text-foreground/70 leading-relaxed">
57
+ {providerLabel} · {maskedPhone(wallet.phone_number)}
58
+ </p>
59
+ </div>
60
+ <div className="flex items-center gap-2 shrink-0">
61
+ {!isDefault && (
62
+ <form action={setDefaultWalletAction}>
63
+ <input type="hidden" name="mobile_money_id" value={wallet.id} />
64
+ <button
65
+ type="submit"
66
+ className="text-[12px] font-medium text-foreground/70 hover:text-foreground px-2 py-1"
67
+ >
68
+ Make default
69
+ </button>
70
+ </form>
71
+ )}
72
+ <form action={deleteWalletAction}>
73
+ <input type="hidden" name="mobile_money_id" value={wallet.id} />
74
+ <button
75
+ type="submit"
76
+ className="text-[12px] font-medium text-destructive/80 hover:text-destructive px-2 py-1"
77
+ >
78
+ Remove
79
+ </button>
80
+ </form>
81
+ </div>
82
+ </div>
83
+ );
84
+ }
85
+
86
+ function AddWalletForm() {
87
+ return (
88
+ <form
89
+ action={createWalletAction}
90
+ className="rounded-[14px] border border-dashed border-border bg-card p-5 space-y-3"
91
+ >
92
+ <h3 className="text-[13px] font-semibold tracking-[0.02em] text-foreground">
93
+ Add a mobile money wallet
94
+ </h3>
95
+ <div className="grid grid-cols-1 sm:grid-cols-2 gap-3">
96
+ <select
97
+ name="provider"
98
+ required
99
+ defaultValue=""
100
+ className="rounded-[10px] border border-border bg-background px-3 h-10 text-[13px]"
101
+ >
102
+ <option value="" disabled>
103
+ Provider
104
+ </option>
105
+ {Object.entries(PROVIDER_LABEL).map(([value, label]) => (
106
+ <option key={value} value={value}>
107
+ {label}
108
+ </option>
109
+ ))}
110
+ </select>
111
+ <input
112
+ name="phone_number"
113
+ required
114
+ type="tel"
115
+ inputMode="tel"
116
+ autoComplete="tel"
117
+ placeholder="+233 24 400 0000"
118
+ className="rounded-[10px] border border-border bg-background px-3 h-10 text-[13px]"
119
+ />
120
+ </div>
121
+ <input
122
+ name="label"
123
+ placeholder="Label (Personal, Business — optional)"
124
+ className="rounded-[10px] border border-border bg-background px-3 h-10 text-[13px] w-full"
125
+ />
126
+ <div className="flex justify-end">
127
+ <Button type="submit" variant="primary">
128
+ Save wallet
129
+ </Button>
130
+ </div>
131
+ </form>
132
+ );
133
+ }
134
+
135
+ export default async function WalletsPage() {
136
+ const session = await serverSession();
137
+ if (!session) {
138
+ return (
139
+ <AccountSignedOutPrompt
140
+ clientId={CLIENT_ID}
141
+ redirectUri={REDIRECT_URI}
142
+ eyebrow={brand.account.loginEyebrow}
143
+ title={brand.account.loginTitle}
144
+ description={brand.account.loginSubtitle}
145
+ />
146
+ );
147
+ }
148
+
149
+ const bearer = await serverAccessToken();
150
+ const wallets =
151
+ (await apiFetch<CustomerMobileMoney[]>("/v1/link/mobile-money", { bearer })) ?? [];
152
+
153
+ return (
154
+ <AccountShell
155
+ sidebar={
156
+ <AccountSidebar>
157
+ <AccountNav items={ACCOUNT_NAV} activeHref="/account/wallets" />
158
+ </AccountSidebar>
159
+ }
160
+ >
161
+ <AccountHero
162
+ eyebrow="Wallets"
163
+ title="How would you like to pay?"
164
+ subtitle="Saved wallets work across every Cimplify shop you use."
165
+ />
166
+ <AccountContent>
167
+ <Section title="Your wallets" meta={`${wallets.length} saved`}>
168
+ <div className="space-y-3">
169
+ {wallets.length === 0 ? (
170
+ <EmptyState
171
+ title="No wallets yet"
172
+ description="Add a mobile money wallet to skip the number entry next checkout."
173
+ />
174
+ ) : (
175
+ wallets.map((wallet) => <WalletCard key={wallet.id} wallet={wallet} />)
176
+ )}
177
+ </div>
178
+ </Section>
179
+ <Section title="Add another">
180
+ <AddWalletForm />
181
+ </Section>
182
+ </AccountContent>
183
+ </AccountShell>
184
+ );
185
+ }
@@ -55,7 +55,7 @@ const STATIC_LINKS: { title: string; links: { href: string; label: string }[] }[
55
55
  { href: "/account", label: "Account" },
56
56
  { href: "/account/orders", label: "Orders" },
57
57
  { href: "/account/addresses", label: "Addresses" },
58
- { href: "/account/settings", label: "Settings" },
58
+ { href: "/account/wallets", label: "Wallets" },
59
59
  { href: "/login", label: "Sign in" },
60
60
  { href: "/signup", label: "Create account" },
61
61
  { href: "/track-order", label: "Track an order" },
@@ -5,7 +5,7 @@
5
5
  "": {
6
6
  "name": "__STOREFRONT_NAME__",
7
7
  "dependencies": {
8
- "@cimplify/sdk": "^0.54.0",
8
+ "@cimplify/sdk": "^0.64.1",
9
9
  "next": "^16.2.6",
10
10
  "react": "^19.0.0",
11
11
  "react-dom": "^19.0.0",
@@ -31,7 +31,7 @@
31
31
 
32
32
  "@base-ui/utils": ["@base-ui/utils@0.2.9", "", { "dependencies": { "@babel/runtime": "^7.29.2", "@floating-ui/utils": "^0.2.11", "reselect": "^5.1.1", "use-sync-external-store": "^1.6.0" }, "peerDependencies": { "@types/react": "^17 || ^18 || ^19", "react": "^17 || ^18 || ^19", "react-dom": "^17 || ^18 || ^19" }, "optionalPeers": ["@types/react"] }, "sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw=="],
33
33
 
34
- "@cimplify/sdk": ["@cimplify/sdk@0.54.0", "", { "dependencies": { "@base-ui/react": "^1.4.1", "clsx": "^2.1.1", "date-fns": "^4.1.0", "libphonenumber-js": "1.12.41", "react-day-picker": "^9.14.0", "tailwind-merge": "^3.5.0", "zod": "^4.4.3" }, "peerDependencies": { "@paystack/inline-js": "^2.22.8", "msw": ">=2.0.0", "react": ">=17.0.0", "vitest": ">=2.0.0" }, "optionalPeers": ["@paystack/inline-js", "msw", "react", "vitest"], "bin": { "cimplify-mock": "dist/mock/cli.mjs" } }, "sha512-YUN/lOqViHci1v9USWWwAWty29pEXBdLTuKarSl8EpafWh5jkdGZ1Q+Ne9/bfgTZmR8iTUltA8U7glV2FoRSgg=="],
34
+ "@cimplify/sdk": ["@cimplify/sdk@0.64.1", "", { "dependencies": { "@base-ui/react": "^1.4.1", "clsx": "^2.1.1", "date-fns": "^4.1.0", "jose": "^6.2.3", "libphonenumber-js": "1.12.41", "react-day-picker": "^9.14.0", "tailwind-merge": "^3.5.0", "xss": "^1.0.15", "zod": "^4.4.3" }, "peerDependencies": { "@paystack/inline-js": "^2.22.8", "msw": ">=2.0.0", "react": ">=17.0.0", "vitest": ">=2.0.0" }, "optionalPeers": ["@paystack/inline-js", "msw", "react", "vitest"], "bin": { "cimplify-mock": "dist/mock/cli.mjs" } }, "sha512-qY3ngAxAyeRwHR5jJZ7eeeNKgvayZlVUuNglp779bJiwtwL3cZ8Ux4L+k3SgRzgAxtKz9YU2mmVBZxEu14frUw=="],
35
35
 
36
36
  "@date-fns/tz": ["@date-fns/tz@1.4.1", "", {}, "sha512-P5LUNhtbj6YfI3iJjw5EL9eUAG6OitD0W3fWQcpQjDRc/QIsL0tRNuO1PcDvPccWL1fSTXXdE1ds+l95DV/OFA=="],
37
37
 
@@ -313,6 +313,8 @@
313
313
 
314
314
  "convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="],
315
315
 
316
+ "cssfilter": ["cssfilter@0.0.10", "", {}, "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw=="],
317
+
316
318
  "csstype": ["csstype@3.2.3", "", {}, "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ=="],
317
319
 
318
320
  "date-fns": ["date-fns@4.2.1", "", {}, "sha512-37RhSdxaG1suen6VDCza6rNrQfooyQh57HFVPwQGEq2QWliVLzPQZ8Oa017weOu+HZCnzI7N3Pf/wyoBKfEqrA=="],
@@ -349,6 +351,8 @@
349
351
 
350
352
  "jiti": ["jiti@2.7.0", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ=="],
351
353
 
354
+ "jose": ["jose@6.2.3", "", {}, "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw=="],
355
+
352
356
  "libphonenumber-js": ["libphonenumber-js@1.12.41", "", {}, "sha512-lsmMmGXBxXIK/VMLEj0kL6MtUs1kBGj1nTCzi6zgQoG1DEwqwt2DQyHxcLykceIxAnfE3hya7NuIh6PpC6S3fA=="],
353
357
 
354
358
  "lightningcss": ["lightningcss@1.32.0", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.32.0", "lightningcss-darwin-arm64": "1.32.0", "lightningcss-darwin-x64": "1.32.0", "lightningcss-freebsd-x64": "1.32.0", "lightningcss-linux-arm-gnueabihf": "1.32.0", "lightningcss-linux-arm64-gnu": "1.32.0", "lightningcss-linux-arm64-musl": "1.32.0", "lightningcss-linux-x64-gnu": "1.32.0", "lightningcss-linux-x64-musl": "1.32.0", "lightningcss-win32-arm64-msvc": "1.32.0", "lightningcss-win32-x64-msvc": "1.32.0" } }, "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ=="],
@@ -467,6 +471,8 @@
467
471
 
468
472
  "wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
469
473
 
474
+ "xss": ["xss@1.0.15", "", { "dependencies": { "commander": "^2.20.3", "cssfilter": "0.0.10" }, "bin": { "xss": "bin/xss" } }, "sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg=="],
475
+
470
476
  "y18n": ["y18n@5.0.8", "", {}, "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="],
471
477
 
472
478
  "yaml": ["yaml@2.9.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA=="],
@@ -368,7 +368,7 @@ export const brand: Brand = {
368
368
  { label: "Sign in", href: "/login" },
369
369
  { label: "Create account", href: "/signup" },
370
370
  { label: "Your bookings", href: "/account/orders" },
371
- { label: "Settings", href: "/account/settings" },
371
+ { label: "Wallets", href: "/account/wallets" },
372
372
  ],
373
373
  },
374
374
  {
@@ -0,0 +1,54 @@
1
+ import { cookies } from "next/headers";
2
+ import {
3
+ getAccessTokenFromCookieHeader,
4
+ getSessionFromCookieHeader,
5
+ } from "@cimplify/sdk/server";
6
+ import type { NavItem } from "@cimplify/sdk/react";
7
+
8
+ export const ACCOUNT_NAV: NavItem[] = [
9
+ { label: "Dashboard", href: "/account" },
10
+ { label: "Orders", href: "/account/orders" },
11
+ { label: "Addresses", href: "/account/addresses" },
12
+ { label: "Wallets", href: "/account/wallets" },
13
+ { label: "Cimplify identity", href: "https://link.cimplify.io", external: true },
14
+ ];
15
+
16
+ const CLIENT_ID = process.env.CIMPLIFY_CLIENT_ID ?? "";
17
+ const ISSUER = (process.env.CIMPLIFY_ISSUER ?? "https://api.cimplify.io").replace(/\/$/, "");
18
+
19
+ const OIDC_CONFIG = { clientId: CLIENT_ID, issuer: ISSUER };
20
+
21
+ async function cookieHeader(): Promise<string> {
22
+ const store = await cookies();
23
+ return store.getAll().map((c) => `${c.name}=${c.value}`).join("; ");
24
+ }
25
+
26
+ export async function serverSession() {
27
+ return getSessionFromCookieHeader(OIDC_CONFIG, await cookieHeader());
28
+ }
29
+
30
+ export async function serverAccessToken(): Promise<string | null> {
31
+ return getAccessTokenFromCookieHeader(OIDC_CONFIG, await cookieHeader());
32
+ }
33
+
34
+ interface Envelope<T> {
35
+ data: T;
36
+ }
37
+
38
+ export async function apiFetch<T>(
39
+ path: string,
40
+ init: RequestInit & { bearer: string | null },
41
+ ): Promise<T | null> {
42
+ if (!init.bearer) return null;
43
+ const { bearer, ...rest } = init;
44
+ const headers = new Headers(rest.headers);
45
+ headers.set("Authorization", `Bearer ${bearer}`);
46
+ headers.set("Accept", "application/json");
47
+ if (rest.body && !headers.has("Content-Type")) {
48
+ headers.set("Content-Type", "application/json");
49
+ }
50
+ const res = await fetch(`${ISSUER}${path}`, { ...rest, headers, cache: "no-store" });
51
+ if (!res.ok) return null;
52
+ const envelope = (await res.json()) as Envelope<T>;
53
+ return envelope.data;
54
+ }
@@ -0,0 +1,39 @@
1
+ import { NextResponse, type NextRequest } from "next/server";
2
+ import { handleTokenRefresh, type OidcConfig } from "@cimplify/sdk/server";
3
+
4
+ function oidcConfig(): OidcConfig | null {
5
+ const clientId =
6
+ process.env.CIMPLIFY_CLIENT_ID?.trim() ||
7
+ process.env.NEXT_PUBLIC_CIMPLIFY_CLIENT_ID?.trim() ||
8
+ "";
9
+ if (!clientId) return null;
10
+ return {
11
+ clientId,
12
+ issuer: process.env.CIMPLIFY_ISSUER?.trim() || undefined,
13
+ authUrl: process.env.CIMPLIFY_AUTH_URL?.trim() || undefined,
14
+ };
15
+ }
16
+
17
+ // Keeps the access token fresh before account pages render. Server Components
18
+ // can't write cookies, so this is the one place the rotated token can be both
19
+ // persisted (browser) and forwarded onto the current request (this render).
20
+ export async function middleware(request: NextRequest) {
21
+ const cfg = oidcConfig();
22
+ if (!cfg) return NextResponse.next();
23
+
24
+ const { outcome, setCookies, cookies } = await handleTokenRefresh(request, cfg);
25
+ if (outcome === "noop") return NextResponse.next();
26
+
27
+ for (const { name, value } of cookies) {
28
+ request.cookies.set(name, value);
29
+ }
30
+ const response = NextResponse.next({ request });
31
+ for (const cookie of setCookies) {
32
+ response.headers.append("set-cookie", cookie);
33
+ }
34
+ return response;
35
+ }
36
+
37
+ export const config = {
38
+ matcher: ["/account/:path*"],
39
+ };
@@ -17,7 +17,7 @@
17
17
  "check": "bun run typecheck && bun run test:run"
18
18
  },
19
19
  "dependencies": {
20
- "@cimplify/sdk": "^0.64.1",
20
+ "@cimplify/sdk": "^0.67.0",
21
21
  "next": "^16.2.6",
22
22
  "react": "^19.0.0",
23
23
  "react-dom": "^19.0.0"