create-brainerce-store 1.17.0 → 1.19.0
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.
- package/dist/index.js +31 -9
- package/messages/en.json +366 -359
- package/messages/he.json +366 -359
- package/package.json +45 -45
- package/templates/nextjs/base/next.config.ts +31 -31
- package/templates/nextjs/base/scripts/fetch-store-info.mjs +81 -81
- package/templates/nextjs/base/src/app/.well-known/apple-developer-merchantid-domain-association/route.ts +26 -26
- package/templates/nextjs/base/src/app/account/layout.tsx +9 -9
- package/templates/nextjs/base/src/app/account/page.tsx +122 -122
- package/templates/nextjs/base/src/app/api/auth/logout/route.ts +14 -14
- package/templates/nextjs/base/src/app/api/auth/me/route.ts +56 -56
- package/templates/nextjs/base/src/app/api/auth/oauth-callback/route.ts +59 -59
- package/templates/nextjs/base/src/app/api/auth/reset-callback/route.ts +41 -41
- package/templates/nextjs/base/src/app/api/auth/reset-password/route.ts +77 -77
- package/templates/nextjs/base/src/app/api/store/[...path]/route.ts +198 -198
- package/templates/nextjs/base/src/app/auth/callback/page.tsx +92 -92
- package/templates/nextjs/base/src/app/cart/layout.tsx +9 -9
- package/templates/nextjs/base/src/app/cart/page.tsx +204 -199
- package/templates/nextjs/base/src/app/checkout/layout.tsx +9 -9
- package/templates/nextjs/base/src/app/checkout/page.tsx +860 -860
- package/templates/nextjs/base/src/app/forgot-password/page.tsx +112 -112
- package/templates/nextjs/base/src/app/layout.tsx.ejs +75 -0
- package/templates/nextjs/base/src/app/login/layout.tsx +9 -9
- package/templates/nextjs/base/src/app/login/page.tsx +59 -59
- package/templates/nextjs/base/src/app/order-confirmation/layout.tsx +9 -9
- package/templates/nextjs/base/src/app/order-confirmation/page.tsx +254 -254
- package/templates/nextjs/base/src/app/products/[slug]/page.tsx +67 -67
- package/templates/nextjs/base/src/app/products/[slug]/product-client-section.tsx +486 -486
- package/templates/nextjs/base/src/app/products/layout.tsx +18 -18
- package/templates/nextjs/base/src/app/products/page.tsx +431 -431
- package/templates/nextjs/base/src/app/register/layout.tsx +9 -9
- package/templates/nextjs/base/src/app/register/page.tsx +65 -65
- package/templates/nextjs/base/src/app/reset-password/page.tsx +132 -132
- package/templates/nextjs/base/src/app/robots.ts +14 -14
- package/templates/nextjs/base/src/app/sitemap.ts +25 -25
- package/templates/nextjs/base/src/app/verify-email/page.tsx +258 -258
- package/templates/nextjs/base/src/components/account/address-book.tsx +432 -432
- package/templates/nextjs/base/src/components/account/order-history.tsx +350 -350
- package/templates/nextjs/base/src/components/auth/oauth-buttons.tsx +137 -137
- package/templates/nextjs/base/src/components/auth/register-form.tsx +232 -232
- package/templates/nextjs/base/src/components/cart/cart-bundle-offer.tsx +247 -111
- package/templates/nextjs/base/src/components/cart/cart-item.tsx +153 -153
- package/templates/nextjs/base/src/components/cart/cart-upgrade-banner.tsx +142 -142
- package/templates/nextjs/base/src/components/cart/free-shipping-bar.tsx +59 -59
- package/templates/nextjs/base/src/components/checkout/checkout-form.tsx +415 -415
- package/templates/nextjs/base/src/components/checkout/order-bump-card.tsx +243 -83
- package/templates/nextjs/base/src/components/checkout/payment-step.tsx +519 -473
- package/templates/nextjs/base/src/components/layout/footer.tsx +41 -41
- package/templates/nextjs/base/src/components/layout/header.tsx +336 -336
- package/templates/nextjs/base/src/components/layout/language-switcher.tsx.ejs +63 -0
- package/templates/nextjs/base/src/components/products/discount-badge.tsx +22 -22
- package/templates/nextjs/base/src/components/products/frequently-bought-together.tsx +202 -202
- package/templates/nextjs/base/src/components/products/product-card.tsx +218 -218
- package/templates/nextjs/base/src/components/products/recommendation-section.tsx +107 -107
- package/templates/nextjs/base/src/components/products/stock-badge.tsx +63 -63
- package/templates/nextjs/base/src/components/products/variant-selector.tsx +292 -292
- package/templates/nextjs/base/src/components/seo/product-json-ld.tsx +72 -72
- package/templates/nextjs/base/src/i18n.ts.ejs +21 -0
- package/templates/nextjs/base/src/lib/auth.ts +149 -149
- package/templates/nextjs/base/src/lib/brainerce.ts.ejs +9 -0
- package/templates/nextjs/base/src/lib/translations.ts.ejs +31 -0
- package/templates/nextjs/base/src/middleware.ts.ejs +81 -0
- package/templates/nextjs/base/src/providers/store-provider.tsx.ejs +41 -0
- package/templates/nextjs/base/src/lib/translations.ts +0 -11
- package/templates/nextjs/base/src/middleware.ts +0 -25
|
@@ -1,137 +1,137 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import { useState, useEffect } from 'react';
|
|
4
|
-
import type { CustomerOAuthProvider } from 'brainerce';
|
|
5
|
-
import { getClient } from '@/lib/brainerce';
|
|
6
|
-
import { useTranslations } from '@/lib/translations';
|
|
7
|
-
import { cn } from '@/lib/utils';
|
|
8
|
-
import { LoadingSpinner } from '@/components/shared/loading-spinner';
|
|
9
|
-
|
|
10
|
-
const PROVIDER_CONFIG: Record<CustomerOAuthProvider, { labelKey: string; icon: React.ReactNode }> =
|
|
11
|
-
{
|
|
12
|
-
GOOGLE: {
|
|
13
|
-
labelKey: 'google',
|
|
14
|
-
icon: (
|
|
15
|
-
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
|
|
16
|
-
<path
|
|
17
|
-
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 01-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z"
|
|
18
|
-
fill="#4285F4"
|
|
19
|
-
/>
|
|
20
|
-
<path
|
|
21
|
-
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
22
|
-
fill="#34A853"
|
|
23
|
-
/>
|
|
24
|
-
<path
|
|
25
|
-
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"
|
|
26
|
-
fill="#FBBC05"
|
|
27
|
-
/>
|
|
28
|
-
<path
|
|
29
|
-
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
30
|
-
fill="#EA4335"
|
|
31
|
-
/>
|
|
32
|
-
</svg>
|
|
33
|
-
),
|
|
34
|
-
},
|
|
35
|
-
FACEBOOK: {
|
|
36
|
-
labelKey: 'facebook',
|
|
37
|
-
icon: (
|
|
38
|
-
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="#1877F2">
|
|
39
|
-
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z" />
|
|
40
|
-
</svg>
|
|
41
|
-
),
|
|
42
|
-
},
|
|
43
|
-
GITHUB: {
|
|
44
|
-
labelKey: 'github',
|
|
45
|
-
icon: (
|
|
46
|
-
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
|
|
47
|
-
<path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z" />
|
|
48
|
-
</svg>
|
|
49
|
-
),
|
|
50
|
-
},
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
interface OAuthButtonsProps {
|
|
54
|
-
className?: string;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
export function OAuthButtons({ className }: OAuthButtonsProps) {
|
|
58
|
-
const t = useTranslations('auth');
|
|
59
|
-
const [providers, setProviders] = useState<CustomerOAuthProvider[]>([]);
|
|
60
|
-
const [loading, setLoading] = useState(true);
|
|
61
|
-
const [redirecting, setRedirecting] = useState<CustomerOAuthProvider | null>(null);
|
|
62
|
-
|
|
63
|
-
useEffect(() => {
|
|
64
|
-
async function fetchProviders() {
|
|
65
|
-
try {
|
|
66
|
-
const client = getClient();
|
|
67
|
-
const result = await client.getAvailableOAuthProviders();
|
|
68
|
-
setProviders(result.providers);
|
|
69
|
-
} catch {
|
|
70
|
-
// OAuth not available - silently hide buttons
|
|
71
|
-
setProviders([]);
|
|
72
|
-
} finally {
|
|
73
|
-
setLoading(false);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
fetchProviders();
|
|
78
|
-
}, []);
|
|
79
|
-
|
|
80
|
-
async function handleOAuthClick(provider: CustomerOAuthProvider) {
|
|
81
|
-
if (redirecting) return;
|
|
82
|
-
|
|
83
|
-
try {
|
|
84
|
-
setRedirecting(provider);
|
|
85
|
-
const client = getClient();
|
|
86
|
-
const redirectUrl = window.location.origin + '/api/auth/oauth-callback';
|
|
87
|
-
const result = await client.getOAuthAuthorizeUrl(provider, { redirectUrl });
|
|
88
|
-
window.location.href = result.authorizationUrl;
|
|
89
|
-
} catch (err) {
|
|
90
|
-
console.error('OAuth redirect failed:', err);
|
|
91
|
-
setRedirecting(null);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
if (loading) {
|
|
96
|
-
return null;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
if (providers.length === 0) {
|
|
100
|
-
return null;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
return (
|
|
104
|
-
<div className={cn('space-y-3', className)}>
|
|
105
|
-
<div className="relative">
|
|
106
|
-
<div className="absolute inset-0 flex items-center">
|
|
107
|
-
<div className="border-border w-full border-t" />
|
|
108
|
-
</div>
|
|
109
|
-
<div className="relative flex justify-center text-xs uppercase">
|
|
110
|
-
<span className="bg-background text-muted-foreground px-2">{t('orContinueWith')}</span>
|
|
111
|
-
</div>
|
|
112
|
-
</div>
|
|
113
|
-
|
|
114
|
-
<div className="grid gap-2">
|
|
115
|
-
{providers.map((provider) => {
|
|
116
|
-
const config = PROVIDER_CONFIG[provider];
|
|
117
|
-
if (!config) return null;
|
|
118
|
-
|
|
119
|
-
const isRedirecting = redirecting === provider;
|
|
120
|
-
|
|
121
|
-
return (
|
|
122
|
-
<button
|
|
123
|
-
key={provider}
|
|
124
|
-
type="button"
|
|
125
|
-
onClick={() => handleOAuthClick(provider)}
|
|
126
|
-
disabled={!!redirecting}
|
|
127
|
-
className="border-border text-foreground bg-background hover:bg-muted flex h-10 w-full items-center justify-center gap-2 rounded border text-sm font-medium transition-colors disabled:cursor-not-allowed disabled:opacity-50"
|
|
128
|
-
>
|
|
129
|
-
{isRedirecting ? <LoadingSpinner size="sm" /> : config.icon}
|
|
130
|
-
{t(config.labelKey as 'google' | 'facebook' | 'github')}
|
|
131
|
-
</button>
|
|
132
|
-
);
|
|
133
|
-
})}
|
|
134
|
-
</div>
|
|
135
|
-
</div>
|
|
136
|
-
);
|
|
137
|
-
}
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useState, useEffect } from 'react';
|
|
4
|
+
import type { CustomerOAuthProvider } from 'brainerce';
|
|
5
|
+
import { getClient } from '@/lib/brainerce';
|
|
6
|
+
import { useTranslations } from '@/lib/translations';
|
|
7
|
+
import { cn } from '@/lib/utils';
|
|
8
|
+
import { LoadingSpinner } from '@/components/shared/loading-spinner';
|
|
9
|
+
|
|
10
|
+
const PROVIDER_CONFIG: Record<CustomerOAuthProvider, { labelKey: string; icon: React.ReactNode }> =
|
|
11
|
+
{
|
|
12
|
+
GOOGLE: {
|
|
13
|
+
labelKey: 'google',
|
|
14
|
+
icon: (
|
|
15
|
+
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
|
|
16
|
+
<path
|
|
17
|
+
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 01-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z"
|
|
18
|
+
fill="#4285F4"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
22
|
+
fill="#34A853"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"
|
|
26
|
+
fill="#FBBC05"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
30
|
+
fill="#EA4335"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
),
|
|
34
|
+
},
|
|
35
|
+
FACEBOOK: {
|
|
36
|
+
labelKey: 'facebook',
|
|
37
|
+
icon: (
|
|
38
|
+
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="#1877F2">
|
|
39
|
+
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z" />
|
|
40
|
+
</svg>
|
|
41
|
+
),
|
|
42
|
+
},
|
|
43
|
+
GITHUB: {
|
|
44
|
+
labelKey: 'github',
|
|
45
|
+
icon: (
|
|
46
|
+
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
|
|
47
|
+
<path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z" />
|
|
48
|
+
</svg>
|
|
49
|
+
),
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
interface OAuthButtonsProps {
|
|
54
|
+
className?: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function OAuthButtons({ className }: OAuthButtonsProps) {
|
|
58
|
+
const t = useTranslations('auth');
|
|
59
|
+
const [providers, setProviders] = useState<CustomerOAuthProvider[]>([]);
|
|
60
|
+
const [loading, setLoading] = useState(true);
|
|
61
|
+
const [redirecting, setRedirecting] = useState<CustomerOAuthProvider | null>(null);
|
|
62
|
+
|
|
63
|
+
useEffect(() => {
|
|
64
|
+
async function fetchProviders() {
|
|
65
|
+
try {
|
|
66
|
+
const client = getClient();
|
|
67
|
+
const result = await client.getAvailableOAuthProviders();
|
|
68
|
+
setProviders(result.providers);
|
|
69
|
+
} catch {
|
|
70
|
+
// OAuth not available - silently hide buttons
|
|
71
|
+
setProviders([]);
|
|
72
|
+
} finally {
|
|
73
|
+
setLoading(false);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
fetchProviders();
|
|
78
|
+
}, []);
|
|
79
|
+
|
|
80
|
+
async function handleOAuthClick(provider: CustomerOAuthProvider) {
|
|
81
|
+
if (redirecting) return;
|
|
82
|
+
|
|
83
|
+
try {
|
|
84
|
+
setRedirecting(provider);
|
|
85
|
+
const client = getClient();
|
|
86
|
+
const redirectUrl = window.location.origin + '/api/auth/oauth-callback';
|
|
87
|
+
const result = await client.getOAuthAuthorizeUrl(provider, { redirectUrl });
|
|
88
|
+
window.location.href = result.authorizationUrl;
|
|
89
|
+
} catch (err) {
|
|
90
|
+
console.error('OAuth redirect failed:', err);
|
|
91
|
+
setRedirecting(null);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
if (loading) {
|
|
96
|
+
return null;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (providers.length === 0) {
|
|
100
|
+
return null;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return (
|
|
104
|
+
<div className={cn('space-y-3', className)}>
|
|
105
|
+
<div className="relative">
|
|
106
|
+
<div className="absolute inset-0 flex items-center">
|
|
107
|
+
<div className="border-border w-full border-t" />
|
|
108
|
+
</div>
|
|
109
|
+
<div className="relative flex justify-center text-xs uppercase">
|
|
110
|
+
<span className="bg-background text-muted-foreground px-2">{t('orContinueWith')}</span>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
|
|
114
|
+
<div className="grid gap-2">
|
|
115
|
+
{providers.map((provider) => {
|
|
116
|
+
const config = PROVIDER_CONFIG[provider];
|
|
117
|
+
if (!config) return null;
|
|
118
|
+
|
|
119
|
+
const isRedirecting = redirecting === provider;
|
|
120
|
+
|
|
121
|
+
return (
|
|
122
|
+
<button
|
|
123
|
+
key={provider}
|
|
124
|
+
type="button"
|
|
125
|
+
onClick={() => handleOAuthClick(provider)}
|
|
126
|
+
disabled={!!redirecting}
|
|
127
|
+
className="border-border text-foreground bg-background hover:bg-muted flex h-10 w-full items-center justify-center gap-2 rounded border text-sm font-medium transition-colors disabled:cursor-not-allowed disabled:opacity-50"
|
|
128
|
+
>
|
|
129
|
+
{isRedirecting ? <LoadingSpinner size="sm" /> : config.icon}
|
|
130
|
+
{t(config.labelKey as 'google' | 'facebook' | 'github')}
|
|
131
|
+
</button>
|
|
132
|
+
);
|
|
133
|
+
})}
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
);
|
|
137
|
+
}
|