Skip to content

Commit

Permalink
Merge branch 'main' into caip25-permission-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jiexi committed Dec 20, 2024
2 parents eb08761 + d510d5c commit 352f964
Show file tree
Hide file tree
Showing 10 changed files with 258 additions and 283 deletions.
3 changes: 3 additions & 0 deletions app/_locales/en/messages.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions test/e2e/tests/dapp-interactions/failing-contract.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ describe('Failing contract interaction ', function () {
css: '.activity-list-item .transaction-status-label',
text: 'Failed',
});
// inspect transaction details
await driver.clickElement({
css: '.activity-list-item .transaction-status-label',
text: 'Failed',
});
await driver.waitForSelector('.transaction-list-item-details');
await driver.waitForSelector(
'[data-testid="transaction-list-item-details-banner-error-message"]',
);
},
);
});
Expand Down
7 changes: 5 additions & 2 deletions ui/components/app/transaction-list-item-details/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
display: flex;
flex-direction: column;
align-items: flex-end;
height: 42px;
justify-content: space-between;

.btn-link {
font-size: 12px;
Expand All @@ -62,9 +64,10 @@
}

&__operations {
margin: 0 0 16px 16px;
margin: 0 16px 16px 16px;
display: flex;
justify-content: flex-end;
justify-content: space-between;
align-items: center;
}

&__header {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,19 @@ import Tooltip from '../../ui/tooltip';
import CancelButton from '../cancel-button';
import Popover from '../../ui/popover';
import { Box } from '../../component-library/box';
import { Text } from '../../component-library/text';
import {
BannerAlert,
BannerAlertSeverity,
} from '../../component-library/banner-alert';
import {
TextVariant,
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
IconColor,
///: END:ONLY_INCLUDE_IF
} from '../../../helpers/constants/design-system';
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
import { Icon, IconName, Text } from '../../component-library';
import { IconColor } from '../../../helpers/constants/design-system';
import { Icon, IconName } from '../../component-library';
///: END:ONLY_INCLUDE_IF
import { SECOND } from '../../../../shared/constants/time';
import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics';
Expand Down Expand Up @@ -55,6 +65,7 @@ export default class TransactionListItemDetails extends PureComponent {
recipientNickname: PropTypes.string,
transactionStatus: PropTypes.func,
isCustomNetwork: PropTypes.bool,
showErrorBanner: PropTypes.bool,
history: PropTypes.object,
blockExplorerLinkText: PropTypes.object,
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
Expand Down Expand Up @@ -204,6 +215,7 @@ export default class TransactionListItemDetails extends PureComponent {
onClose,
recipientNickname,
showCancel,
showErrorBanner,
transactionStatus: TransactionStatus,
blockExplorerLinkText,
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
Expand All @@ -220,6 +232,17 @@ export default class TransactionListItemDetails extends PureComponent {
<Popover title={title} onClose={onClose}>
<div className="transaction-list-item-details">
<div className="transaction-list-item-details__operations">
{showErrorBanner && (
<BannerAlert severity={BannerAlertSeverity.Warning}>
<Text
variant={TextVariant.bodyMd}
as="h6"
data-testid="transaction-list-item-details-banner-error-message"
>
{t('transactionFailedBannerMessage')}
</Text>
</BannerAlert>
)}
<div className="transaction-list-item-details__header-buttons">
{showSpeedUp && (
<Button
Expand All @@ -246,7 +269,7 @@ export default class TransactionListItemDetails extends PureComponent {
className="transaction-list-item-details__header-button"
data-testid="rety-button"
>
<i className="fa fa-sync"></i>
<i className="fa fa-sync" />
</Button>
</Tooltip>
)}
Expand All @@ -258,22 +281,18 @@ export default class TransactionListItemDetails extends PureComponent {
data-testid="transaction-list-item-details-tx-status"
>
<div>{t('status')}</div>
<div>
<TransactionStatus />
</div>
<TransactionStatus />
</div>
<div className="transaction-list-item-details__tx-hash">
<div>
<Button
type="link"
onClick={this.handleBlockExplorerClick}
disabled={!hash}
>
{blockExplorerLinkText.firstPart === 'addBlockExplorer'
? t('addBlockExplorer')
: t('viewOnBlockExplorer')}
</Button>
</div>
<Button
type="link"
onClick={this.handleBlockExplorerClick}
disabled={!hash}
>
{blockExplorerLinkText.firstPart === 'addBlockExplorer'
? t('addBlockExplorer')
: t('viewOnBlockExplorer')}
</Button>
<div>
<Tooltip
wrapperClassName="transaction-list-item-details__header-button"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import { act, waitFor } from '@testing-library/react';
import { waitFor } from '@testing-library/react';
import { TransactionStatus } from '@metamask/transaction-controller';
import { GAS_LIMITS } from '../../../../shared/constants/gas';
import { renderWithProvider } from '../../../../test/lib/render-helpers';
Expand Down Expand Up @@ -54,7 +54,7 @@ const transactionGroup = {
hasCancelled: false,
};

const render = async (overrideProps) => {
const render = (overrideProps) => {
const rpcPrefs = {
blockExplorerUrl: 'https://customblockexplorer.com/',
};
Expand All @@ -71,67 +71,65 @@ const render = async (overrideProps) => {
senderAddress: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
tryReverseResolveAddress: jest.fn(),
transactionGroup,
transactionStatus: () => <div></div>,
transactionStatus: () => <div />,
blockExplorerLinkText,
rpcPrefs,
...overrideProps,
};

const mockStore = configureMockStore([thunk])(mockState);

let result;

await act(
async () =>
(result = renderWithProvider(
<TransactionListItemDetails {...props} />,
mockStore,
)),
const result = renderWithProvider(
<TransactionListItemDetails {...props} />,
mockStore,
);

return result;
};

describe('TransactionListItemDetails Component', () => {
it('should render title with title prop', async () => {
const { queryByText } = await render();
describe('matches snapshot', () => {
it('for non-error details', async () => {
const { queryByText, queryByTestId } = render();
expect(queryByText('Test Transaction Details')).toBeInTheDocument();
expect(
queryByTestId('transaction-list-item-details-banner-error-message'),
).not.toBeInTheDocument();
});

await waitFor(() => {
it('for error details', async () => {
const { queryByText, queryByTestId } = render({ showErrorBanner: true });
expect(queryByText('Test Transaction Details')).toBeInTheDocument();
expect(
queryByTestId('transaction-list-item-details-banner-error-message'),
).toBeInTheDocument();
});
});

describe('Retry button', () => {
it('should render retry button with showRetry prop', async () => {
const { queryByTestId } = await render({ showRetry: true });

describe('Action buttons', () => {
it('renders retry button with showRetry prop', async () => {
const { queryByTestId } = render({ showRetry: true });
expect(queryByTestId('rety-button')).toBeInTheDocument();
});
});

describe('Cancel button', () => {
it('should render cancel button with showCancel prop', async () => {
const { queryByTestId } = await render({ showCancel: true });

it('renders cancel button with showCancel prop', async () => {
const { queryByTestId } = render({ showCancel: true });
expect(queryByTestId('cancel-button')).toBeInTheDocument();
});
});

describe('Speedup button', () => {
it('should render speedup button with showSpeedUp prop', async () => {
const { queryByTestId } = await render({ showSpeedUp: true });

it('renders speedup button with showSpeedUp prop', async () => {
const { queryByTestId } = render({ showSpeedUp: true });
expect(queryByTestId('speedup-button')).toBeInTheDocument();
});
});

describe('Institutional', () => {
it('should render correctly if custodyTransactionDeepLink has a url', async () => {
it('renders correctly if custodyTransactionDeepLink has a url', async () => {
mockGetCustodianTransactionDeepLink = jest
.fn()
.mockReturnValue({ url: 'https://url.com' });

await render({ showCancel: true });
render({ showCancel: true });

await waitFor(() => {
const custodianViewButton = document.querySelector(
Expand All @@ -143,7 +141,7 @@ describe('TransactionListItemDetails Component', () => {
});
});

it('should render correctly if transactionNote is provided', async () => {
it('renders correctly if transactionNote is provided', async () => {
const newTransaction = {
...transaction,
metadata: {
Expand All @@ -159,13 +157,11 @@ describe('TransactionListItemDetails Component', () => {
initialTransaction: newTransaction,
};

const { queryByText } = await render({
const { queryByText } = render({
transactionGroup: newTransactionGroup,
});

await waitFor(() => {
expect(queryByText('some note')).toBeInTheDocument();
});
expect(queryByText('some note')).toBeInTheDocument();
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ export default function SmartTransactionListItem({
date={date}
status={displayedStatusKey}
statusOnly
shouldShowTooltip={false}
/>
)}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,7 @@ function TransactionListItemInner({
!hasCancelled &&
!isBridgeTx
}
showErrorBanner={Boolean(error)}
transactionStatus={() => (
<TransactionStatusLabel
isPending={isPending}
Expand All @@ -467,6 +468,7 @@ function TransactionListItemInner({
date={date}
status={displayedStatusKey}
statusOnly
shouldShowTooltip={false}
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
custodyStatus={transactionGroup.primaryTransaction.custodyStatus}
custodyStatusDisplayText={
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`TransactionStatusLabel Component should render CONFIRMED properly 1`] = `
exports[`TransactionStatusLabel Component renders CONFIRMED properly and tooltip 1`] = `
<div>
<div
class="transaction-status-label transaction-status-label--confirmed"
Expand All @@ -10,7 +10,7 @@ exports[`TransactionStatusLabel Component should render CONFIRMED properly 1`] =
</div>
`;

exports[`TransactionStatusLabel Component should render PENDING properly 1`] = `
exports[`TransactionStatusLabel Component renders PENDING properly and tooltip 1`] = `
<div>
<div
class="transaction-status-label transaction-status-label--pending transaction-status-label--pending"
Expand All @@ -20,7 +20,7 @@ exports[`TransactionStatusLabel Component should render PENDING properly 1`] = `
</div>
`;

exports[`TransactionStatusLabel Component should render QUEUED properly 1`] = `
exports[`TransactionStatusLabel Component renders QUEUED properly and tooltip 1`] = `
<div>
<div
class="transaction-status-label transaction-status-label--queued transaction-status-label--queued"
Expand All @@ -30,7 +30,7 @@ exports[`TransactionStatusLabel Component should render QUEUED properly 1`] = `
</div>
`;

exports[`TransactionStatusLabel Component should render SIGNING if status is approved 1`] = `
exports[`TransactionStatusLabel Component renders SIGNING properly and tooltip 1`] = `
<div>
<div
class="transaction-status-label transaction-status-label--signing"
Expand All @@ -40,7 +40,7 @@ exports[`TransactionStatusLabel Component should render SIGNING if status is app
</div>
`;

exports[`TransactionStatusLabel Component should render UNAPPROVED properly 1`] = `
exports[`TransactionStatusLabel Component renders UNAPPROVED properly and tooltip 1`] = `
<div>
<div
class="transaction-status-label transaction-status-label--unapproved transaction-status-label--unapproved"
Expand Down
Loading

0 comments on commit 352f964

Please sign in to comment.