Skip to content

Commit b470fab

Browse files
committed
chore: remove MMI fenced UI code
1 parent 1946d07 commit b470fab

File tree

230 files changed

+157
-16654
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+157
-16654
lines changed

ui/components/app/account-list-item/account-list-item-component.test.js

-15
Original file line numberDiff line numberDiff line change
@@ -123,20 +123,5 @@ describe('AccountListItem Component', () => {
123123

124124
expect(queryByText('0xmockAddress')).toBeInTheDocument();
125125
});
126-
127-
it('render without <AccountMismatchWarning /> if hideDefaultMismatchWarning is true', () => {
128-
const { getByTestId, rerender } = renderWithProvider(
129-
<AccountListItem {...props} />,
130-
store,
131-
);
132-
133-
const infoIcon = getByTestId('account-mismatch-warning-tooltip');
134-
135-
expect(infoIcon).toBeInTheDocument();
136-
137-
rerender(<AccountListItem {...props} hideDefaultMismatchWarning />);
138-
139-
expect(infoIcon).not.toBeInTheDocument();
140-
});
141126
});
142127
});

ui/components/app/account-list-item/account-list-item.js

+1-14
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,14 @@ export default function AccountListItem({
1212
displayAddress = false,
1313
handleClick,
1414
icon = null,
15-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
16-
hideDefaultMismatchWarning = false,
17-
///: END:ONLY_INCLUDE_IF
1815
}) {
1916
const {
2017
metadata: { name },
2118
address,
2219
balance,
2320
} = account;
2421

25-
let showDefaultMismatchWarning = true;
26-
27-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
28-
showDefaultMismatchWarning = !hideDefaultMismatchWarning;
29-
///: END:ONLY_INCLUDE_IF
22+
const showDefaultMismatchWarning = true;
3023

3124
return (
3225
<div
@@ -98,10 +91,4 @@ AccountListItem.propTypes = {
9891
* Pass icon component to be displayed. Currently not used
9992
*/
10093
icon: PropTypes.node,
101-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
102-
/**
103-
* MMI Prop, will hide the default AccountMismatchWarning when needed
104-
*/
105-
hideDefaultMismatchWarning: PropTypes.bool,
106-
///: END:ONLY_INCLUDE_IF
10794
};

ui/components/app/app-components.scss

-6
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,4 @@
7676
@import 'name/index';
7777
@import 'name/name-details/index';
7878
@import 'confirm/info/row/index';
79-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
80-
@import '../institutional/interactive-replacement-token-notification/index';
81-
@import '../institutional/confirm-remove-jwt-modal/index';
82-
@import '../institutional/custody-confirm-link-modal/index';
83-
@import '../institutional/transaction-failed-modal/index';
84-
///: END:ONLY_INCLUDE_IF
8579
@import 'snaps/snap-insight/index';

ui/components/app/assets/asset-list/native-token/native-token.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@ const NativeToken = ({ onClickAsset }: AssetListProps) => {
2727

2828
const isEvm = useSelector(getMultichainIsEvm);
2929

30-
let isStakeable = isMainnet && isEvm;
31-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
32-
isStakeable = false;
33-
///: END:ONLY_INCLUDE_IF
30+
const isStakeable = isMainnet && isEvm;
3431

3532
return (
3633
<TokenListItem

ui/components/app/assets/nfts/nfts-detection-notice-nfts-tab/nfts-detection-notice-nfts-tab.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ export default function NFTsDetectionNoticeNFTsTab() {
3636
t('newNFTDetectedInNFTsTabMessage')
3737
///: END:ONLY_INCLUDE_IF
3838
}
39-
{
40-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
41-
t('mmiNewNFTDetectedInNFTsTabMessage')
42-
///: END:ONLY_INCLUDE_IF
43-
}
4439
</BannerAlert>
4540
);
4641
}

ui/components/app/assets/token-cell/token-cell.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ export default function TokenCell({
9898
new BigNumber(Number(string) || '0', 10),
9999
);
100100

101-
let isStakeable = isMainnet && isEvm && isNative;
102-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
103-
isStakeable = false;
104-
///: END:ONLY_INCLUDE_IF
101+
const isStakeable = isMainnet && isEvm && isNative;
105102

106103
function handleOnClick() {
107104
if (!onClick || !chainId) {

ui/components/app/modals/index.scss

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
@import 'transaction-confirmed/index';
88
@import 'customize-nonce/index';
99
@import 'convert-token-to-nft-modal/index';
10-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
11-
@import '../../institutional/confirm-remove-jwt-modal/index';
12-
@import '../../institutional/custody-confirm-link-modal/index';
13-
@import '../../institutional/transaction-failed-modal/index';
14-
///: END:ONLY_INCLUDE_IF
1510

1611
.modal {
1712
z-index: 1050;

ui/components/app/modals/modal.js

+1-100
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,7 @@ import { getEnvironmentType } from '../../../../app/scripts/lib/util';
88
import { ENVIRONMENT_TYPE_POPUP } from '../../../../shared/constants/app';
99
import isMobileView from '../../../helpers/utils/is-mobile-view';
1010
import * as actions from '../../../store/actions';
11-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
12-
import { mmiActionsFactory } from '../../../store/institutional/institution-background';
13-
///: END:ONLY_INCLUDE_IF
14-
15-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
16-
import ConfirmRemoveJWT from '../../institutional/confirm-remove-jwt-modal';
17-
import CustodyConfirmLink from '../../institutional/custody-confirm-link-modal';
18-
import InteractiveReplacementTokenModal from '../../institutional/interactive-replacement-token-modal';
19-
import TransactionFailed from '../../institutional/transaction-failed-modal';
20-
///: END:ONLY_INCLUDE_IF
11+
2112
import HideTokenConfirmationModal from './hide-token-confirmation-modal';
2213
import QRScanner from './qr-scanner';
2314

@@ -58,34 +49,6 @@ const modalContainerMobileStyle = {
5849
top: '12.5%',
5950
};
6051

61-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
62-
const custodyConfirmModalStyle = {
63-
mobileModalStyle: {
64-
width: '95%',
65-
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
66-
borderRadius: '4px',
67-
top: '30%',
68-
transform: 'none',
69-
left: '0',
70-
right: '0',
71-
margin: '0 auto',
72-
},
73-
laptopModalStyle: {
74-
width: '360px',
75-
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
76-
borderRadius: '4px',
77-
top: '30%',
78-
transform: 'none',
79-
left: '0',
80-
right: '0',
81-
margin: '0 auto',
82-
},
83-
contentStyle: {
84-
borderRadius: '4px',
85-
},
86-
};
87-
///: END:ONLY_INCLUDE_IF
88-
8952
const MODALS = {
9053
NEW_ACCOUNT: {
9154
contents: <NewAccountModal />,
@@ -274,53 +237,6 @@ const MODALS = {
274237
},
275238
},
276239

277-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
278-
CONFIRM_REMOVE_JWT: {
279-
contents: <ConfirmRemoveJWT />,
280-
mobileModalStyle: {
281-
...modalContainerMobileStyle,
282-
},
283-
laptopModalStyle: {
284-
...modalContainerLaptopStyle,
285-
},
286-
contentStyle: {
287-
borderRadius: '8px',
288-
},
289-
},
290-
291-
TRANSACTION_FAILED: {
292-
disableBackdropClick: true,
293-
contents: <TransactionFailed />,
294-
mobileModalStyle: {
295-
...modalContainerMobileStyle,
296-
},
297-
laptopModalStyle: {
298-
...modalContainerLaptopStyle,
299-
},
300-
contentStyle: {
301-
borderRadius: '8px',
302-
},
303-
},
304-
305-
CUSTODY_CONFIRM_LINK: {
306-
contents: <CustodyConfirmLink />,
307-
...custodyConfirmModalStyle,
308-
},
309-
310-
INTERACTIVE_REPLACEMENT_TOKEN_MODAL: {
311-
contents: <InteractiveReplacementTokenModal />,
312-
mobileModalStyle: {
313-
...modalContainerMobileStyle,
314-
},
315-
laptopModalStyle: {
316-
...modalContainerLaptopStyle,
317-
},
318-
contentStyle: {
319-
borderRadius: '8px',
320-
},
321-
},
322-
///: END:ONLY_INCLUDE_IF
323-
324240
CONFIRM_TURN_OFF_PROFILE_SYNCING: {
325241
contents: <ConfirmTurnOffProfileSyncing />,
326242
mobileModalStyle: {
@@ -366,9 +282,6 @@ function mapStateToProps(state) {
366282
}
367283

368284
function mapDispatchToProps(dispatch) {
369-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
370-
const mmiActions = mmiActionsFactory();
371-
///: END:ONLY_INCLUDE_IF
372285
return {
373286
hideModal: (customOnHideOpts) => {
374287
dispatch(actions.hideModal());
@@ -379,10 +292,6 @@ function mapDispatchToProps(dispatch) {
379292
hideWarning: () => {
380293
dispatch(actions.hideWarning());
381294
},
382-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
383-
setWaitForConfirmDeepLinkDialog: (wait) =>
384-
dispatch(mmiActions.setWaitForConfirmDeepLinkDialog(wait)),
385-
///: END:ONLY_INCLUDE_IF
386295
};
387296
}
388297

@@ -399,9 +308,6 @@ class Modal extends Component {
399308
hideModal: PropTypes.func.isRequired,
400309
hideWarning: PropTypes.func.isRequired,
401310
modalState: PropTypes.object.isRequired,
402-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
403-
setWaitForConfirmDeepLinkDialog: PropTypes.func,
404-
///: END:ONLY_INCLUDE_IF
405311
};
406312

407313
hide() {
@@ -432,11 +338,6 @@ class Modal extends Component {
432338
keyboard={false}
433339
onHide={() => {
434340
if (modal.onHide) {
435-
///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
436-
if (this.props.modalState.name === 'CUSTODY_CONFIRM_LINK') {
437-
this.props.setWaitForConfirmDeepLinkDialog(false);
438-
}
439-
///: END:ONLY_INCLUDE_IF
440341
modal.onHide({
441342
hideWarning: this.props.hideWarning,
442343
});

ui/components/app/selected-account/selected-account-component.test.js

-55
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ import { fireEvent, waitFor } from '@testing-library/react';
55
import { renderWithProvider } from '../../../../test/lib/render-helpers';
66
import mockState from '../../../../test/data/mock-state.json';
77
import { COPY_OPTIONS } from '../../../../shared/constants/copy';
8-
import {
9-
getCustodyAccountDetails,
10-
getIsCustodianSupportedChain,
11-
} from '../../../selectors/institutional/selectors';
12-
import { getAccountType } from '../../../selectors';
138
import SelectedAccount from '.';
149

1510
const mockSelectedAccount = {
@@ -34,16 +29,6 @@ const mockSelectedAccount = {
3429

3530
jest.mock('copy-to-clipboard');
3631

37-
jest.mock('../../../selectors/institutional/selectors', () => {
38-
const mockGetCustodyAccountDetails = jest.fn(() => undefined);
39-
const mockGetisCustodianSupportedChain = jest.fn(() => true);
40-
41-
return {
42-
getCustodyAccountDetails: mockGetCustodyAccountDetails,
43-
getIsCustodianSupportedChain: mockGetisCustodianSupportedChain,
44-
};
45-
});
46-
4732
jest.mock('../../../selectors', () => {
4833
const mockGetAccountType = jest.fn(() => undefined);
4934
const mockGetSelectedAccount = jest.fn(() => mockSelectedAccount);
@@ -94,44 +79,4 @@ describe('SelectedAccount Component', () => {
9479
COPY_OPTIONS,
9580
);
9681
});
97-
98-
it('should render correctly if isCustodianSupportedChain to false', async () => {
99-
getIsCustodianSupportedChain.mockReturnValue(false);
100-
101-
const { container, queryByTestId } = renderWithProvider(
102-
<SelectedAccount />,
103-
mockStore,
104-
);
105-
106-
const tooltipTitle = await waitFor(() =>
107-
container.querySelector(
108-
'[data-original-title="This account is not set up for use with Goerli"]',
109-
),
110-
);
111-
112-
const button = queryByTestId('selected-account-click');
113-
114-
expect(button).toBeDisabled();
115-
expect(tooltipTitle).toBeInTheDocument();
116-
expect(queryByTestId('selected-account-copy')).not.toBeInTheDocument();
117-
});
118-
119-
it('should display custody labels if they exist', () => {
120-
const mockAccountDetails = {
121-
[mockSelectedAccount.address]: {
122-
labels: [
123-
{ key: 'Label 1', value: 'Label 1' },
124-
{ key: 'Label 2', value: 'Label 2' },
125-
],
126-
},
127-
};
128-
129-
getAccountType.mockReturnValue('custody');
130-
getCustodyAccountDetails.mockReturnValue(mockAccountDetails);
131-
132-
const { getByText } = renderWithProvider(<SelectedAccount />, mockStore);
133-
134-
expect(getByText('Label 1')).toBeInTheDocument();
135-
expect(getByText('Label 2')).toBeInTheDocument();
136-
});
13782
});

0 commit comments

Comments
 (0)