mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Part of #17670: Replace Typography with Text component in: callout.js * Update ui/components/ui/callout/callout.js Co-authored-by: Danica Shen <zhaodanica@gmail.com> * Update callout.js * Updating snapshot and deprecating component * Updating snapshot and deprecating component --------- Co-authored-by: Danica Shen <zhaodanica@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Garrett Bear <gwhisten@gmail.com>
79 lines
2.6 KiB
JavaScript
79 lines
2.6 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import InfoIconInverted from '../icon/info-icon-inverted.component';
|
|
import { Severity, TextColor } from '../../../helpers/constants/design-system';
|
|
import { MILLISECOND } from '../../../../shared/constants/time';
|
|
import { ButtonIcon, IconName, IconSize, Text } from '../../component-library';
|
|
|
|
/**
|
|
* @deprecated `<Callout />` has been deprecated in favor of the `<BannerAlert />`
|
|
* component in ./ui/components/component-library/banner-alert/banner-alert.js.
|
|
* See storybook documentation for BannerAlert here:
|
|
* {@see {@link https://metamask.github.io/metamask-storybook/?path=/docs/components-componentlibrary-banneralert--default-story#banneralert}}
|
|
*
|
|
* Help to replace `Callout` with `BannerAlert` by submitting a PR
|
|
*/
|
|
|
|
export default function Callout({
|
|
severity,
|
|
children,
|
|
dismiss,
|
|
isFirst,
|
|
isLast,
|
|
isMultiple,
|
|
}) {
|
|
const [removed, setRemoved] = useState(false);
|
|
const calloutClassName = classnames('callout', `callout--${severity}`, {
|
|
'callout--dismissed': removed === true,
|
|
'callout--multiple': isMultiple === true,
|
|
'callout--dismissible': Boolean(dismiss),
|
|
'callout--first': isFirst === true || isMultiple !== true,
|
|
'callout--last': isLast === true || isMultiple !== true,
|
|
});
|
|
// Clicking the close button will set removed state, which will trigger this
|
|
// effect to refire due to changing dependencies. When that happens, after a
|
|
// half of a second we fire the dismiss method from the parent. The
|
|
// consuming component is responsible for modifying state and then removing
|
|
// the element from the DOM.
|
|
useEffect(() => {
|
|
if (removed) {
|
|
setTimeout(() => {
|
|
dismiss();
|
|
}, MILLISECOND * 500);
|
|
}
|
|
}, [removed, dismiss]);
|
|
return (
|
|
<div className={calloutClassName}>
|
|
<InfoIconInverted severity={severity} />
|
|
<Text color={TextColor.textDefault} className="callout__content">
|
|
{children}
|
|
</Text>
|
|
{dismiss && (
|
|
<ButtonIcon
|
|
iconName={IconName.Close}
|
|
size={IconSize.Sm}
|
|
className="callout__close-button"
|
|
onClick={() => {
|
|
setRemoved(true);
|
|
}}
|
|
onKeyUp={(event) => {
|
|
if (event.key === 'Enter') {
|
|
setRemoved(true);
|
|
}
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Callout.propTypes = {
|
|
severity: PropTypes.oneOf(Object.values(Severity)).isRequired,
|
|
children: PropTypes.node.isRequired,
|
|
dismiss: PropTypes.func,
|
|
isFirst: PropTypes.bool,
|
|
isLast: PropTypes.bool,
|
|
isMultiple: PropTypes.bool,
|
|
};
|