Download the PHP package tystr/react-js-bundle without Composer
On this page you can find all versions of the php package tystr/react-js-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package react-js-bundle
TystrReactJsBundle
A bundle for integrating React into Symfony. Provides server-side rendering via the v8js PHP extension for building isomorphic applications.
Installation
Install tystr/react-js-bundle
with composer:
# composer.phar require tystr/react-js-bundle:dev-master:~0.1
Configuration
Register the bundle with your application:
Configure the paths to your react.js and components javascript files:
By default, the v8js PHP extension is used to render the react components. If you would prefer to use an external server to render the react components, you may configure an external rendering method:
This will cause a GET
request to be made to the render_url
value with the
component and data ({name: Tyler}
in this case) in the url as query parameters:
GET http://localhost:3000?component=MyComponent&data=%7B%22name%22%3A%22Tyler%22%7D
Usage
This will render the react component MyComponent
on the server-side and place
it inside a div with the id my-component
.
To pass data to a component, pass a hash as the third argument:
This makes this.props.name
available in MyComponent
.
To mount all components rendered server-side with the react_component
function, use the react_mount_components
twig function:
To mount a single react component (as long as it's already rendered with
react_component
), use the react_mount_component
function:
Attempting to mount a component whose markup has not been rendered will result
in an exception Tystr\ReactJsBundle\Exception\ComponentNotRenderedException
.
All versions of react-js-bundle with dependencies
twig/twig Version ^1.23
symfony/dependency-injection Version ~2.7
symfony/config Version ~2.7
symfony/http-kernel Version ~2.7
guzzlehttp/guzzle Version ^6.1