aboutsummaryrefslogblamecommitdiffstats
path: root/packages/instant/src/components/install_wallet_panel_content.tsx
blob: 88c26f59cf32a8b2cb945d0f61cf4e5a7594bab3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                               
        




                                
                                             
                                   
                                      

                                                
                                                                                           



                                                  





                                                                                                










































                                                                                                             
 
import * as React from 'react';

import {
    META_MASK_CHROME_STORE_URL,
    META_MASK_FIREFOX_STORE_URL,
    META_MASK_OPERA_STORE_URL,
    META_MASK_SITE_URL,
} from '../constants';
import { ColorOption } from '../style/theme';
import { Browser } from '../types';
import { envUtil } from '../util/env';

import { MetaMaskLogo } from './meta_mask_logo';
import { StandardPanelContent, StandardPanelContentProps } from './standard_panel_content';
import { Button } from './ui/button';

export interface InstallWalletPanelContentProps {}

export class InstallWalletPanelContent extends React.Component<InstallWalletPanelContentProps> {
    public render(): React.ReactNode {
        const panelProps = this._getStandardPanelContentProps();
        return <StandardPanelContent {...panelProps} />;
    }
    private readonly _getStandardPanelContentProps = (): StandardPanelContentProps => {
        const browser = envUtil.getBrowser();
        let description = 'Please install the MetaMask wallet browser extension.';
        let actionText = 'Learn More';
        let actionUrl = META_MASK_SITE_URL;
        switch (browser) {
            case Browser.Chrome:
                description = 'Please install the MetaMask wallet browser extension from the Chrome Store.';
                actionText = 'Get Chrome Extension';
                actionUrl = META_MASK_CHROME_STORE_URL;
                break;
            case Browser.Firefox:
                description = 'Please install the MetaMask wallet browser extension from the Firefox Store.';
                actionText = 'Get Firefox Extension';
                actionUrl = META_MASK_FIREFOX_STORE_URL;
                break;
            case Browser.Opera:
                description = 'Please install the MetaMask wallet browser extension from the Opera Store.';
                actionText = 'Get Opera Add-on';
                actionUrl = META_MASK_OPERA_STORE_URL;
                break;
            default:
                break;
        }
        return {
            image: <MetaMaskLogo width={85} height={80} />,
            title: 'Install MetaMask',
            description,
            moreInfoSettings: {
                href: META_MASK_SITE_URL,
                text: 'What is MetaMask?',
            },
            action: (
                <Button
                    href={actionUrl}
                    width="100%"
                    fontColor={ColorOption.white}
                    backgroundColor={ColorOption.darkOrange}
                >
                    {actionText}
                </Button>
            ),
        };
    };
}