1.0.3-beta.11 • Published 1 day ago

@mojito-inc/mixers v1.0.3-beta.11

Weekly downloads
-
License
MIT
Repository
github
Last release
1 day ago

Mixer v1 to Mixer v2 Migration

Using this library in your project Mixer v2

You can install this project with one of these commands:

npm install --save @mojito-inc/mixers
yarn add @mojito-inc/mixers

Alternatively, once you've built the library using yarn build, you can install it locally in another project adding this line to your package.json's dependencies. If you update it, make sure you remove the entry from yarn.lock and re-install it.

"@mojito-inc/mixers": "file:../mojito-mixers"

Also, make sure you install the following dependencies:

react
react-dom
@mui/material

And also, keep in mind:

  • @emotion/react is not needed.

  • @emotion/styled is needed as stated in MUI's docs:

    Keep @emotion/styled as a dependency of your project. Even if you never use it explicitly, it's a peer dependency of @mui/material.

  • styled-components is needed as stated in react-payment-inputs' docs, but it's not used:

    Note: requires styled-components to be installed as a dependency.

    By default, React Payment Inputs does not have built-in styling for it's inputs. However, React Payment Inputs comes with a styled wrapper which combines the card number, expiry & CVC fields...

Usage:

Fist, you need to create a CheckoutComponent: React.FC<PUICheckoutProps> component that renders MojitoCheckout and passes it all required props. Simply copy the following file and adapt it to your needs:

You can find an example here: app/src/layout/CheckoutLayout.tsx.

You'll use this CheckoutComponent component in your code instead of MojitoCheckout just so that you don't have to repeat properties that rarely change, like the theme DefaultThemes

Note:

In the _app.tsx file, please add the following line: <Script src="https://cdn.checkout.com/js/framesv2.min.js" />. if it was not added, credit card payments won't work.

If you are using create-react-app

Add below packages as dependencies in your package.json

{
  ...
  "dependencies": {
    ...
    "url": "latest",
    "http": "npm:http-browserify",
    "https": "npm:https-browserify",
    "zlib": "npm:browserify-zlib",
    "http-browserify": "latest",
    "https-browserify": "latest",
    "browserify-zlib": "latest",
    "assert": "^2.0.0",
    "stream": "^0.0.2"
  }
}

To ignore the sourcemap warnings, create a .env file with the following in your root directory:

GENERATE_SOURCEMAP=false
import { MojitoCheckout } from '@mojito-inc/mixers';

  const theme = {
            font: {
              primary: 'Sneak',
              secondary: 'Sneak',
            },
            color: {
              primary: '#6663FD',
              secondary: '#FFFFFF',
              background: '#FAFAFC',
              errorBackground: '#FEE3E5',
              text: '#000000',
              cardBackground: '#FFFFFF',
              checkout: {
                continueButtonBackground: '#6663FD',
                continueButtonTextColor: '#FFFFFF',
                disableButtonBackground: '#DADAE9',
              },
              placeholder: '#BABEC5',
              costBreakdown: {
                applyButtonBackground: '#DADAE9',
                applyButtonTextColor: '#FFFFFF',
              },
              paymentConfirmation: {
                awaitingPaymentBackground: '#f0ebeb',
                awaitingPaymentTextColor: 'orange',
                processedBackground: '#E5F9E0',
                processedTextColor: '#000000',
                copyIconColor: '#042439',
              },
              highlightedText: '#6663FD',
              unHighlightedText: '#6663FB',
              errorText: '',
              linksText: '',
              multiSigBackground: '',
              multiSigBorder: '',
              multiSigText: '',
            },
          };

  const handleClickGoToMarketPlace = useCallback(async () => {
  }, []);

  const onEvent = (e:string)=>{
    console.log("EVENT",e)
  }

  
  <MojitoCheckout
    uri={ API_URL }
    userInfo: {
      email: user?.email,
    },
    checkoutOptions={{
      orgId: 'd086ea16-d40d-454c-84a4-64b5e940670a',
      lotId: '17cd1000-323d-4a20-8e5f-7a8598ffae2a',
      quantity: 1,
      collectionItemId: '64e99437-ac2e-45bc-b4a6-4750985b4e81',
      discountCode: '',
      invoiceId: '',
    }}
    theme={ theme }
    events={
      onEvent:onEvent,
      onCatch:onCatch,
      onError:onError,
    }
    walletDetails={{
      wallet: {
        account: walletAddress,
        chainId: chainId,
        connected: true,
        balance: currencyBalance,
        providerType: 'Metamask',
      }, // Pass custom connected wallet details 
      saveWalletData: saveWalletData, // In the function callback you will get a wallet details
      onDisconnect: onDisconnect, // To handle custom disconnect connect wallet
      onClickRefetchBalance: onClickRefetchBalance, // To handle custom refetch balance
    }}
    onClickConnectWallet={ onClickConnectWallet } // To handle custom connect wallet component
    uiConfiguration={
      global:{
        logoSrc: require('./logo.svg),
        loaderImageSrc: require('./loading.svg),
        errorImageSrc: require('./error.svg),
      }
      payment: {
        creditCard: true,
        walletConnect: true,
        wire: true,
        coinbase: true
      },
      costBreakdown: {
        showDiscountCode: true
      },
      paymentConfirmation: {
        onGoTo: () => handleClickGoToMarketPlace(),
        creditCardInstructions: (
          <CreditCardInstructions /> //Your own instructions for credit card
        ),
        metamaskInstructions: (
          <MetamaskInstructions /> //Your own instructions for metamask
        ),
        wireTransferInstructions: (
          <WireTransferInstructions /> //Your own instructions for wire transfer
        ),
      },
      delivery: {
        creditCard: {
          enableMultiSig: false,
          apiKey: configuration.PAYMENT_API_KEY,
        },
      },
      walletConnect: {
        orgId: configuration.ORGANIZATION_ID,
        walletConnectProjectId: configuration.PROJECT_ID,
        paperClientId: configuration.PAPER_CLIENT_ID,
        clientId: configuration.clientId,
        activeChain: configuration.activeChain,
        isPaperWallet: false, // if true it will work as paper wallet
        isWeb2Login: false, // if true it will work as web2 login (Auth0)
        skipSignature: false, // if true it will skip the signature process
        theme: ConnectWalletTheme, // Custom connect wallet theme
      },
      walletOptions: {
        enableEmail: true,
        enableMetamask: true,
        enableWalletConnect: true,
      },
    }
    show={ show }
    token={ token } />

Parameters:

PramsTypeRequiredDescription
uristringAPI url
userInfoobjectUserInfo
showbooleanto open checkout modal
checkoutOptionsobjectCheckoutOptions
themeobjectTheme
eventsobjectEvents, you will get the logs
onClickConnectWalletfunctionYour own connect wallet logic
walletDetailsobjectpass connected wallet details if you add own connect wallet logic else no need to pass
uiConfigurationobjectUIConfiguration
successbooleanto show success popup
tokenstringpass bearer token
debugbooleanif true you will see the logs

UserInfo

PramsTypeDescription
emailstringTo show email in UI

CheckoutOptions

PramsTypeDescription
orgIdstringYour organization id
lotIdstringLot id you will get from mint portal
quantitynumberquantity of the token
paymentIdstringpaymentId for the success popup
collectionItemIdstringPass item Id to get the details of an item
discountCodestringcoupon code
vertexEnabledbooleanto calculate tax
invoiceIdstringpass invoiceId for auction case
successURLstringsuccess Redirect URL
errorURLstringerror Redirect URL

walletDetails

PramsTypeDescription
walletobjectPass connected Wallet details if you add your own wallet logic
saveWalletDatafunctionIn the function callback you can get the connected wallet details
onDisconnectnumberTo handle your own disconnect function
onClickRefetchBalancestringTo handle your own re-fetch function

UI Configuration

PramsTypeDescription
globalobjectGlobal config
paymentobjectPayment Config
costBreakdownobjectConst breakdown UI config
paymentConfirmationobjectPayment confirmation UI config
deliveryobjectDelivery UI config
walletConnectobjectConnect Wallet SDK config
walletOptionsobjectConnect wallet options
breadCrumbsarrayCustom breadCrumbs name
isAutoFillCountryCodebooleanTo enable auto fill countryCode

Global Config

PramsTypeDescription
logoSrcstringLogo url
loaderImageSrcstringloader url
errorImageSrcstringerror url

Payment config

PramsTypeDescription
walletConnectbooleanTo enable wallet connect
wirebooleanTo enable wire
creditCardbooleanTo enable credit card
coinbasebooleanTo enable coinbase

Cost breakdown config

TypeDescription
showDiscountCodebooleanTo hide or show discount UI
showProductionDisclaimerbooleanTo hide or show production disclaimer UI
productDisclaimerTextstringCustom product disclaimer text

Payment Confirmation

TypeDescription
wireTransferInstructionsJSX ElementCustom component for wire transfer instructions
creditCardInstructionsJSX ElementCustom component for credit card instructions
metamaskInstructionsJSX ElementCustom metamask instructions
onGoTofunctionFunction to handle back to marketplace button

Delivery Config

PramsTypeDescription
walletConnectObjectMojitoDeliveryType
wireObjectMojitoDeliveryType
creditCardObjectMojitoCheckoutDeliveryType
coinbaseObjectMojitoDeliveryType

MojitoDeliveryType

PramsTypeDescription
enableMultiSigboolean

MojitoCheckoutDeliveryType

PramsTypeDescription
enableMultiSigboolean
apiKeystringapi key for credit card payment

Wallet connect config

PramsTypeDescription
walletConnectProjectIdbooleanWallet connect project id
paperClientIdbooleanEmail wallet paper client id
contentobjectTo customise the connect wallet modal contents
isWeb2LoginbooleanConnect wallet by web2 login
skipSignaturebooleanConnect wallet by skipping signature process
themeThemeCustomise the wallet connect theme
clientIdstring
activeChainstring
isPaperWalletboolean

Wallet Options

TypeDescription
enableEmailbooleanTo hide or show Email wallet button
enableMetamaskbooleanTo hide or show metamask button
enableWalletConnectbooleanTo hide or show wallet connect button

Connect wallet theme:

  import { createTheme } from '@mui/material/styles';

  export const ConnectWalletTheme = createTheme({
    typography: {
      fontFamily: 'untitled_sansregular_regular',
    },
    components: {
      MuiTextField: {
        styleOverrides: {
          root: {
            '& input::-webkit-outer-spin-button, & input::-webkit-inner-spin-button':
                {
                  display: 'none',
                },
            '& input[type=number]': {
              MozAppearance: 'textfield',
            },
          },
        },
      },
      MuiCssBaseline: {
        styleOverrides: `
                  @font-face {
                    font-family: untitled_sansregular_regular;
                    font-style: normal;
                    font-display: swap;
                    font-weight: 400;
                    text-transform: none;
                    font-size: 16px;
                    color: #000;
                  }
                `,
      },
      MuiButton: {
        styleOverrides: {
          root: {
            fontFamily: 'untitled_sansregular_regular',
            textTransform: 'none',
            borderRadius: '4px',
            fontWeight: 700,
            fontSize: '16px',
            border: '1px solid #242629',
            backgroundColor: '#fff',
            color: '#242629',
            '&:hover': {
              backgroundColor: '#fff',
              color: '#242629',
              opacity: 0.5,
            },
          },
        },
      },
      MuiDialog: {
        styleOverrides: {
          paper: {
            border: '1px solid #D7D8DB',
            boxShadow: '0px 8px 16px rgba(0, 0, 0, 0.08)',
            borderRadius: '4px',
          },
        },
      },
      MuiDivider: {
        variants: [
          {
            props: { orientation: 'horizontal' },
            style: {
              ':before': {
                borderTop: 'thin solid #D7D8DB',
              },
              ':after': {
                borderTop: 'thin solid #D7D8DB',
              },
            },
          },
        ],
      },
    },
    palette: {
      primary: {
        main: '#242629',
      },
      secondary: {
        main: '#A6FF00',
      },
      backgroundColor: {
        primary: '#ffffff',
        secondary: '#000000',
      },
      grey: {
        100: '#F5F5F5',
        500: '#9E9E9E',
      },
      toastError: {
        500: '#CE2818',
      },
    },
  });

Checkout Options

Address Validation & Tax Calculation with Vertex or TaxJar

If you'd like address to be validated and taxes to be calculated during the checkout process, particularly in the Billing Information step, you need a Vertex or TaxJar account. Once you have it, you need to configure it in Mojito Mint.

Alternatively, set the following prop to disable those calls to the backend: vertexEnabled = false.

Supported Countries

We use Checkout for payments, so the supported countries depend on which payment method is going to be used, as described here:

(Secret) Debug Mode

If you quickly click the logo in the top-right corner 16 times, the debug mode will be enabled (toggled, actually), even in production and regardless of the initial value you passed for the debug prop.

The debug mode will, among logging/displaying some other less relevant pieces of data:

  • Show form values and errors as JSON below the form:

    Debug form console Debug form values and errors

Error page

Create an error page with the page path /payments/failure:

Success page

Create an success page with the page path /payments/success:

Retrieve the paymentId from the query parameters of the URL and pass it as a parameter to the MojitoCheckout component

  <MojitoCheckout
      userInfo={{
        email: 'Showrisrinivas@ionixxtech.com',
      }}
      checkoutOptions={{
        paymentId,
      }}
      show={ true }
      success={ true }
      uiConfiguration={{
        paymentConfirmation: {
          onGoTo: onClickGoToMarketPlace,
        },
      }} />

Theme

You can use the themeOptions or theme props to pass a custom theme or theme options object:

themeOptions (preferred) will merge Mojito's default theme with your custom one

If none is provided, the default Mojito theme will be used.

  const DefaultThemes: ThemeConfiguration = {
      font: {
        primary: 'Sneak',
        secondary: 'Sneak',
      },
      color: {
        primary: '#6663FD',
        secondary: '#FFFFFF',
        background: '#FAFAFC',
        errorBackground: '#FEE3E5',
        text: '#000000',
        cardBackground: '#FFFFFF',
        checkout: {
          continueButtonBackground: '#6663FD',
          continueButtonTextColor: '#FFFFFF',
        },
        placeholder: '#BABEC5',
        costBreakdown: {
          applyButtonBackground: '#DADAE9',
          applyButtonTextColor: '#FFFFFF',
        },
      },
    };

Note that using MUI's ThemeProvider from your project won't work as expected and you will end up seeing Mojito's default theme:

<MojitoCheckout theme={ theme }

React specific config:

If you are facing any issues regarding the Webpack polyfill in React.js applications while integrating this SDK, please follow these steps:

Step 1: Run either npm install or yarn install. Step 2: a) Before running the app, execute the following script once. b) Create a file named (filename).js in the root of the project folder and paste the code from this GitHub repository: Development setup Step 3: In the package.json, add a new script called "prebuild": "node {name of the js file that you added}" and run the command npm run prebuild. Step 4: Now, you can run the application.

Mixer development

Development setup

1.0.3-beta.11

1 day ago

1.0.3-beta.10

5 days ago

1.0.3-beta.9

23 days ago

1.0.3-beta.8

24 days ago

1.0.3-beta.7

24 days ago

1.0.3-beta.6

1 month ago

1.0.3-beta.5

2 months ago

1.0.3-beta.4

2 months ago

1.0.3-beta.3

2 months ago

1.0.3-beta.2

3 months ago

1.0.3-beta.1

3 months ago

1.0.3-beta.0

3 months ago

1.0.2

4 months ago

1.0.1-beta.60

4 months ago

1.0.1-beta.58

4 months ago

1.0.1-beta.59

4 months ago

1.0.1-beta.57

4 months ago

1.0.1-beta.56

4 months ago

1.0.1-beta.55

5 months ago

1.0.1-beta.54

5 months ago

1.0.1-beta.52

5 months ago

1.0.1-beta.53

5 months ago

1.0.1-beta.51

5 months ago

1.0.1-beta.50

5 months ago

1.0.1-beta.49

5 months ago

1.0.1-beta.48

6 months ago

1.0.1-beta.47

7 months ago

1.0.1-beta.46

7 months ago

1.0.1-beta.45

7 months ago

1.0.1-beta.44

7 months ago

1.0.1-beta.43

7 months ago

1.0.1-beta.42

7 months ago

1.0.1-beta.41

7 months ago

1.0.1-beta.40

7 months ago

1.0.1-beta.39

7 months ago

1.0.1-beta.38

7 months ago

1.0.1-beta.37

7 months ago

1.0.1-beta.36

7 months ago

1.0.1-beta.35

7 months ago

1.0.1-beta.34

7 months ago

1.0.1-beta.33

7 months ago

1.0.1-beta.32

7 months ago

1.0.1-beta.31

7 months ago

1.0.1-beta.30

7 months ago

1.0.1-beta.29

7 months ago

1.0.1-beta.28

7 months ago

1.0.1-beta.27

7 months ago

1.0.1-beta.26

7 months ago

1.0.1-beta.25

7 months ago

1.0.1-beta.24

7 months ago

1.0.1-beta.23

7 months ago

1.0.1-beta.22

7 months ago

1.0.1-beta.21

7 months ago

1.0.1-beta.20

8 months ago

1.0.1-beta.19

8 months ago

1.0.1-beta.18

8 months ago

1.0.1-beta.17

8 months ago

1.0.1-beta.16

8 months ago

1.0.1-beta.15

8 months ago

1.0.1-beta.14

8 months ago

1.0.1-beta.13

8 months ago

1.0.1-beta.12

8 months ago

1.0.1-beta.11

8 months ago

1.0.1-beta.10

8 months ago

1.0.1-beta.9

8 months ago

1.0.1-beta.8

8 months ago

1.0.1-beta.7

9 months ago

1.0.1-beta.6

9 months ago

1.0.1-beta.5

9 months ago

1.0.1-beta.4

9 months ago

1.0.1-beta.3

9 months ago

1.0.1-beta.2

9 months ago

1.0.1-beta.1

9 months ago

1.0.1-beta.0

9 months ago

1.0.1

9 months ago