mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-21 19:31:57 +00:00
* Add copyright script Copied over our copyright script from the react repo. I made a small fix to handle shebangs. * Update copyright on all files Run the script.
131 lines
3.8 KiB
TypeScript
131 lines
3.8 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
import cn from 'classnames';
|
|
import {IconNote} from '../Icon/IconNote';
|
|
import {IconWarning} from '../Icon/IconWarning';
|
|
import {IconPitfall} from '../Icon/IconPitfall';
|
|
import {IconCanary} from '../Icon/IconCanary';
|
|
import {IconRocket} from '../Icon/IconRocket';
|
|
|
|
type CalloutVariants =
|
|
| 'deprecated'
|
|
| 'pitfall'
|
|
| 'note'
|
|
| 'wip'
|
|
| 'canary'
|
|
| 'experimental'
|
|
| 'major'
|
|
| 'rsc';
|
|
|
|
interface ExpandableCalloutProps {
|
|
children: React.ReactNode;
|
|
type: CalloutVariants;
|
|
}
|
|
|
|
const variantMap = {
|
|
deprecated: {
|
|
title: 'Deprecated',
|
|
Icon: IconWarning,
|
|
containerClasses: 'bg-red-5 dark:bg-red-60 dark:bg-opacity-20',
|
|
textColor: 'text-red-50 dark:text-red-40',
|
|
overlayGradient:
|
|
'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)',
|
|
},
|
|
note: {
|
|
title: 'Note',
|
|
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)',
|
|
},
|
|
canary: {
|
|
title: 'Canary',
|
|
Icon: IconCanary,
|
|
containerClasses:
|
|
'bg-gray-5 dark:bg-gray-60 dark:bg-opacity-20 text-primary dark:text-primary-dark text-lg',
|
|
textColor: 'text-gray-60 dark:text-gray-30',
|
|
overlayGradient:
|
|
'linear-gradient(rgba(245, 249, 248, 0), rgba(245, 249, 248, 1)',
|
|
},
|
|
experimental: {
|
|
title: 'Experimental Feature',
|
|
Icon: IconCanary,
|
|
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)',
|
|
},
|
|
pitfall: {
|
|
title: 'Pitfall',
|
|
Icon: IconPitfall,
|
|
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)',
|
|
},
|
|
wip: {
|
|
title: 'Under Construction',
|
|
Icon: IconNote,
|
|
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)',
|
|
},
|
|
major: {
|
|
title: 'React 19',
|
|
Icon: IconRocket,
|
|
containerClasses: 'bg-blue-10 dark:bg-blue-60 dark:bg-opacity-20',
|
|
textColor: 'text-blue-50 dark:text-blue-40',
|
|
overlayGradient:
|
|
'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)',
|
|
},
|
|
rsc: {
|
|
title: 'React Server Components',
|
|
Icon: null,
|
|
containerClasses: 'bg-blue-10 dark:bg-blue-60 dark:bg-opacity-20',
|
|
textColor: 'text-blue-50 dark:text-blue-40',
|
|
overlayGradient:
|
|
'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)',
|
|
},
|
|
};
|
|
|
|
function ExpandableCallout({children, type = 'note'}: ExpandableCalloutProps) {
|
|
const variant = variantMap[type];
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'expandable-callout',
|
|
'pt-8 pb-4 px-5 sm:px-8 my-8 relative rounded-none shadow-inner-border -mx-5 sm:mx-auto sm:rounded-2xl',
|
|
variant.containerClasses
|
|
)}>
|
|
<h3 className={cn('text-2xl font-display font-bold', variant.textColor)}>
|
|
{variant.Icon && (
|
|
<variant.Icon
|
|
className={cn('inline me-2 mb-1 text-lg', variant.textColor)}
|
|
/>
|
|
)}
|
|
{variant.title}
|
|
</h3>
|
|
<div className="relative">
|
|
<div className="py-2">{children}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ExpandableCallout;
|