Giter VIP home page Giter VIP logo

react-script-loader-hoc's Introduction

react-script-loader-hoc

npm version license

A higher-order React component that assists in the asynchronous loading of third party JS libraries (eg. Stripe.js)

Installation

yarn add react-script-loader-hoc

or

npm install --save react-script-loader-hoc

Example usage with Stripe React Elements

Simple example of asynchronously loading the Stripe.js library. The LoadIcon component will be rendered until the Stripe.js library loads asynchronously, at which point the LoadIcon will be replaced by the StripeProvider.

  import React from 'react';
  import ScriptLoader from 'react-script-loader-hoc';
  import { StripeProvider, Elements } from 'react-stripe-elements';
  import { LoadIcon, CheckoutForm } from '../components';

  const StripePayment = ({ scriptsLoadedSuccessfully }) => {
    if (!scriptsLoadedSuccessfully) return <LoadIcon />;

    return (
      <StripeProvider apiKey="pk_test_12345">
        <Elements>
          <CheckoutForm />
        </Elements>
      </StripeProvider>
    );
  };

  export default ScriptLoader('https://js.stripe.com/v3/')(StripePayment);

API

ScriptLoader takes n string arguments, each of which should be a URL of a javascript resource to load. The higher-order ScriptLoader component will pass two boolean-valued props to the wrapped component:

  • scriptsLoaded
  • scriptsLoadedSuccessfully

scriptsLoaded will be false until either all scripts load successfully or one or more of the scripts fail to load (eg. if a 404 occurs), at which point it will be true. scriptsLoadedSuccessfully will be true if all scripts load successfully or false if either an error occurs or if some scripts are still loading. scriptsLoadedSuccessfully will always be false while scriptsLoaded is false.

react-script-loader-hoc's People

Contributors

domlyons avatar rabinzon avatar rogersnm avatar stevewillard avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.