This repository was archived by the owner on Jun 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty-state.tsx
97 lines (89 loc) · 2.65 KB
/
empty-state.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import type { ReactNode } from 'react'
import classNames from 'classnames'
import { Button } from '../elements/button'
import type { Icon } from '../elements/icon'
import type { Image } from '../elements/image'
import { Text } from '../elements/text'
type ButtonProps = {
value: string
href?: string
onClick?: () => void
icon?: Icon
iconPosition?: 'before' | 'after'
}
type Props = {
children?: never
title: string
text: string
image: Image
cta?: ButtonProps
secondaryCta?: ButtonProps
customCta?: ReactNode | ReactNode[]
center?: boolean
}
/* eslint-disable react/jsx-handler-names -- just passing down the functions */
const getCtaElements = (
cta: ButtonProps | undefined,
secondaryCta: ButtonProps | undefined,
customCta: ReactNode | ReactNode[] | undefined
): ReactNode | ReactNode[] => {
if (typeof customCta !== 'undefined') return customCta
return (
<>
{typeof secondaryCta !== 'undefined' && (
<Button
value={secondaryCta.value}
href={secondaryCta.href}
icon={secondaryCta.icon}
onClick={secondaryCta.onClick}
iconPosition={secondaryCta.iconPosition}
color='primary'
style='text'
/>
)}
{typeof cta !== 'undefined' && (
<Button
value={cta.value}
href={cta.href}
icon={cta.icon}
onClick={cta.onClick}
iconPosition={cta.iconPosition}
color='primary'
/>
)}
</>
)
}
/* eslint-enable react/jsx-handler-names -- just passing down the functions */
export const EmptyState = ({
title,
text,
image,
cta,
secondaryCta,
customCta,
center = false,
}: Props): JSX.Element => {
const ctaElements = getCtaElements(cta, secondaryCta, customCta)
const containerClasses = classNames('max-w-2xl', {
'mx-auto': center,
})
return (
<div className={containerClasses}>
<div className='w-32 h-32 mx-auto'>{image}</div>
<div className='mt-8'>
<Text h5 as='p' center balanced>
{title}
</Text>
</div>
<div className='mt-2'>
<Text center balanced>
{text}
</Text>
</div>
<div className='mt-8 flex justify-around'>
<div className='flex space-x-4'>{ctaElements}</div>
</div>
</div>
)
}