210 lines
8.3 KiB
TypeScript
210 lines
8.3 KiB
TypeScript
import * as _ from 'lodash';
|
|
import * as React from 'react';
|
|
|
|
import { BigNumber } from '@0xproject/utils';
|
|
import { Blockchain } from 'ts/blockchain';
|
|
import { AddEthOnboardingStep } from 'ts/components/onboarding/add_eth_onboarding_step';
|
|
import { InstallWalletOnboardingStep } from 'ts/components/onboarding/install_wallet_onboarding_step';
|
|
import { IntroOnboardingStep } from 'ts/components/onboarding/intro_onboarding_step';
|
|
import { OnboardingFlow, Step } from 'ts/components/onboarding/onboarding_flow';
|
|
import { SetAllowancesOnboardingStep } from 'ts/components/onboarding/set_allowances_onboarding_step';
|
|
import { UnlockWalletOnboardingStep } from 'ts/components/onboarding/unlock_wallet_onboarding_step';
|
|
import { WrapEthOnboardingStep } from 'ts/components/onboarding/wrap_eth_onboarding_step';
|
|
import { AllowanceToggle } from 'ts/containers/inputs/allowance_toggle';
|
|
import { ProviderType, Token, TokenByAddress, TokenStateByAddress } from 'ts/types';
|
|
import { utils } from 'ts/utils/utils';
|
|
|
|
export interface PortalOnboardingFlowProps {
|
|
blockchain: Blockchain;
|
|
stepIndex: number;
|
|
isRunning: boolean;
|
|
userAddress: string;
|
|
hasBeenSeen: boolean;
|
|
providerType: ProviderType;
|
|
injectedProviderName: string;
|
|
blockchainIsLoaded: boolean;
|
|
userEtherBalanceInWei?: BigNumber;
|
|
tokenByAddress: TokenByAddress;
|
|
trackedTokenStateByAddress: TokenStateByAddress;
|
|
updateIsRunning: (isRunning: boolean) => void;
|
|
updateOnboardingStep: (stepIndex: number) => void;
|
|
refetchTokenStateAsync: (tokenAddress: string) => Promise<void>;
|
|
}
|
|
|
|
export class PortalOnboardingFlow extends React.Component<PortalOnboardingFlowProps> {
|
|
public componentDidMount(): void {
|
|
this._overrideOnboardingStateIfShould();
|
|
}
|
|
public componentDidUpdate(): void {
|
|
this._overrideOnboardingStateIfShould();
|
|
}
|
|
public render(): React.ReactNode {
|
|
return (
|
|
<OnboardingFlow
|
|
steps={this._getSteps()}
|
|
stepIndex={this.props.stepIndex}
|
|
isRunning={this.props.isRunning}
|
|
onClose={this.props.updateIsRunning.bind(this, false)}
|
|
updateOnboardingStep={this.props.updateOnboardingStep}
|
|
/>
|
|
);
|
|
}
|
|
private _getSteps(): Step[] {
|
|
const steps: Step[] = [
|
|
{
|
|
target: '.wallet',
|
|
title: '0x Ecosystem Setup',
|
|
content: <InstallWalletOnboardingStep />,
|
|
placement: 'right',
|
|
shouldHideBackButton: true,
|
|
shouldHideNextButton: true,
|
|
},
|
|
{
|
|
target: '.wallet',
|
|
title: '0x Ecosystem Setup',
|
|
content: <UnlockWalletOnboardingStep />,
|
|
placement: 'right',
|
|
shouldHideBackButton: true,
|
|
shouldHideNextButton: true,
|
|
},
|
|
{
|
|
target: '.wallet',
|
|
title: '0x Ecosystem Account Setup',
|
|
content: <IntroOnboardingStep />,
|
|
placement: 'right',
|
|
shouldHideBackButton: true,
|
|
continueButtonDisplay: 'enabled',
|
|
},
|
|
{
|
|
target: '.eth-row',
|
|
title: 'Add ETH',
|
|
content: <AddEthOnboardingStep />,
|
|
placement: 'right',
|
|
continueButtonDisplay: this._userHasVisibleEth() ? 'enabled' : 'disabled',
|
|
},
|
|
{
|
|
target: '.weth-row',
|
|
title: 'Step 1/2',
|
|
content: (
|
|
<WrapEthOnboardingStep
|
|
formattedEthBalanceIfExists={
|
|
this._userHasVisibleWeth() ? this._getFormattedWethBalance() : undefined
|
|
}
|
|
/>
|
|
),
|
|
placement: 'right',
|
|
continueButtonDisplay: this._userHasVisibleWeth() ? 'enabled' : undefined,
|
|
},
|
|
{
|
|
target: '.weth-row',
|
|
title: 'Step 2/2',
|
|
content: (
|
|
<SetAllowancesOnboardingStep
|
|
zrxAllowanceToggle={this._renderZrxAllowanceToggle()}
|
|
ethAllowanceToggle={this._renderEthAllowanceToggle()}
|
|
/>
|
|
),
|
|
placement: 'right',
|
|
continueButtonDisplay: this._userHasAllowancesForWethAndZrx() ? 'enabled' : 'disabled',
|
|
},
|
|
{
|
|
target: '.wallet',
|
|
title: '🎉 Congrats! The ecosystem awaits.',
|
|
content: 'Your wallet is now set up for trading. Use it on any relayer in the 0x ecosystem.',
|
|
placement: 'right',
|
|
continueButtonDisplay: 'enabled',
|
|
shouldHideNextButton: true,
|
|
},
|
|
];
|
|
return steps;
|
|
}
|
|
private _isAddressAvailable(): boolean {
|
|
return !_.isEmpty(this.props.userAddress);
|
|
}
|
|
private _userHasVisibleEth(): boolean {
|
|
return this.props.userEtherBalanceInWei > new BigNumber(0);
|
|
}
|
|
private _getWethBalance(): BigNumber {
|
|
const ethToken = utils.getEthToken(this.props.tokenByAddress);
|
|
if (!ethToken) {
|
|
return new BigNumber(0);
|
|
}
|
|
const ethTokenState = this.props.trackedTokenStateByAddress[ethToken.address];
|
|
return ethTokenState.balance;
|
|
}
|
|
private _getFormattedWethBalance(): string {
|
|
const ethToken = utils.getEthToken(this.props.tokenByAddress);
|
|
const ethTokenState = this.props.trackedTokenStateByAddress[ethToken.address];
|
|
return utils.getFormattedAmountFromToken(ethToken, ethTokenState);
|
|
}
|
|
private _userHasVisibleWeth(): boolean {
|
|
return this._getWethBalance() > new BigNumber(0);
|
|
}
|
|
private _userHasAllowancesForWethAndZrx(): boolean {
|
|
const ethToken = utils.getEthToken(this.props.tokenByAddress);
|
|
const zrxToken = utils.getZrxToken(this.props.tokenByAddress);
|
|
if (ethToken && zrxToken) {
|
|
const ethTokenAllowance = this.props.trackedTokenStateByAddress[ethToken.address].allowance;
|
|
const zrxTokenAllowance = this.props.trackedTokenStateByAddress[zrxToken.address].allowance;
|
|
return ethTokenAllowance > new BigNumber(0) && zrxTokenAllowance > new BigNumber(0);
|
|
}
|
|
return false;
|
|
}
|
|
private _overrideOnboardingStateIfShould(): void {
|
|
this._autoStartOnboardingIfShould();
|
|
this._adjustStepIfShould();
|
|
}
|
|
|
|
private _adjustStepIfShould(): void {
|
|
const stepIndex = this.props.stepIndex;
|
|
if (this._isAddressAvailable()) {
|
|
if (stepIndex < 2) {
|
|
this.props.updateOnboardingStep(2);
|
|
}
|
|
return;
|
|
}
|
|
const isExternallyInjected = utils.isExternallyInjected(
|
|
this.props.providerType,
|
|
this.props.injectedProviderName,
|
|
);
|
|
if (isExternallyInjected) {
|
|
if (stepIndex !== 1) {
|
|
this.props.updateOnboardingStep(1);
|
|
}
|
|
return;
|
|
}
|
|
if (stepIndex !== 0) {
|
|
this.props.updateOnboardingStep(0);
|
|
}
|
|
}
|
|
private _autoStartOnboardingIfShould(): void {
|
|
if (!this.props.isRunning && !this.props.hasBeenSeen && this.props.blockchainIsLoaded) {
|
|
this.props.updateIsRunning(true);
|
|
}
|
|
}
|
|
private _renderZrxAllowanceToggle(): React.ReactNode {
|
|
const zrxToken = utils.getZrxToken(this.props.tokenByAddress);
|
|
return this._renderAllowanceToggle(zrxToken);
|
|
}
|
|
private _renderEthAllowanceToggle(): React.ReactNode {
|
|
const ethToken = utils.getEthToken(this.props.tokenByAddress);
|
|
return this._renderAllowanceToggle(ethToken);
|
|
}
|
|
private _renderAllowanceToggle(token: Token): React.ReactNode {
|
|
if (!token) {
|
|
return null;
|
|
}
|
|
const tokenState = this.props.trackedTokenStateByAddress[token.address];
|
|
return (
|
|
<AllowanceToggle
|
|
token={token}
|
|
tokenState={tokenState}
|
|
isDisabled={!tokenState.isLoaded}
|
|
blockchain={this.props.blockchain}
|
|
// tslint:disable-next-line:jsx-no-lambda
|
|
refetchTokenStateAsync={async () => this.props.refetchTokenStateAsync(token.address)}
|
|
/>
|
|
);
|
|
}
|
|
}
|