Skip to content

Commit

Permalink
Merge branch 'master' into p2ps-433/apply-filter-payment-method
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienne-deriv committed Jun 23, 2023
2 parents 5a52e47 + 9030186 commit 705f009
Show file tree
Hide file tree
Showing 88 changed files with 1,715 additions and 596 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion packages/appstore/src/assets/svgs/trading-platform/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import CFDs from 'Assets/svgs/trading-platform/branding/ic-branding-mt5-cfds.svg
import DBot from 'Assets/svgs/trading-platform/branding/ic-branding-dbot-dashboard.svg';
import Demo from 'Assets/svgs/trading-platform/ic-brand-demo.svg';
import Derived from 'Assets/svgs/trading-platform/branding/ic-branding-mt5-derived-dashboard.svg';
import DerivEz from 'Assets/svgs/trading-platform/branding/ic-branding-derivez-dashboard.svg';
import DerivGo from 'Assets/svgs/trading-platform/branding/ic-branding-derivgo-dashboard.svg';
import DerivGoBlack from 'Assets/svgs/trading-platform/ic-appstore-derivgo-black.svg';
import DerivLogo from 'Assets/svgs/trading-platform/branding/ic-branding-deriv-logo.svg';
import DerivTradingLogo from 'Assets/svgs/trading-platform/ic-appstore-deriv-trading-logo.svg';
import DerivX from 'Assets/svgs/trading-platform/branding/ic-branding-derivx-dashboard.svg';
import DerivX from 'Assets/svgs/trading-platform/branding/ic-branding-dxtrade-dashboard.svg';
import DropDown from 'Assets/svgs/trading-platform/drop-down.svg';
import DTrader from 'Assets/svgs/trading-platform/branding/ic-branding-dtrader-dashboard.svg';
import Financial from 'Assets/svgs/trading-platform/branding/ic-branding-mt5-financial-dashboard.svg';
Expand All @@ -26,6 +27,7 @@ export const PlatformIcons = {
DBot,
Demo,
Derived,
DerivEz,
DerivGo,
DerivGoBlack,
DerivLogo,
Expand Down
12 changes: 10 additions & 2 deletions packages/appstore/src/components/cfds-listing/cfds-listing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@
background: var(--brand-dark-grey);
align-items: center;
text-decoration: none;
padding: 0.2rem;
border-radius: $BORDER_RADIUS;

&-text {
Expand All @@ -402,6 +401,9 @@
white-space: nowrap;
}
}
&-icon {
margin-left: 0.6rem;
}
}
&__specs {
padding: 1.6rem;
Expand Down Expand Up @@ -453,6 +455,12 @@
padding-top: 2rem;
padding-bottom: 5.8rem;

&-description {
display: flex;
justify-content: center;
margin-top: 1.4rem;
}

&-app {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -524,7 +532,7 @@
display: flex;
flex-direction: column;
width: 13.6rem;
height: 14rem;
height: auto;
padding: 0.8rem;
align-items: center;
border: 1px solid var(--border-disabled);
Expand Down
84 changes: 74 additions & 10 deletions packages/appstore/src/components/cfds-listing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const CFDsListing = () => {
} = useStores();
const {
available_dxtrade_accounts,
available_derivez_accounts,
combined_cfd_mt5_accounts,
selected_region,
has_any_real_account,
Expand Down Expand Up @@ -206,16 +207,17 @@ const CFDsListing = () => {
<PlatformLoader />
)}
{!is_eu_user && !CFDs_restricted_countries && !financial_restricted_countries && (
<div className='cfd-full-row'>
<hr className='divider' />
</div>
)}
{available_dxtrade_accounts?.length > 0 && (
<div className='cfd-full-row'>
<Text line_height='m' weight='bold' color='prominent'>
{localize('Other CFD Platforms')}
</Text>
</div>
<React.Fragment>
<div className='cfd-full-row'>
<hr className='divider' />
</div>

<div className='cfd-full-row'>
<Text line_height='m' weight='bold' color='prominent'>
{localize('Other CFD Platforms')}
</Text>
</div>
</React.Fragment>
)}
{is_landing_company_loaded ? (
available_dxtrade_accounts?.map((account: AvailableAccount) => {
Expand Down Expand Up @@ -279,6 +281,68 @@ const CFDsListing = () => {
) : (
<PlatformLoader />
)}

{/* TODO: remove is_real flag to unblock the flow for derivez real account creation */}
{is_landing_company_loaded && !is_real
? available_derivez_accounts?.map((account: AvailableAccount) => {
const existing_accounts = getExistingAccounts(account.platform, account.market_type);
const has_existing_accounts = existing_accounts.length > 0;
return has_existing_accounts ? (
existing_accounts.map((existing_account: TDetailsOfEachMT5Loginid) => (
<TradingAppCard
action_type='multi-action'
availability={selected_region}
clickable_icon
icon={account.icon}
sub_title={account.name}
name={`${formatMoney(
existing_account.currency,
existing_account.display_balance,
true
)} ${existing_account.currency}`}
description={existing_account.display_login}
platform={account.platform}
key={`trading_app_card_${existing_account.display_login}`}
onAction={(e?: React.MouseEvent<HTMLButtonElement>) => {
const button_name = e?.currentTarget?.name;
if (button_name === 'transfer-btn') {
toggleAccountTransferModal();
setSelectedAccount(existing_account);
} else if (button_name === 'topup-btn') {
showTopUpModal(existing_account);
setAppstorePlatform(account.platform);
} else {
startTrade(account.platform, existing_account);
}
}}
/>
))
) : (
<TradingAppCard
action_type='get'
availability={selected_region}
clickable_icon
icon={account.icon}
name={account.name}
platform={account.platform}
description={account.description}
onAction={() => {
if ((has_no_real_account || no_CR_account) && is_real) {
openDerivRealAccountNeededModal();
} else {
setAccountType({
category: selected_account_type,
type: account.market_type,
});
setAppstorePlatform(account.platform);
getAccount();
}
}}
key={`trading_app_card_${account.name}`}
/>
);
})
: !is_real && <PlatformLoader />}
</ListingContainer>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export type Actions = {
is_external?: boolean;
new_tab?: boolean;
is_buttons_disabled?: boolean;
is_account_being_created?: boolean;
is_real?: boolean;
};

Expand All @@ -23,13 +24,14 @@ const TradingAppCardActions = ({
onAction,
is_external,
new_tab,
is_account_being_created,
is_buttons_disabled,
is_real,
}: Actions) => {
switch (action_type) {
case 'get':
return (
<Button primary_light onClick={() => onAction?.()}>
<Button disabled={is_account_being_created} primary_light onClick={() => onAction?.()}>
{localize('Get')}
</Button>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,14 @@ const TradingAppCard = ({
selected_mt5_jurisdiction,
openFailedVerificationModal,
}: Actions & BrandConfig & AvailableAccount & TDetailsOfEachMT5Loginid) => {
const { common, traders_hub } = useStores();
const {
common,
traders_hub,
modules: { cfd },
} = useStores();
const { is_eu_user, is_demo_low_risk, content_flag, is_real } = traders_hub;
const { current_language } = common;
const { is_account_being_created } = cfd;

const low_risk_cr_non_eu = content_flag === ContentFlag.LOW_RISK_CR_NON_EU;

Expand All @@ -54,6 +59,7 @@ const TradingAppCard = ({
window.open(getStaticUrl(`/dmt5`, {}, false, true));
else if (platform === CFD_PLATFORMS.MT5 && availability !== 'EU') window.open(getStaticUrl(`/dmt5`));
else if (platform === CFD_PLATFORMS.DXTRADE) window.open(getStaticUrl(`/derivx`));
else if (platform === CFD_PLATFORMS.DERIVEZ) window.open(getStaticUrl(`/derivez`));
else if (icon === 'Options' && !is_eu_user) window.open(getStaticUrl(`/trade-types/options/`));
else;
};
Expand Down Expand Up @@ -113,6 +119,7 @@ const TradingAppCard = ({
is_external={is_external}
new_tab={new_tab}
is_buttons_disabled={!!mt5_acc_auth_status}
is_account_being_created={!!is_account_being_created}
is_real={is_real}
/>
</div>
Expand Down
2 changes: 2 additions & 0 deletions packages/appstore/src/components/modals/modal-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const ModalManager = () => {
getRealSwapfreeAccountsExistingData,
current_account,
dxtrade_companies,
derivez_companies,
mt5_companies,
topUpVirtual,
} = modules.cfd;
Expand Down Expand Up @@ -137,6 +138,7 @@ const ModalManager = () => {
<CFDTopUpDemoModal
context={store}
dxtrade_companies={dxtrade_companies}
derivez_companies={derivez_companies}
mt5_companies={mt5_companies}
current_account={current_account}
closeSuccessTopUpModal={closeSuccessTopUpModal}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import StaticDashboard from '../static-dashboard';
import { StoreProvider, mockStore } from '@deriv/stores';

describe('<StaticDashboard />', () => {
const is_blurry = {
icon: true,
item: false,
text: false,
get: false,
topup: false,
trade: false,
cfd_item: false,
cfd_text: false,
options_item: false,
options_text: false,
cfd_description: false,
options_description: false,
platformlauncher: false,
};

const is_onboarding_animated = {
text: false,
trade: false,
topup: false,
button: false,
get: false,
};

test('should render derivez in page if !CFDs_restricted_countries (non-eu countries)', () => {
const mock = mockStore({});

render(
<StoreProvider store={mock}>
<StaticDashboard is_blurry={is_blurry} is_onboarding_animated={is_onboarding_animated} />
</StoreProvider>
);
expect(screen.queryByText('Deriv EZ')).toBeInTheDocument();
});

test('should not render derivez if CFDs_restricted_countries: true (eu countries)', () => {
const mock = mockStore({
traders_hub: {
CFDs_restricted_countries: true,
},
});

render(
<StoreProvider store={mock}>
<StaticDashboard is_blurry={is_blurry} is_onboarding_animated={is_onboarding_animated} />
</StoreProvider>
);
expect(screen.queryByText('Deriv Ez')).not.toBeInTheDocument();
});
});
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { Button, Text } from '@deriv/components';
import { formatMoney, CFD_PLATFORMS } from '@deriv/shared';
import { useStore } from '@deriv/stores';
import { Localize, localize } from '@deriv/translations';
import TradigPlatformIconProps from 'Assets/svgs/trading-platform';
import { TPlatform } from 'Types';
Expand Down Expand Up @@ -67,6 +68,8 @@ const StaticCFDAccountManager = ({
}: TStaticCFDAccountManager) => {
const icon_size = 48;
const platform_color = platform === 'options' ? 'prominent' : 'general';
const { traders_hub } = useStore();
const { is_demo } = traders_hub;
return (
<div
className={classNames('static-cfd-account-manager', {
Expand Down Expand Up @@ -117,6 +120,17 @@ const StaticCFDAccountManager = ({
/>
))}

{platform === CFD_PLATFORMS.DERIVEZ && (
<TradigPlatformIconProps
icon='DerivEz'
size={icon_size}
className={classNames('static-cfd-account-manager--cfds', {
'static-cfd-account-manager__icon--blurry':
is_blurry.icon || is_last_step || is_derivx_last_step,
})}
/>
)}

{platform === CFD_PLATFORMS.DXTRADE && (
<TradigPlatformIconProps
icon='DerivX'
Expand Down Expand Up @@ -175,7 +189,7 @@ const StaticCFDAccountManager = ({
)}
</div>
<div className='static-cfd-account-manager__buttons'>
{has_account && platform !== CFD_PLATFORMS.DXTRADE ? (
{has_account ? (
<React.Fragment>
<Button
secondary
Expand Down
Loading

0 comments on commit 705f009

Please sign in to comment.