aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/onboarding/portal_onboarding_flow.tsx
blob: 25570b4a70c38182878faed72eb6bc3336ea4a03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import * as _ from 'lodash';
import * as React from 'react';

import { black } from 'material-ui/styles/colors';
import { OnboardingFlow, Step } from 'ts/components/onboarding/onboarding_flow';
import { ProviderType } from 'ts/types';
import { utils } from 'ts/utils/utils';

export interface PortalOnboardingFlowProps {
    stepIndex: number;
    isRunning: boolean;
    userAddress: string;
    providerType: ProviderType;
    injectedProviderName: string;
    blockchainIsLoaded: boolean;
    hasBeenSeen: boolean;
    setIsRunning: (isRunning: boolean) => void;
    setOnboardingStep: (stepIndex: number) => void;
}

const steps: Step[] = [
    {
        target: '.wallet',
        content:
            'Before you begin, you need to connect to a wallet. This will be used across all 0x relayers and dApps',
        placement: 'right',
    },
    {
        target: '.wallet',
        content: 'Unlock your metamask extension to begin',
        placement: 'right',
    },
    {
        target: '.wallet',
        content:
            'In order to start trading on any 0x relayer in the 0x ecosystem, you need to complete two simple steps',
        placement: 'right',
        hideBackButton: true,
    },
    {
        target: '.wallet',
        content: 'Before you begin you will need to send some ETH to your metamask wallet',
        placement: 'right',
    },
];

export class PortalOnboardingFlow extends React.Component<PortalOnboardingFlowProps> {
    public componentDidMount(): void {
        this._overrideOnboardingStateIfShould();
    }
    public componentDidUpdate(): void {
        this._overrideOnboardingStateIfShould();
    }
    public render(): React.ReactNode {
        return (
            <OnboardingFlow
                steps={steps}
                stepIndex={this.props.stepIndex}
                isRunning={this.props.isRunning}
                onClose={this.props.setIsRunning.bind(this, false)}
                setOnboardingStep={this.props.setOnboardingStep}
            />
        );
    }

    private _isAddressAvailable(): boolean {
        return !_.isEmpty(this.props.userAddress);
    }

    private _overrideOnboardingStateIfShould(): void {
        this._autoStartOnboardingIfShould();
        this._adjustStepIfShould();
    }

    private _adjustStepIfShould(): void {
        if (this._isAddressAvailable()) {
            if (this.props.stepIndex < 2) {
                this.props.setOnboardingStep(2);
            }
            return;
        }
        const isExternallyInjected = utils.isExternallyInjected(
            this.props.providerType,
            this.props.injectedProviderName,
        );
        if (isExternallyInjected) {
            this.props.setOnboardingStep(1);
            return;
        }
        this.props.setOnboardingStep(0);
    }
    private _autoStartOnboardingIfShould(): void {
        if (!this.props.isRunning && !this.props.hasBeenSeen && this.props.blockchainIsLoaded) {
            this.props.setIsRunning(true);
        }
    }
}