@luxfi/core 4.4.10 → 4.4.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.
- package/components/access-code-input.tsx +71 -71
- package/components/auth/auth-listener.tsx +23 -41
- package/components/auth/auth-token/clear-auth-token.tsx +12 -0
- package/components/auth/auth-token/set-auth-token.tsx +16 -0
- package/components/auth/common-auth-domains.ts +16 -15
- package/components/auth/login-panel.tsx +119 -117
- package/components/chat-widget.tsx +77 -77
- package/components/commerce/bag-button.tsx +67 -67
- package/components/commerce/checkout-panel/close-button.tsx +26 -26
- package/components/commerce/checkout-panel/dt-bag-carousel.tsx +36 -36
- package/components/commerce/checkout-panel/dt-checkout-panel.tsx +66 -66
- package/components/commerce/checkout-panel/index.tsx +123 -123
- package/components/commerce/checkout-panel/links-row.tsx +21 -21
- package/components/commerce/checkout-panel/mb-checkout-panel.tsx +55 -55
- package/components/commerce/checkout-panel/steps-indicator.tsx +39 -39
- package/components/commerce/checkout-panel/thank-you.tsx +18 -18
- package/components/commerce/desktop-bag-popup.tsx +78 -78
- package/components/commerce/mobile-bag-drawer.tsx +51 -51
- package/components/commerce/mobile-menu-toggle-button.tsx +35 -35
- package/components/commerce/mobile-nav-menu.tsx +64 -64
- package/components/contact-dialog/contact-form.tsx +112 -112
- package/components/contact-dialog/disclaimer.tsx +13 -13
- package/components/contact-dialog/index.tsx +64 -64
- package/components/copyright.tsx +21 -21
- package/components/footer.tsx +77 -77
- package/components/header/desktop.tsx +54 -54
- package/components/header/index.tsx +26 -26
- package/components/header/mobile.tsx +161 -161
- package/components/header/theme-toggle.tsx +26 -26
- package/components/icons/bag-icon.tsx +10 -10
- package/components/icons/github.tsx +14 -14
- package/components/icons/index.tsx +35 -35
- package/components/icons/lux-logo.tsx +10 -10
- package/components/icons/secure-delivery.tsx +13 -13
- package/components/icons/social-icon.tsx +35 -35
- package/components/icons/social-svg.css +3 -3
- package/components/icons/youtube-logo.tsx +59 -59
- package/components/index.ts +27 -27
- package/components/logo.tsx +81 -81
- package/components/mini-chart/index.tsx +7 -7
- package/components/mini-chart/mini-chart-props.ts +43 -43
- package/components/mini-chart/mini-chart.tsx +85 -85
- package/components/mini-chart/wrapper.tsx +23 -23
- package/components/not-found/index.tsx +27 -27
- package/components/not-found/not-found-content.mdx +5 -5
- package/components/root-layout.tsx +71 -71
- package/components/scripts.tsx +23 -23
- package/conf/index.ts +50 -50
- package/environment.d.ts +5 -5
- package/next/analytics/fpixel.ts +15 -15
- package/next/analytics/google-analytics.ts +13 -13
- package/next/analytics/index.ts +3 -3
- package/next/analytics/pixel-analytics.tsx +54 -54
- package/next/determine-device-mw.ts +16 -16
- package/next/font/get-app-router-font-classes.ts +12 -12
- package/next/font/load-and-return-lux-next-fonts-on-import.ts +68 -68
- package/next/font/next-font-desc.ts +27 -27
- package/next/font/pages-router-font-vars.tsx +18 -18
- package/next/head-metadata/from-next/metadata-types.ts +158 -158
- package/next/head-metadata/from-next/opengraph-types.ts +267 -267
- package/next/head-metadata/from-next/twitter-types.ts +92 -92
- package/next/head-metadata/index.tsx +208 -208
- package/package.json +73 -73
- package/server-actions/firebase-app.ts +14 -14
- package/server-actions/index.ts +5 -5
- package/server-actions/store-contact.ts +51 -51
- package/site-def/footer/community.tsx +67 -67
- package/site-def/footer/company.ts +37 -37
- package/site-def/footer/ecosystem.ts +37 -37
- package/site-def/footer/index.tsx +26 -26
- package/site-def/footer/legal.ts +28 -28
- package/site-def/footer/network.ts +45 -45
- package/site-def/footer/svg/warpcast-logo.svg +11 -11
- package/site-def/index.ts +2 -2
- package/site-def/main-nav.ts +35 -35
- package/site-def/site-def.ts +36 -36
- package/style/lux-colors.css +85 -85
- package/style/lux-global.css +30 -30
- package/tailwind/fontFamily.tailwind.lux.ts +18 -18
- package/tailwind/index.ts +2 -2
- package/tailwind/lux-tw-fonts.ts +39 -39
- package/tailwind/tailwind.config.lux-preset.ts +10 -10
- package/tsconfig.json +10 -10
- package/types/contact-info.ts +10 -10
@@ -1,124 +1,124 @@
|
|
1
|
-
'use client'
|
2
|
-
import React, { useEffect, useRef, useState } from 'react'
|
3
|
-
|
4
|
-
import { capitalize, cn } from '@hanzo/ui/util'
|
5
|
-
|
6
|
-
import { useCommerce, ShippingStepForm, PaymentStepForm } from '@hanzo/commerce'
|
7
|
-
import type { CheckoutStep } from '@hanzo/commerce/types'
|
8
|
-
|
9
|
-
import ThankYou from './thank-you'
|
10
|
-
|
11
|
-
const STEPS = [
|
12
|
-
{
|
13
|
-
name: 'payment',
|
14
|
-
Comp: PaymentStepForm
|
15
|
-
},
|
16
|
-
{
|
17
|
-
name: 'delivery',
|
18
|
-
Comp: ShippingStepForm
|
19
|
-
},
|
20
|
-
{
|
21
|
-
name: 'done',
|
22
|
-
label: 'Done!',
|
23
|
-
Comp: ThankYou
|
24
|
-
}
|
25
|
-
] satisfies CheckoutStep[]
|
26
|
-
|
27
|
-
const STEP_NAMES = STEPS.map((s) => (s.label ? s.label : capitalize(s.name)))
|
28
|
-
|
29
|
-
import DesktopCP from './dt-checkout-panel'
|
30
|
-
import MobileCP from './mb-checkout-panel'
|
31
|
-
|
32
|
-
const CheckoutPanel: React.FC<{
|
33
|
-
close: () => void
|
34
|
-
className?: string
|
35
|
-
}> = ({
|
36
|
-
close,
|
37
|
-
className=''
|
38
|
-
}) => {
|
39
|
-
|
40
|
-
const cmmc = useCommerce()
|
41
|
-
|
42
|
-
// For sites that don't initialize cmmc
|
43
|
-
if (!cmmc) {
|
44
|
-
return <></>
|
45
|
-
}
|
46
|
-
const [stepIndex, setStepIndex] = useState<number>(0)
|
47
|
-
const [orderId, setOrderId] = useState<string | undefined>(undefined)
|
48
|
-
|
49
|
-
// Step.name or 'first' or 'next' or 'last'
|
50
|
-
const setStep = (name: string): void => {
|
51
|
-
|
52
|
-
if (name === 'first') {
|
53
|
-
setStepIndex(0)
|
54
|
-
}
|
55
|
-
else if (name === 'last') {
|
56
|
-
setStepIndex(STEPS.length - 1)
|
57
|
-
}
|
58
|
-
else if (name === 'next') {
|
59
|
-
if (stepIndex <= STEPS.length - 2) {
|
60
|
-
setStepIndex(stepIndex + 1)
|
61
|
-
}
|
62
|
-
else {
|
63
|
-
throw new Error('CheckoutPanel.setStep(): Attempting to advance past last step!')
|
64
|
-
}
|
65
|
-
}
|
66
|
-
else {
|
67
|
-
const indexFound = STEPS.findIndex((el) => (el.name === name))
|
68
|
-
if (indexFound !== -1) {
|
69
|
-
setStepIndex(indexFound)
|
70
|
-
}
|
71
|
-
else {
|
72
|
-
throw new Error('CheckoutPanel.setStep(): Step named ' + name + ' not found!')
|
73
|
-
}
|
74
|
-
}
|
75
|
-
}
|
76
|
-
|
77
|
-
const _close = () => {
|
78
|
-
setStep('first')
|
79
|
-
close()
|
80
|
-
}
|
81
|
-
|
82
|
-
// Determine if mobile or desktop based on visibility of desktopElement
|
83
|
-
// https://stackoverflow.com/a/21696585/11378853
|
84
|
-
const desktopElement = useRef<HTMLDivElement | null>(null)
|
85
|
-
const [layout, setLayout] = useState<'mobile' | 'desktop' | undefined>()
|
86
|
-
useEffect(() => {
|
87
|
-
const checkLayout = () => {
|
88
|
-
setLayout(!!desktopElement.current?.offsetParent ? 'desktop' : 'mobile')
|
89
|
-
}
|
90
|
-
|
91
|
-
// initial layout check
|
92
|
-
checkLayout()
|
93
|
-
|
94
|
-
window.addEventListener('resize', checkLayout)
|
95
|
-
return () => {
|
96
|
-
window.removeEventListener('resize', checkLayout)
|
97
|
-
}
|
98
|
-
}, [])
|
99
|
-
|
100
|
-
const StepToRender = STEPS[stepIndex].Comp
|
101
|
-
|
102
|
-
return (<>
|
103
|
-
<DesktopCP
|
104
|
-
className={cn('h-full', className, 'hidden md:flex')}
|
105
|
-
close={_close}
|
106
|
-
index={stepIndex}
|
107
|
-
stepNames={STEP_NAMES}
|
108
|
-
>
|
109
|
-
{/* Element required to determine if DesktopCP is visible */}
|
110
|
-
<div ref={desktopElement}/>
|
111
|
-
{layout === 'desktop' && <StepToRender onDone={() => {setStep('next')}} orderId={orderId} setOrderId={setOrderId}/>}
|
112
|
-
</DesktopCP>
|
113
|
-
<MobileCP
|
114
|
-
className={cn('h-full overflow-y-auto', className, 'md:hidden' )}
|
115
|
-
close={_close}
|
116
|
-
index={stepIndex}
|
117
|
-
stepNames={STEP_NAMES}
|
118
|
-
>
|
119
|
-
{layout === 'mobile' && <StepToRender onDone={() => {setStep('next')}} orderId={orderId} setOrderId={setOrderId}/>}
|
120
|
-
</MobileCP>
|
121
|
-
</>)
|
122
|
-
}
|
123
|
-
|
1
|
+
'use client'
|
2
|
+
import React, { useEffect, useRef, useState } from 'react'
|
3
|
+
|
4
|
+
import { capitalize, cn } from '@hanzo/ui/util'
|
5
|
+
|
6
|
+
import { useCommerce, ShippingStepForm, PaymentStepForm } from '@hanzo/commerce'
|
7
|
+
import type { CheckoutStep } from '@hanzo/commerce/types'
|
8
|
+
|
9
|
+
import ThankYou from './thank-you'
|
10
|
+
|
11
|
+
const STEPS = [
|
12
|
+
{
|
13
|
+
name: 'payment',
|
14
|
+
Comp: PaymentStepForm
|
15
|
+
},
|
16
|
+
{
|
17
|
+
name: 'delivery',
|
18
|
+
Comp: ShippingStepForm
|
19
|
+
},
|
20
|
+
{
|
21
|
+
name: 'done',
|
22
|
+
label: 'Done!',
|
23
|
+
Comp: ThankYou
|
24
|
+
}
|
25
|
+
] satisfies CheckoutStep[]
|
26
|
+
|
27
|
+
const STEP_NAMES = STEPS.map((s) => (s.label ? s.label : capitalize(s.name)))
|
28
|
+
|
29
|
+
import DesktopCP from './dt-checkout-panel'
|
30
|
+
import MobileCP from './mb-checkout-panel'
|
31
|
+
|
32
|
+
const CheckoutPanel: React.FC<{
|
33
|
+
close: () => void
|
34
|
+
className?: string
|
35
|
+
}> = ({
|
36
|
+
close,
|
37
|
+
className=''
|
38
|
+
}) => {
|
39
|
+
|
40
|
+
const cmmc = useCommerce()
|
41
|
+
|
42
|
+
// For sites that don't initialize cmmc
|
43
|
+
if (!cmmc) {
|
44
|
+
return <></>
|
45
|
+
}
|
46
|
+
const [stepIndex, setStepIndex] = useState<number>(0)
|
47
|
+
const [orderId, setOrderId] = useState<string | undefined>(undefined)
|
48
|
+
|
49
|
+
// Step.name or 'first' or 'next' or 'last'
|
50
|
+
const setStep = (name: string): void => {
|
51
|
+
|
52
|
+
if (name === 'first') {
|
53
|
+
setStepIndex(0)
|
54
|
+
}
|
55
|
+
else if (name === 'last') {
|
56
|
+
setStepIndex(STEPS.length - 1)
|
57
|
+
}
|
58
|
+
else if (name === 'next') {
|
59
|
+
if (stepIndex <= STEPS.length - 2) {
|
60
|
+
setStepIndex(stepIndex + 1)
|
61
|
+
}
|
62
|
+
else {
|
63
|
+
throw new Error('CheckoutPanel.setStep(): Attempting to advance past last step!')
|
64
|
+
}
|
65
|
+
}
|
66
|
+
else {
|
67
|
+
const indexFound = STEPS.findIndex((el) => (el.name === name))
|
68
|
+
if (indexFound !== -1) {
|
69
|
+
setStepIndex(indexFound)
|
70
|
+
}
|
71
|
+
else {
|
72
|
+
throw new Error('CheckoutPanel.setStep(): Step named ' + name + ' not found!')
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
const _close = () => {
|
78
|
+
setStep('first')
|
79
|
+
close()
|
80
|
+
}
|
81
|
+
|
82
|
+
// Determine if mobile or desktop based on visibility of desktopElement
|
83
|
+
// https://stackoverflow.com/a/21696585/11378853
|
84
|
+
const desktopElement = useRef<HTMLDivElement | null>(null)
|
85
|
+
const [layout, setLayout] = useState<'mobile' | 'desktop' | undefined>()
|
86
|
+
useEffect(() => {
|
87
|
+
const checkLayout = () => {
|
88
|
+
setLayout(!!desktopElement.current?.offsetParent ? 'desktop' : 'mobile')
|
89
|
+
}
|
90
|
+
|
91
|
+
// initial layout check
|
92
|
+
checkLayout()
|
93
|
+
|
94
|
+
window.addEventListener('resize', checkLayout)
|
95
|
+
return () => {
|
96
|
+
window.removeEventListener('resize', checkLayout)
|
97
|
+
}
|
98
|
+
}, [])
|
99
|
+
|
100
|
+
const StepToRender = STEPS[stepIndex].Comp
|
101
|
+
|
102
|
+
return (<>
|
103
|
+
<DesktopCP
|
104
|
+
className={cn('h-full', className, 'hidden md:flex')}
|
105
|
+
close={_close}
|
106
|
+
index={stepIndex}
|
107
|
+
stepNames={STEP_NAMES}
|
108
|
+
>
|
109
|
+
{/* Element required to determine if DesktopCP is visible */}
|
110
|
+
<div ref={desktopElement}/>
|
111
|
+
{layout === 'desktop' && <StepToRender onDone={() => {setStep('next')}} orderId={orderId} setOrderId={setOrderId}/>}
|
112
|
+
</DesktopCP>
|
113
|
+
<MobileCP
|
114
|
+
className={cn('h-full overflow-y-auto', className, 'md:hidden' )}
|
115
|
+
close={_close}
|
116
|
+
index={stepIndex}
|
117
|
+
stepNames={STEP_NAMES}
|
118
|
+
>
|
119
|
+
{layout === 'mobile' && <StepToRender onDone={() => {setStep('next')}} orderId={orderId} setOrderId={setOrderId}/>}
|
120
|
+
</MobileCP>
|
121
|
+
</>)
|
122
|
+
}
|
123
|
+
|
124
124
|
export default CheckoutPanel
|
@@ -1,21 +1,21 @@
|
|
1
|
-
import Link from 'next/link'
|
2
|
-
|
3
|
-
import { Separator } from '@hanzo/ui/primitives'
|
4
|
-
import { cn } from '@hanzo/ui/util'
|
5
|
-
|
6
|
-
const LinksRow: React.FC<{
|
7
|
-
className?: string
|
8
|
-
}> = ({
|
9
|
-
className=''
|
10
|
-
}) => (
|
11
|
-
<div className={cn('flex flex-col', className)}>
|
12
|
-
<Separator/>
|
13
|
-
<div className='flex gap-4 text-sm py-2'>
|
14
|
-
{/* TODO: add Refund policy and Privacy policy links */}
|
15
|
-
<Link href=''>Refund policy</Link>
|
16
|
-
<Link href=''>Privacy policy</Link>
|
17
|
-
</div>
|
18
|
-
</div>
|
19
|
-
)
|
20
|
-
|
21
|
-
export default LinksRow
|
1
|
+
import Link from 'next/link'
|
2
|
+
|
3
|
+
import { Separator } from '@hanzo/ui/primitives'
|
4
|
+
import { cn } from '@hanzo/ui/util'
|
5
|
+
|
6
|
+
const LinksRow: React.FC<{
|
7
|
+
className?: string
|
8
|
+
}> = ({
|
9
|
+
className=''
|
10
|
+
}) => (
|
11
|
+
<div className={cn('flex flex-col', className)}>
|
12
|
+
<Separator/>
|
13
|
+
<div className='flex gap-4 text-sm py-2'>
|
14
|
+
{/* TODO: add Refund policy and Privacy policy links */}
|
15
|
+
<Link href=''>Refund policy</Link>
|
16
|
+
<Link href=''>Privacy policy</Link>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
)
|
20
|
+
|
21
|
+
export default LinksRow
|
@@ -1,56 +1,56 @@
|
|
1
|
-
'use client'
|
2
|
-
import React, { type PropsWithChildren } from 'react'
|
3
|
-
|
4
|
-
import { StepIndicator } from '@hanzo/ui/primitives'
|
5
|
-
import { cn } from '@hanzo/ui/util'
|
6
|
-
import { AuthWidget } from '@hanzo/auth/components'
|
7
|
-
import { CartAccordian } from '@hanzo/commerce'
|
8
|
-
|
9
|
-
import CloseButton from './close-button'
|
10
|
-
import BagButton from '../bag-button'
|
11
|
-
import LinksRow from './links-row'
|
12
|
-
|
13
|
-
const MobileCheckoutPanel: React.FC<PropsWithChildren & {
|
14
|
-
index: number
|
15
|
-
stepNames: string[]
|
16
|
-
close:() => void
|
17
|
-
className?: string
|
18
|
-
}> = ({
|
19
|
-
index,
|
20
|
-
stepNames,
|
21
|
-
close,
|
22
|
-
className='',
|
23
|
-
children
|
24
|
-
}) => (
|
25
|
-
|
26
|
-
<div /* id='MOBILE_GRID' */ className={cn('bg-background flex flex-col justify-start px-4', className)}>
|
27
|
-
<div className='sticky top-0 w-full flex flex-row justify-between items-center bg-background'>
|
28
|
-
<CloseButton close={close} size='xs' />
|
29
|
-
{/* Need wrapper div since 'noLogin' returns null if no logged in user */}
|
30
|
-
<div className='w-10 h-10 flex items-center justify-center'><AuthWidget noLogin className=''/></div>
|
31
|
-
</div>
|
32
|
-
<CartAccordian
|
33
|
-
icon={
|
34
|
-
<BagButton
|
35
|
-
noHoverEffects
|
36
|
-
showIfEmpty
|
37
|
-
size='sm'
|
38
|
-
className=
|
39
|
-
'mr-1 relative w-5 h-6 sm:w-6 sm:h-7 '
|
40
|
-
iconClx='fill-foreground '
|
41
|
-
/>
|
42
|
-
}
|
43
|
-
className='flex items-center justify-center w-full'
|
44
|
-
/>
|
45
|
-
<StepIndicator
|
46
|
-
dotSizeRem={1}
|
47
|
-
steps={stepNames}
|
48
|
-
currentStep={index}
|
49
|
-
className='text-xs font-semibold w-full pb-3'
|
50
|
-
/>
|
51
|
-
{children}
|
52
|
-
<LinksRow className='mt-auto mb-3 pt-2' />
|
53
|
-
</div>
|
54
|
-
)
|
55
|
-
|
1
|
+
'use client'
|
2
|
+
import React, { type PropsWithChildren } from 'react'
|
3
|
+
|
4
|
+
import { StepIndicator } from '@hanzo/ui/primitives'
|
5
|
+
import { cn } from '@hanzo/ui/util'
|
6
|
+
import { AuthWidget } from '@hanzo/auth/components'
|
7
|
+
import { CartAccordian } from '@hanzo/commerce'
|
8
|
+
|
9
|
+
import CloseButton from './close-button'
|
10
|
+
import BagButton from '../bag-button'
|
11
|
+
import LinksRow from './links-row'
|
12
|
+
|
13
|
+
const MobileCheckoutPanel: React.FC<PropsWithChildren & {
|
14
|
+
index: number
|
15
|
+
stepNames: string[]
|
16
|
+
close:() => void
|
17
|
+
className?: string
|
18
|
+
}> = ({
|
19
|
+
index,
|
20
|
+
stepNames,
|
21
|
+
close,
|
22
|
+
className='',
|
23
|
+
children
|
24
|
+
}) => (
|
25
|
+
|
26
|
+
<div /* id='MOBILE_GRID' */ className={cn('bg-background flex flex-col justify-start px-4', className)}>
|
27
|
+
<div className='sticky top-0 w-full flex flex-row justify-between items-center bg-background'>
|
28
|
+
<CloseButton close={close} size='xs' />
|
29
|
+
{/* Need wrapper div since 'noLogin' returns null if no logged in user */}
|
30
|
+
<div className='w-10 h-10 flex items-center justify-center'><AuthWidget noLogin className=''/></div>
|
31
|
+
</div>
|
32
|
+
<CartAccordian
|
33
|
+
icon={
|
34
|
+
<BagButton
|
35
|
+
noHoverEffects
|
36
|
+
showIfEmpty
|
37
|
+
size='sm'
|
38
|
+
className=
|
39
|
+
'mr-1 relative w-5 h-6 sm:w-6 sm:h-7 '
|
40
|
+
iconClx='fill-foreground '
|
41
|
+
/>
|
42
|
+
}
|
43
|
+
className='flex items-center justify-center w-full'
|
44
|
+
/>
|
45
|
+
<StepIndicator
|
46
|
+
dotSizeRem={1}
|
47
|
+
steps={stepNames}
|
48
|
+
currentStep={index}
|
49
|
+
className='text-xs font-semibold w-full pb-3'
|
50
|
+
/>
|
51
|
+
{children}
|
52
|
+
<LinksRow className='mt-auto mb-3 pt-2' />
|
53
|
+
</div>
|
54
|
+
)
|
55
|
+
|
56
56
|
export default MobileCheckoutPanel
|
@@ -1,39 +1,39 @@
|
|
1
|
-
import {
|
2
|
-
Breadcrumb,
|
3
|
-
BreadcrumbItem,
|
4
|
-
BreadcrumbLink,
|
5
|
-
BreadcrumbList,
|
6
|
-
BreadcrumbSeparator
|
7
|
-
} from '@hanzo/ui/primitives'
|
8
|
-
import { cn } from '@hanzo/ui/util'
|
9
|
-
|
10
|
-
const StepsIndicator: React.FC<{
|
11
|
-
currentStep: number
|
12
|
-
stepNames: string[]
|
13
|
-
className?: string
|
14
|
-
}> = ({
|
15
|
-
currentStep,
|
16
|
-
stepNames,
|
17
|
-
className=''
|
18
|
-
}) => (
|
19
|
-
<Breadcrumb className={className}>
|
20
|
-
<BreadcrumbList>
|
21
|
-
{stepNames.map((name, i) => (
|
22
|
-
<>
|
23
|
-
<BreadcrumbItem key={`item-${i}`}>
|
24
|
-
<BreadcrumbLink className={cn(
|
25
|
-
currentStep >= i ? '!text-foreground hover:text-foreground' : 'hover:text-muted-2',
|
26
|
-
'text-xxs sm:text-sm'
|
27
|
-
)}
|
28
|
-
>
|
29
|
-
{name}
|
30
|
-
</BreadcrumbLink>
|
31
|
-
</BreadcrumbItem>
|
32
|
-
{i !== stepNames.length - 1 && <BreadcrumbSeparator key={`sep-${i}`}/>}
|
33
|
-
</>
|
34
|
-
))}
|
35
|
-
</BreadcrumbList>
|
36
|
-
</Breadcrumb>
|
37
|
-
)
|
38
|
-
|
39
|
-
export default StepsIndicator
|
1
|
+
import {
|
2
|
+
Breadcrumb,
|
3
|
+
BreadcrumbItem,
|
4
|
+
BreadcrumbLink,
|
5
|
+
BreadcrumbList,
|
6
|
+
BreadcrumbSeparator
|
7
|
+
} from '@hanzo/ui/primitives'
|
8
|
+
import { cn } from '@hanzo/ui/util'
|
9
|
+
|
10
|
+
const StepsIndicator: React.FC<{
|
11
|
+
currentStep: number
|
12
|
+
stepNames: string[]
|
13
|
+
className?: string
|
14
|
+
}> = ({
|
15
|
+
currentStep,
|
16
|
+
stepNames,
|
17
|
+
className=''
|
18
|
+
}) => (
|
19
|
+
<Breadcrumb className={className}>
|
20
|
+
<BreadcrumbList>
|
21
|
+
{stepNames.map((name, i) => (
|
22
|
+
<>
|
23
|
+
<BreadcrumbItem key={`item-${i}`}>
|
24
|
+
<BreadcrumbLink className={cn(
|
25
|
+
currentStep >= i ? '!text-foreground hover:text-foreground' : 'hover:text-muted-2',
|
26
|
+
'text-xxs sm:text-sm'
|
27
|
+
)}
|
28
|
+
>
|
29
|
+
{name}
|
30
|
+
</BreadcrumbLink>
|
31
|
+
</BreadcrumbItem>
|
32
|
+
{i !== stepNames.length - 1 && <BreadcrumbSeparator key={`sep-${i}`}/>}
|
33
|
+
</>
|
34
|
+
))}
|
35
|
+
</BreadcrumbList>
|
36
|
+
</Breadcrumb>
|
37
|
+
)
|
38
|
+
|
39
|
+
export default StepsIndicator
|
@@ -1,18 +1,18 @@
|
|
1
|
-
import React from 'react'
|
2
|
-
import Link from 'next/link'
|
3
|
-
|
4
|
-
import { ApplyTypography } from '@hanzo/ui/primitives'
|
5
|
-
|
6
|
-
import type { CheckoutStepComponentProps } from '@hanzo/commerce/types'
|
7
|
-
|
8
|
-
const ThankYou: React.FC<CheckoutStepComponentProps> = ({}) => (
|
9
|
-
<ApplyTypography className='flex flex-col gap-4 text-center mt-10'>
|
10
|
-
<h3>Thank you for your order!</h3>
|
11
|
-
<h6>Once your payment has been confirmed, you'll recieve an email with additional information.</h6>
|
12
|
-
<p>
|
13
|
-
While you wait, we cordially invite you to join the <Link href='https://warpcast.com/~/channel/lux'>Lux Channel</Link> on <Link href='https://warpcast.com/~/invite-page/227706?id=fbc9ca91'>Warpcast</Link>.
|
14
|
-
</p>
|
15
|
-
</ApplyTypography>
|
16
|
-
)
|
17
|
-
|
18
|
-
export default ThankYou
|
1
|
+
import React from 'react'
|
2
|
+
import Link from 'next/link'
|
3
|
+
|
4
|
+
import { ApplyTypography } from '@hanzo/ui/primitives'
|
5
|
+
|
6
|
+
import type { CheckoutStepComponentProps } from '@hanzo/commerce/types'
|
7
|
+
|
8
|
+
const ThankYou: React.FC<CheckoutStepComponentProps> = ({}) => (
|
9
|
+
<ApplyTypography className='flex flex-col gap-4 text-center mt-10'>
|
10
|
+
<h3>Thank you for your order!</h3>
|
11
|
+
<h6>Once your payment has been confirmed, you'll recieve an email with additional information.</h6>
|
12
|
+
<p>
|
13
|
+
While you wait, we cordially invite you to join the <Link href='https://warpcast.com/~/channel/lux'>Lux Channel</Link> on <Link href='https://warpcast.com/~/invite-page/227706?id=fbc9ca91'>Warpcast</Link>.
|
14
|
+
</p>
|
15
|
+
</ApplyTypography>
|
16
|
+
)
|
17
|
+
|
18
|
+
export default ThankYou
|