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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?