react-async-script-loader

A decorator for script lazy loading on react component

  • 所有者: leozdgao/react-async-script-loader
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

react-async-script-loader

Build Status npm version

A decorator for script lazy loading on react component.

Description

Some component may depend on other vendors which you may not want to load them until you really need them. So here it is, use High Order Component to decorate your component and it will handle lazy loading for you, it support parallel and sequential loading.

Installation

npm install --save react-async-script-loader

API

scriptLoader(...scriptSrc)([WrappedComponent])

scriptSrc can be a string of source or an array of source. scriptSrc will be loaded sequentially, but array of source will be loaded parallelly. It also cache the loaded script to avoid duplicated loading. More lively description see use case below.

Properties

Decorated component will receive following properties:, Name, Type, Description, ----, ----, -----------, isScriptLoaded, Boolean, Represent scripts loading process is over or not, maybe part of scripts load failed., isScriptLoadSucceed, Boolean, Represent all scripts load successfully or not., onScriptLoaded, Function, Triggered when all scripts load successfully., ## How to use

You can use it to decorate your component.

import React, { Component } from 'react'
import scriptLoader from 'react-async-script-loader'

class Editor extends Component {
  ...

  componentWillReceiveProps ({ isScriptLoaded, isScriptLoadSucceed }) {
    if (isScriptLoaded && !this.props.isScriptLoaded) { // load finished
      if (isScriptLoadSucceed) {
        this.initEditor()
      }
      else this.props.onError()
    }
  }

  componentDidMount () {
    const { isScriptLoaded, isScriptLoadSucceed } = this.props
    if (isScriptLoaded && isScriptLoadSucceed) {
      this.initEditor()
    }
  }

  ...
}

export default scriptLoader(
  [
    'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js',
    'https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.5/marked.min.js'
  ],
  '/assets/bootstrap-markdown.js'
)(Editor)

The example above means that the jquery and marked will be loading parallelly, and after loaded these 2 vendors, load bootstrap-markdown sequentially.

It is possible that some script will be failed to load. ScriptLoader will cache the script that load successfully and will remove the script node which fail to load before.

Currently, if you try to reload scripts, you have to remount your component.

And it's cooler if you use decorator syntax. (ES7)

@scriptLoader(
  [
    'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js',
    'https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.5/marked.min.js'
  ],
  '/assets/bootstrap-markdown.js'
)
class Editor extends Component {

}

license

MIT

主要指标

概览
名称与所有者leozdgao/react-async-script-loader
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2015-11-17 09:25:20
推送于2019-02-12 07:56:13
最后一次提交2017-11-02 23:35:08
发布数0
用户参与
星数256
关注者数11
派生数55
提交数29
已启用问题?
问题数24
打开的问题数19
拉请求数6
打开的拉请求数5
关闭的拉请求数4
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?