-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathExpandableCallout.tsx
66 lines (58 loc) · 1.74 KB
/
ExpandableCallout.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
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
import * as React from 'react';
import cn from 'classnames';
import {IconNote} from '../Icon/IconNote';
import {IconGotcha} from '../Icon/IconGotcha';
type CalloutVariants = 'gotcha' | 'note';
interface ExpandableCalloutProps {
children: React.ReactNode;
type: CalloutVariants;
}
const variantMap = {
note: {
title: 'Nota',
Icon: IconNote,
containerClasses:
'bg-green-5 dark:bg-green-60 dark:bg-opacity-20 text-primary dark:text-primary-dark text-lg',
textColor: 'text-green-60 dark:text-green-40',
overlayGradient:
'linear-gradient(rgba(245, 249, 248, 0), rgba(245, 249, 248, 1)',
},
gotcha: {
title: 'Atención',
Icon: IconGotcha,
containerClasses: 'bg-yellow-5 dark:bg-yellow-60 dark:bg-opacity-20',
textColor: 'text-yellow-50 dark:text-yellow-40',
overlayGradient:
'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)',
},
};
function ExpandableCallout({children, type}: ExpandableCalloutProps) {
const contentRef = React.useRef<HTMLDivElement>(null);
const variant = variantMap[type];
return (
<div
className={cn(
'pt-8 pb-4 px-5 sm:px-8 my-8 relative rounded-none shadow-inner -mx-5 sm:mx-auto sm:rounded-lg',
variant.containerClasses
)}>
<h3 className={cn('mb-2 text-2xl font-bold', variant.textColor)}>
<variant.Icon
className={cn('inline mr-3 mb-1 text-lg', variant.textColor)}
/>
{variant.title}
</h3>
<div className="relative">
<div ref={contentRef} className="py-2">
{children}
</div>
</div>
</div>
);
}
ExpandableCallout.defaultProps = {
type: 'note',
};
export default ExpandableCallout;