Skip to content

Commit

Permalink
thisyahlen/fix: launch jurisdiction modal on get button and fix type (#…
Browse files Browse the repository at this point in the history
…10772)

* chore: cleanup v3

* fix: random bracket
  • Loading branch information
thisyahlen-deriv authored Oct 18, 2023
1 parent 6d8fa27 commit 81950f7
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface WalletTextProps extends ComponentProps<'span'> {
children: ReactNode;
color?: CSSProperties['color'] | 'error' | 'general' | 'primary' | 'success' | 'warning';
lineHeight?: TGenericSizes;
size?: Exclude<TGenericSizes, '4xs' | '5xl' | '6xl'>;
size?: TGenericSizes;
weight?: CSSProperties['fontWeight'];
}

Expand Down
15 changes: 1 addition & 14 deletions packages/wallets/src/components/Base/types.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1 @@
export type TGenericSizes =
| '2xl'
| '2xs'
| '3xl'
| '3xs'
| '4xl'
| '4xs'
| '5xl'
| '6xl'
| 'lg'
| 'md'
| 'sm'
| 'xl'
| 'xs';
export type TGenericSizes = '2xl' | '2xs' | '3xl' | '3xs' | '4xl' | '5xl' | '6xl' | 'lg' | 'md' | 'sm' | 'xl' | 'xs';
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { useHistory } from 'react-router-dom';
import { useMT5AccountsList } from '@deriv/api';
import { useAuthorize, useMT5AccountsList } from '@deriv/api';
import { WalletButton } from '../../../../../components/Base';
import { TradingAccountCard } from '../../../../../components/TradingAccountCard';
import DerivedMT5 from '../../../../../public/images/mt5-derived.svg';
Expand All @@ -25,6 +25,7 @@ type TProps = {
};

const AddedMT5AccountsList: React.FC<TProps> = ({ account }) => {
const { data: activeWallet } = useAuthorize();
const history = useHistory();
return (
<TradingAccountCard
Expand All @@ -49,11 +50,13 @@ const AddedMT5AccountsList: React.FC<TProps> = ({ account }) => {
<p className='wallets-added-mt5__details-title-text'>
{marketTypeToNameMapper[account.market_type || 'all']}
</p>
<div className='wallets-added-mt5__details-title-landing-company'>
<p className='wallets-added-mt5__details-title-landing-company-text'>
{account.landing_company_short}
</p>
</div>
{!activeWallet?.is_virtual && (
<div className='wallets-added-mt5__details-title-landing-company'>
<p className='wallets-added-mt5__details-title-landing-company-text'>
{account.landing_company_short}
</p>
</div>
)}
</div>
<p className='wallets-added-mt5__details-balance'>
{account.display_balance} {account.currency}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import { useSortedMT5Accounts } from '@deriv/api';
import { useActiveWalletAccount, useSortedMT5Accounts } from '@deriv/api';
import { TradingAccountCard, WalletButton } from '../../../../../components';
import { useModal } from '../../../../../components/ModalProvider';
import DerivedMT5 from '../../../../../public/images/mt5-derived.svg';
import FinancialMT5 from '../../../../../public/images/mt5-financial.svg';
import SwapFreeMT5 from '../../../../../public/images/mt5-swap-free.svg';
import { MT5PasswordModal } from '../../../modals';
import { JurisdictionModal, MT5PasswordModal } from '../../../modals';
import './AvailableMT5AccountsList.scss';

const marketTypeToDescriptionMapper = {
Expand All @@ -31,7 +31,9 @@ type TProps = {
};

const AvailableMT5AccountsList: React.FC<TProps> = ({ account }) => {
const { show } = useModal();
const { data: activeWallet } = useActiveWalletAccount();
const { setModalState, show } = useModal();

return (
<TradingAccountCard
leading={() => (
Expand All @@ -42,7 +44,18 @@ const AvailableMT5AccountsList: React.FC<TProps> = ({ account }) => {
trailing={() => (
<WalletButton
color='primary-light'
onClick={() => show(<MT5PasswordModal marketType={account?.market_type || 'synthetic'} />)}
onClick={() => {
setModalState({
marketType: account.market_type,
});
show(
activeWallet?.is_virtual ? (
<MT5PasswordModal marketType={account?.market_type || 'synthetic'} />
) : (
<JurisdictionModal />
)
);
}}
text='Get'
/>
)}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,34 +1,37 @@
import React, { useState } from 'react';
import { useAvailableMT5Accounts } from '@deriv/api';
import { ModalStepWrapper, WalletButton, WalletText } from '../../../../components/Base';
import { ModalStepWrapper, WalletButton } from '../../../../components/Base';
import { useModal } from '../../../../components/ModalProvider';
import { JurisdictionScreen } from '../../screens/Jurisdiction';
import { MT5PasswordModal } from '..';

const marketTypeToTitleMapper = {
all: 'Swap-Free',
financial: 'Financial',
synthetic: 'Derived',
};

const JurisdictionModal = () => {
const [selectedJurisdiction, setSelectedJurisdiction] = useState('');
const { modalState, show } = useModal();
const { isLoading } = useAvailableMT5Accounts();

const marketType = modalState?.marketType || 'all';

const capitalizedMarketType = marketTypeToTitleMapper[marketType];

if (isLoading) return <h1>Loading...</h1>;

return (
<ModalStepWrapper
renderFooter={() => (
<React.Fragment>
<WalletButton
disabled={!selectedJurisdiction}
onClick={() => show(<MT5PasswordModal marketType={marketType} />)}
>
<WalletText color='white' size='xs' weight='bold'>
Next
</WalletText>
</WalletButton>
</React.Fragment>
<WalletButton
disabled={!selectedJurisdiction}
onClick={() => show(<MT5PasswordModal marketType={marketType} />)}
text='Next'
/>
)}
title='Choose a jurisdiction for your MT5 Derived account'
title={`Choose a jurisdiction for your Deriv MT5 ${capitalizedMarketType} account`}
>
<JurisdictionScreen
selectedJurisdiction={selectedJurisdiction}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const MT5AccountTypeModal = () => {
});
show(<JurisdictionModal />);
}}
text='Get'
text='Next'
/>
)}
title='Select Deriv MT5’s account type'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,26 @@ type TProps = {
selectedMarketType?: keyof typeof marketTypeDetailsMapper;
};

const MT5AccountType: React.FC<TProps> = ({ onMarketTypeSelect, selectedMarketType }) => (
<div className='wallets-mt5-account-type-content'>
{Object.entries(marketTypeDetailsMapper).map(([key, value]) => (
<MT5AccountTypeCard
description={value.description}
icon={value.icon}
isSelected={selectedMarketType === key}
key={key}
// @ts-expect-error the key always is the type of keyof typeof marketTypeDetailsMapper.
onClick={() => onMarketTypeSelect(key === selectedMarketType ? undefined : key)}
title={value.title}
/>
))}
</div>
);
const MT5AccountType: React.FC<TProps> = ({ onMarketTypeSelect, selectedMarketType }) => {
const sortedMarketTypeEntries = Object.entries(marketTypeDetailsMapper).sort(([keyA], [keyB]) => {
const order = ['synthetic', 'financial', 'all'];
return order.indexOf(keyA) - order.indexOf(keyB);
});
return (
<div className='wallets-mt5-account-type-content'>
{sortedMarketTypeEntries.map(([key, value]) => (
<MT5AccountTypeCard
description={value.description}
icon={value.icon}
isSelected={selectedMarketType === key}
key={key}
// @ts-expect-error the key always is the type of keyof typeof marketTypeDetailsMapper.
onClick={() => onMarketTypeSelect(key === selectedMarketType ? undefined : key)}
title={value.title}
/>
))}
</div>
);
};

export default MT5AccountType;

1 comment on commit 81950f7

@vercel
Copy link

@vercel vercel bot commented on 81950f7 Oct 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

deriv-app – ./

deriv-app.vercel.app
deriv-app.binary.sx
deriv-app-git-master.binary.sx
binary.sx

Please sign in to comment.