2021-02-04 19:15:23 +01:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import classnames from 'classnames';
|
2021-02-05 18:11:10 +01:00
|
|
|
import InfoTooltip from '../../../components/ui/info-tooltip';
|
|
|
|
|
|
|
|
const CLASSNAME_WARNING = 'actionable-message--warning';
|
|
|
|
const CLASSNAME_DANGER = 'actionable-message--danger';
|
|
|
|
const CLASSNAME_WITH_RIGHT_BUTTON = 'actionable-message--with-right-button';
|
|
|
|
|
|
|
|
const typeHash = {
|
|
|
|
warning: CLASSNAME_WARNING,
|
|
|
|
danger: CLASSNAME_DANGER,
|
|
|
|
};
|
2020-08-18 14:18:56 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export default function ActionableMessage({
|
2020-08-18 14:18:56 +02:00
|
|
|
message = '',
|
2020-08-18 20:13:36 +02:00
|
|
|
primaryAction = null,
|
|
|
|
secondaryAction = null,
|
2020-08-18 14:18:56 +02:00
|
|
|
className = '',
|
2021-02-05 18:11:10 +01:00
|
|
|
infoTooltipText = '',
|
|
|
|
withRightButton = false,
|
|
|
|
type = false,
|
2020-08-18 14:18:56 +02:00
|
|
|
}) {
|
2021-02-05 18:11:10 +01:00
|
|
|
const actionableMessageClassName = classnames(
|
|
|
|
'actionable-message',
|
|
|
|
typeHash[type],
|
|
|
|
withRightButton ? CLASSNAME_WITH_RIGHT_BUTTON : null,
|
|
|
|
className,
|
|
|
|
);
|
|
|
|
|
2020-08-18 14:18:56 +02:00
|
|
|
return (
|
2021-02-05 18:11:10 +01:00
|
|
|
<div className={actionableMessageClassName}>
|
|
|
|
{infoTooltipText && (
|
|
|
|
<InfoTooltip
|
|
|
|
position="left"
|
|
|
|
contentText={infoTooltipText}
|
|
|
|
wrapperClassName="actionable-message__info-tooltip-wrapper"
|
|
|
|
/>
|
|
|
|
)}
|
2020-11-03 00:41:28 +01:00
|
|
|
<div className="actionable-message__message">{message}</div>
|
2020-08-18 21:51:00 +02:00
|
|
|
{(primaryAction || secondaryAction) && (
|
|
|
|
<div className="actionable-message__actions">
|
|
|
|
{primaryAction && (
|
2021-02-05 19:27:48 +01:00
|
|
|
<button
|
2020-11-03 00:41:28 +01:00
|
|
|
className={classnames(
|
|
|
|
'actionable-message__action',
|
|
|
|
'actionable-message__action--primary',
|
|
|
|
)}
|
2020-08-18 21:51:00 +02:00
|
|
|
onClick={primaryAction.onClick}
|
|
|
|
>
|
|
|
|
{primaryAction.label}
|
2021-02-05 19:27:48 +01:00
|
|
|
</button>
|
2020-08-18 21:51:00 +02:00
|
|
|
)}
|
|
|
|
{secondaryAction && (
|
2021-02-05 19:27:48 +01:00
|
|
|
<button
|
2020-11-03 00:41:28 +01:00
|
|
|
className={classnames(
|
|
|
|
'actionable-message__action',
|
|
|
|
'actionable-message__action--secondary',
|
|
|
|
)}
|
2020-08-18 21:51:00 +02:00
|
|
|
onClick={secondaryAction.onClick}
|
|
|
|
>
|
|
|
|
{secondaryAction.label}
|
2021-02-05 19:27:48 +01:00
|
|
|
</button>
|
2020-08-18 21:51:00 +02:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
2020-08-18 20:13:36 +02:00
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-08-18 14:18:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ActionableMessage.propTypes = {
|
2020-10-20 15:06:44 +02:00
|
|
|
message: PropTypes.node.isRequired,
|
2020-08-18 20:13:36 +02:00
|
|
|
primaryAction: PropTypes.shape({
|
|
|
|
label: PropTypes.string,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
}),
|
|
|
|
secondaryAction: PropTypes.shape({
|
2020-08-18 14:18:56 +02:00
|
|
|
label: PropTypes.string,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
}),
|
|
|
|
className: PropTypes.string,
|
2021-02-05 18:11:10 +01:00
|
|
|
type: PropTypes.string,
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
withRightButton: PropTypes.bool,
|
2021-02-05 18:11:10 +01:00
|
|
|
infoTooltipText: PropTypes.string,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|