react-async

WebJar for react-async

Лицензия

Лицензия

MIT
Категории

Категории

React Взаимодействие с пользователем Веб-фреймворки
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

react-async
Последняя версия

Последняя версия

2.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

react-async
WebJar for react-async
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/andreypopp/react-async

Скачать react-async

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/react-async/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>react-async</artifactId>
    <version>2.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/react-async/
implementation 'org.webjars.npm:react-async:2.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/react-async/
implementation ("org.webjars.npm:react-async:2.1.0")
'org.webjars.npm:react-async:jar:2.1.0'
<dependency org="org.webjars.npm" name="react-async" rev="2.1.0">
  <artifact name="react-async" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='react-async', version='2.1.0')
)
libraryDependencies += "org.webjars.npm" % "react-async" % "2.1.0"
[org.webjars.npm/react-async "2.1.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : ascii-json jar [0.2.0,0.3)

Модули Проекта

Данный проект не имеет модулей.

React Async

VERSION DESCRIBED IN THIS DOCUMENT IS NOT RELEASED YET

React Async provides a way for React components to subscribe for observable values.

Installation

React Async is packaged on npm:

$ npm install react-async

Basic usage

React Async provides a component decorator @Async which given a set of observable specifications wraps a regular React component and returns a new one which subscribes to observables and re-renders the component when new data arrives.

The basic example looks like:

import React from 'react';
import Async from 'react-async';
import Rx from 'rx';

function defineXHRObservable(url) {
  return {
    id: url,
    start() {
      return Rx.fromPromise(fetch(url))
    }
  }
}

function MyComponentObservables(props) {
  return {
    user: defineXHRObservable(`/api/user?user${props.userID}`)
  }
}

@Async(MyComponentObservables)
class MyComponent extends React.Component {

  render() {
    let {user} = this.props
    ...
  }

}

The @Async decorator injects data from observables via props so in render() method of <MyComponent /> the user property will contain the data fetched via XHR.

Rendering async components on server with fetched async state

While React provides renderToString(element) function which can produce markup for a component, this function is synchronous. That means that it can't be used when you want to get markup from server populated with data.

React Async provides another version of renderToString(element) which is asynchronous and fetches all data defined in observable specifications before rendering a passed component tree.

First, you'd need to install fibers package from npm to use that function:

$ npm install fibers

Then use it like:

import {renderToString} from 'react-async';

renderToString(
  <Component />,
  function(err, markup) {
    // send markup to browser
  })

This way allows you to have asynchronous components arbitrary deep in the hierarchy.

Версии библиотеки

Версия
2.1.0