SlideShare a Scribd company logo
PHP UK Conference
February 2017
Integrating React.js with
PHP Projects
Nacho Martín
@nacmartin
My name is Nacho Martin.
Almost every project needs a rich frontend,
for one reason or another.
We build tailor-made projects.
So we have been thinking about this for some time.
I write code at Limenius
Why (as a PHP developer) should I
care about the frontend?
Integrating React.js with PHP projects
What is React.js?
Pour eggs in the pan
The fundamental premise
How to cook an omelette
Buy eggs
Break eggs
Pour eggs in the pan
Beat eggs
The fundamental premise
How to cook an omelette
Buy eggs
Break eggs
Options:
The fundamental premise
Options:
The fundamental premise
1: Re-render everything.
Options:
The fundamental premise
1: Re-render everything. Simple
Options:
The fundamental premise
1: Re-render everything. Simple Not efficient
Options:
2: Find in the DOM where to
insert elements, what to move,
what to remove…
The fundamental premise
1: Re-render everything. Simple Not efficient
Options:
2: Find in the DOM where to
insert elements, what to move,
what to remove…
The fundamental premise
1: Re-render everything. Simple
Complex
Not efficient
Options:
2: Find in the DOM where to
insert elements, what to move,
what to remove…
The fundamental premise
1: Re-render everything. Simple
EfficientComplex
Not efficient
Options:
2: Find in the DOM where to
insert elements, what to move,
what to remove…
The fundamental premise
1: Re-render everything. Simple
EfficientComplex
Not efficient
React allows us to do 1, although it does 2 behind the scenes
Give me a state and a render() method that depends
on it and forget about how and when to render.*
The fundamental premise
Give me a state and a render() method that depends
on it and forget about how and when to render.*
The fundamental premise
* Unless you want more control, which is possible.
Click me! Clicks: 0
Our first component
Click me! Clicks: 1Click me!
Our first component
Our first component
import React, { Component } from 'react';
class Counter extends Component {
constructor(props) {
super(props);
this.state = {count: 1};
}
tick() {
this.setState({count: this.state.count + 1});
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
}
export default Counter;
Our first component
import React, { Component } from 'react';
class Counter extends Component {
constructor(props) {
super(props);
this.state = {count: 1};
}
tick() {
this.setState({count: this.state.count + 1});
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
}
export default Counter;
ES6 Syntax (optional but great)
Our first component
import React, { Component } from 'react';
class Counter extends Component {
constructor(props) {
super(props);
this.state = {count: 1};
}
tick() {
this.setState({count: this.state.count + 1});
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
}
export default Counter;
ES6 Syntax (optional but great)
Initial state
Our first component
import React, { Component } from 'react';
class Counter extends Component {
constructor(props) {
super(props);
this.state = {count: 1};
}
tick() {
this.setState({count: this.state.count + 1});
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
}
export default Counter;
ES6 Syntax (optional but great)
Set new state
Initial state
Our first component
import React, { Component } from 'react';
class Counter extends Component {
constructor(props) {
super(props);
this.state = {count: 1};
}
tick() {
this.setState({count: this.state.count + 1});
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
}
export default Counter;
ES6 Syntax (optional but great)
Set new state
render(), called by React
Initial state
Working with state
Working with state
constructor(props) {
super(props);
this.state = {count: 1};
}
Initial state
Working with state
constructor(props) {
super(props);
this.state = {count: 1};
}
Initial state
this.setState({count: this.state.count + 1});
Assign state
Working with state
constructor(props) {
super(props);
this.state = {count: 1};
}
Initial state
this.setState({count: this.state.count + 1});
Assign state
this.state.count = this.state.count + 1;
Just remember: avoid this
render() and JSX
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Clícame!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
It is not HTML, it is JSX.
React transforms it internally to HTML elements.
Good practice: make render() as clean as possible, only a return.
render() and JSX
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Clícame!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
It is not HTML, it is JSX.
React transforms it internally to HTML elements.
Some things change
Good practice: make render() as clean as possible, only a return.
render() and JSX
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Clícame!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
It is not HTML, it is JSX.
React transforms it internally to HTML elements.
Some things change
We can insert JS expressions between {}
Good practice: make render() as clean as possible, only a return.
Thinking in React
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
Thinking in React
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
Here we don’t modify state
Thinking in React
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
Here we don’t make Ajax calls
Thinking in React
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
Here we don’t calculate decimals of PI and send an e-mail
with the result
Important: think our hierarchy
Important: think our hierarchy
Component hierarchy: props
class CounterGroup extends Component {
render() {
return (
<div>
<Counter name="amigo"/>
<Counter name="señor"/>
</div>
);
}
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>
Click me! {this.props.name}
</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
and in Counter…
Component hierarchy: props
class CounterGroup extends Component {
render() {
return (
<div>
<Counter name="amigo"/>
<Counter name="señor"/>
</div>
);
}
}
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>
Click me! {this.props.name}
</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
and in Counter…
Component hierarchy: props
class CounterGroup extends Component {
render() {
return (
<div>
<Counter name="amigo"/>
<Counter name="señor"/>
</div>
);
}
}
Pro tip: Stateless components
const Greeter = (props) => (
<div>
<div>Hi {props.name}!</div>
</div>
)
Tip: Presentational and Container components
const TaskList = (props) => (
<div>
{props.tasks.map((task, idx) => {
<div key={idx}>{task.name}</div>
})}
</div>
)
class TasksListContainer extends React.Component {
constructor(props) {
super(props)
this.state = {tasks: []}
}
componentDidMount() {
// Load data with Ajax and whatnot
}
render() {
return <TaskList tasks={this.state.tasks}/>
}
}
Everything depends on the state, therefore we can:
Everything depends on the state, therefore we can:
•Reproduce states,
Everything depends on the state, therefore we can:
•Reproduce states,
•Rewind,
Everything depends on the state, therefore we can:
•Reproduce states,
•Rewind,
•Log state changes,
Everything depends on the state, therefore we can:
•Reproduce states,
•Rewind,
•Log state changes,
•Make storybooks,
Everything depends on the state, therefore we can:
•Reproduce states,
•Rewind,
•Log state changes,
•Make storybooks,
•…
Learn once,
write everywhere
What if instead of this…
render() {
return (
<div className="App">
<button onClick={this.tick.bind(this)}>Click me!</button>
<span>Clicks: {this.state.count}</span>
</div>
);
}
…we have something like this?
render () {
return (
<View>
<ListView
dataSource={dataSource}
renderRow={(rowData) =>
<TouchableOpacity >
<View>
<Text>{rowData.name}</Text>
<View>
<SwitchIOS
onValueChange={(value) =>
this.setMissing(item, value)}
value={item.missing} />
</View>
</View>
</TouchableOpacity>
}
/>
</View>
);
}
…we have something like this?
render () {
return (
<View>
<ListView
dataSource={dataSource}
renderRow={(rowData) =>
<TouchableOpacity >
<View>
<Text>{rowData.name}</Text>
<View>
<SwitchIOS
onValueChange={(value) =>
this.setMissing(item, value)}
value={item.missing} />
</View>
</View>
</TouchableOpacity>
}
/>
</View>
);
}
React Native
React Targets
•Web - react-dom
•Mobile - react-native
•Gl shaders - gl-react
•Canvas - react-canvas
•Terminal - react-blessed
react-blessed (terminal)
Setup
Recommended setup
Webpack
Pros
Webpack
• Manages dependencies
Pros
Webpack
• Manages dependencies
• Allows several environments: production, development, ….
Pros
Webpack
• Manages dependencies
• Allows several environments: production, development, ….
• Automatic page reload (even hot reload).
Pros
Webpack
• Manages dependencies
• Allows several environments: production, development, ….
• Automatic page reload (even hot reload).
• Can use preprocessors/“transpilers”, like Babel.
Pros
Webpack
• Manages dependencies
• Allows several environments: production, development, ….
• Automatic page reload (even hot reload).
• Can use preprocessors/“transpilers”, like Babel.
Pros
Cons
Webpack
• Manages dependencies
• Allows several environments: production, development, ….
• Automatic page reload (even hot reload).
• Can use preprocessors/“transpilers”, like Babel.
Pros
Cons
• It has a non trivial learning curve.
Webpack
• Manages dependencies
• Allows several environments: production, development, ….
• Automatic page reload (even hot reload).
• Can use preprocessors/“transpilers”, like Babel.
Pros
Cons
• It has a non trivial learning curve.
I maintain a sandbox: https://github.com/Limenius/symfony-react-sandbox
Insertion
<div id="react-placeholder"></div>
import ReactDOM from 'react-dom';
ReactDOM.render(
<Counter name="amigo">,
document.getElementById('react-placeholder')
);
HTML
JavaScript
Integration with PHP
https://github.com/Limenius/ReactRenderer
https://github.com/shakacode/react_on_rails
Based on
ReactRenderer
{{ react_component('RecipesApp', {'props': props}) }}
import ReactOnRails from 'react-on-rails';
import RecipesApp from './RecipesAppServer';
ReactOnRails.register({ RecipesApp });
Twig:
JavaScript:
ReactRenderer
{{ react_component('RecipesApp', {'props': props}) }}
import ReactOnRails from 'react-on-rails';
import RecipesApp from './RecipesAppServer';
ReactOnRails.register({ RecipesApp });
Twig:
JavaScript:
ReactRenderer
{{ react_component('RecipesApp', {'props': props}) }}
import ReactOnRails from 'react-on-rails';
import RecipesApp from './RecipesAppServer';
ReactOnRails.register({ RecipesApp });
Twig:
JavaScript:
<div class="js-react-on-rails-component" style="display:none" data-component-name=“RecipesApp”
data-props=“[my Array in JSON]" data-trace=“false" data-dom-id=“sfreact-57d05640f2f1a”></div>
Generated HTML:
Server-side rendering
Integrating React.js with PHP projects
Give me a state and a render() method that depends
on it and forget about how and when to render.
The fundamental premise
Give me a state and a render() method that depends
on it and forget about how and when to render.
The fundamental premise
We can render components in the server
Give me a state and a render() method that depends
on it and forget about how and when to render.
The fundamental premise
We can render components in the server
• SEO friendly.
Give me a state and a render() method that depends
on it and forget about how and when to render.
The fundamental premise
We can render components in the server
• SEO friendly.
• Faster perceived page loads.
Give me a state and a render() method that depends
on it and forget about how and when to render.
The fundamental premise
We can render components in the server
• SEO friendly.
• Faster perceived page loads.
• We can cache.
Client-side + Server-side
{{ react_component('RecipesApp', {'props': props, rendering': 'both'}}) }}
TWIG
Client-side + Server-side
{{ react_component('RecipesApp', {'props': props, rendering': 'both'}}) }}
TWIG
HTML returned by the server
<div id="sfreact-57d05640f2f1a"><div data-reactroot="" data-reactid="1" data-react-
checksum=“2107256409"><ol class="breadcrumb" data-reactid="2"><li class="active" data-
reactid=“3”>Recipes</li>
…
…
</div>
Client-side + Server-side
{{ react_component('RecipesApp', {'props': props, rendering': 'both'}}) }}
TWIG
HTML returned by the server
<div id="sfreact-57d05640f2f1a"><div data-reactroot="" data-reactid="1" data-react-
checksum=“2107256409"><ol class="breadcrumb" data-reactid="2"><li class="active" data-
reactid=“3”>Recipes</li>
…
…
</div>
An then React in the browser takes control over the component
Universal applications: Options
Option 1: Call a node.js subprocess
Make a call to node.js using Symfony Process component
* Easy (if we have node.js installed).
* Slow.
Library: https://github.com/nacmartin/phpexecjs
Option 2: v8js
Use PHP extension v8js
* Easy (although compiling the extension and v8 is not a breeze).
* Currently slow, maybe we could have v8 preloaded using php-pm so it
is not destroyed after every request-response cycle.
Library: https://github.com/nacmartin/phpexecjs
Option 3: External node.js server
We have “stupid” node.js server used only to render React components.
It has <100 LoC, and it doesn’t know anything about our logic.
* “Annoying” (we have to keep it running, which is not super annoying
either).
* Faster.
There is an example a dummy server for this purpose at
https://github.com/Limenius/symfony-react-sandbox
Options 1 & 2
$renderer = new PhpExecJsReactRenderer(‘path_to/server-bundle.js’);
$ext = new ReactRenderExtension($renderer, 'both');
$twig->addExtension($ext);
phpexecjs detects the presence of the extension v8js,
if not, calls node.js
Option 3
$renderer = new ExternalServerReactRenderer(‘../some_path/node.sock’);
$ext = new ReactRenderExtension($renderer, 'both');
$twig->addExtension($ext);
The best of the two worlds
In development use node.js or v8js with phpexecjs.
In production use an external server.
If we can cache server-side responses, even better.
Server side rendering, is it worth
it?
Server side rendering, is it worth
it?
Sometimes yes, but it introduces
complexity
Redux support
(+very brief introduction to Redux)
Redux: a matter of state
save
Your name: John
Hi, John
John’s stuff
Redux: a matter of state
save
Your name: John
Hi, John
John’s stuff
Redux: a matter of state
save
Your name: John
Hi, John
John’s stuff
state.name
callback to change it
dispatch(changeName(‘John'));
Component
dispatch(changeName(‘John'));
Component
changeName = (name) => {
return {
type: ‘CHANGE_NAME',
name
}
}
Action
dispatch(changeName(‘John'));
Component
changeName = (name) => {
return {
type: ‘CHANGE_NAME',
name
}
}
Action
const todo = (state = {name: null}, action) => {
switch (action.type) {
case 'CHANGE_USER':
return {
name: action.name
}
}
}
Reducer
dispatch(changeName(‘John'));
Component
changeName = (name) => {
return {
type: ‘CHANGE_NAME',
name
}
}
Action
const todo = (state = {name: null}, action) => {
switch (action.type) {
case 'CHANGE_USER':
return {
name: action.name
}
}
}
Reducer
Store
this.props.name == ‘John';dispatch(changeName(‘John'));
Component
changeName = (name) => {
return {
type: ‘CHANGE_NAME',
name
}
}
Action
const todo = (state = {name: null}, action) => {
switch (action.type) {
case 'CHANGE_USER':
return {
name: action.name
}
}
}
Reducer
Store
Integrating React.js with PHP projects
Integrating React.js with PHP projects
Redux with ReactRenderer
Sample code in
https://github.com/Limenius/symfony-react-sandbox
import ReactOnRails from 'react-on-rails';
import RecipesApp from './RecipesAppClient';
import recipesStore from '../store/recipesStore';
ReactOnRails.registerStore({recipesStore})
ReactOnRails.register({ RecipesApp });
Twig:
JavaScript:
{{ redux_store('recipesStore', props) }}
{{ react_component('RecipesApp') }}
Redux with ReactRenderer
Sample code in
https://github.com/Limenius/symfony-react-sandbox
import ReactOnRails from 'react-on-rails';
import RecipesApp from './RecipesAppClient';
import recipesStore from '../store/recipesStore';
ReactOnRails.registerStore({recipesStore})
ReactOnRails.register({ RecipesApp });
Twig:
JavaScript:
{{ redux_store('recipesStore', props) }}
{{ react_component('RecipesApp') }}
{{ react_component('AnotherComponent') }}
Share store between components
React
React
React
Twig
Twig
React
By sharing store they can share state
Twig
Share store between components
Forms, a special case
Dynamic forms, why?
•Inside of React components.
•Important forms where UX means better conversions.
•Very specific forms.
•Very dynamic forms that aren’t boring (see Typeform for instance).
Integrating React.js with PHP projects
Typically PHP frameworks have a Form Component
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Initial values
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Initial values
UI hints (widgets, attributes)
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
Show errors after Submit
Typically PHP frameworks have a Form Component
$form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
Some client-side validation (HTML5)
Show errors after Submit
Using forms in an API
$form $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
Some client-side validation (HTML5)
Show errors after Submit
…and we want more
$form $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
On Submit validation
Some client-side validation (HTML5)
…and we want more
$form $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
On blur sync validation
On Submit validation
Some client-side validation (HTML5)
…and we want more
$form $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
On blur sync validation
On Submit validation
On blur async validation
Some client-side validation (HTML5)
…and we want more
$form $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
On blur sync validation
On Submit validation
On blur async validation
Some client-side validation (HTML5)
All the dynamic goodies
Suppose this Symfony form
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('country', ChoiceType::class, [
'choices' => [
'United Kingdom' => 'gb',
'Deutschland' => 'de',
'España' => 'es',
]
])
->add('addresses', CollectionType::class, ...);
};
Forms rendered to HTML
$form->createView();
state.usuario
Forms rendered to HTML
$form->createView();
state.usuario
Forms rendered to HTML
$form->createView();
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario
Forms rendered to HTML
$form->createView();
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario
POST well formed
with country:’es’
and not ‘España’, ‘espana', ‘spain', ‘0’…
Forms rendered to HTML
$form->createView();
$form->submit($request);
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario
POST well formed
with country:’es’
and not ‘España’, ‘espana', ‘spain', ‘0’…
state.usuario
Forms in APIs
$form;
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario
Forms in APIs
$form; ✘
How do we know the visible choices or values?
Read the docs!
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario
Forms in APIs
$form;
$form->submit($request);
POST “I'm Feeling Lucky”
✘
How do we know the visible choices or values?
Read the docs!
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario This form should not contain extra fields!!1
Forms in APIs
$form;
$form->submit($request);
POST “I'm Feeling Lucky”
✘
How do we know the visible choices or values?
Read the docs!
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario This form should not contain extra fields!!1
The value you selected is not a valid choice!!
Forms in APIs
$form;
$form->submit($request);
POST “I'm Feeling Lucky”
✘
How do we know the visible choices or values?
Read the docs!
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario This form should not contain extra fields!!1
The value you selected is not a valid choice!!One or more of the given values is invalid!! :D
Forms in APIs
$form;
$form->submit($request);
POST “I'm Feeling Lucky”
✘
How do we know the visible choices or values?
Read the docs!
submit
Country: España
Deutschland
España
Addresses:
Some St.-
+state.usuario This form should not contain extra fields!!1
The value you selected is not a valid choice!!One or more of the given values is invalid!! :DMUHAHAHAHAHA!!!!!
Forms in APIs
$form;
$form->submit($request);
POST “I'm Feeling Lucky”
✘
How do we know the visible choices or values?
Read the docs!
Integrating React.js with PHP projects
Integrating React.js with PHP projects
Define, maintain and keep in sync in triplicate
Form Server API docs Form Client
:_(
How many devs does it take to write a form?
Wizard type form?
“While you code this
we will be preparing
different versions for
other use cases”
Case: Complex Wizard Form
Case: Complex Wizard Form
Case: Complex Wizard Form
What we need
$form->createView();
HTML
API
$mySerializer->serialize($form);
What we need
$form->createView();
HTML
Serialize! Ok, into which format?
API
$mySerializer->serialize($form);
JSON Schema
json-schema.org
How does it look like
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Product",
"description": "A product from Acme's catalog",
"type": "object",
"properties": {
"name": {
"description": "Name of the product",
"type": "string"
},
"price": {
"type": "number",
"minimum": 0,
"exclusiveMinimum": true
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
}
},
"required": ["id", "name", "price"]
}
Definitions
Types,
Validation rules
:_)
New resource: my-api/products/form
Liform & LiformBundle
https://github.com/Limenius/Liform
use LimeniusLiformResolver;
use LimeniusLiformLiform;
$resolver = new Resolver();
$resolver->setDefaultTransformers();
$liform = new Liform($resolver);
$form = $this->createForm(CarType::class, $car, ['csrf_protection' => false]);
$schema = json_encode($liform->transform($form));
Transform piece by piece
{"title":"task",
"type":"object",
"properties":{
"name":{
"type":"string",
"title":"Name",
"default":"I'm a placeholder",
"propertyOrder":1
},
"description":{
"type":"string",
"widget":"textarea",
"title":"Description",
"description":"An explanation of the task",
"propertyOrder":2
},
"dueTo":{
"type":"string",
"title":"Due to",
"widget":"datetime",
"format":"date-time",
"propertyOrder":3
}
},
“required":[ “name", "description","dueTo"]}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name',TypeTextType::class, [
'label' => 'Name',
'required' => true,
'attr' => ['placeholder' => 'I'm a placeholder’]])
->add('description',TypeTextType::class, [
'label' => 'Description',
'liform' => [
'widget' => 'textarea',
'description' => 'An explanation of the task',
]])
->add('dueTo',TypeDateTimeType::class, [
'label' => 'Due to',
'widget' => 'single_text']
)
;
}
Transform piece by piece
{"title":"task",
"type":"object",
"properties":{
"name":{
"type":"string",
"title":"Name",
"default":"I'm a placeholder",
"propertyOrder":1
},
"description":{
"type":"string",
"widget":"textarea",
"title":"Description",
"description":"An explanation of the task",
"propertyOrder":2
},
"dueTo":{
"type":"string",
"title":"Due to",
"widget":"datetime",
"format":"date-time",
"propertyOrder":3
}
},
“required":[ “name", "description","dueTo"]}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name',TypeTextType::class, [
'label' => 'Name',
'required' => true,
'attr' => ['placeholder' => 'I'm a placeholder’]])
->add('description',TypeTextType::class, [
'label' => 'Description',
'liform' => [
'widget' => 'textarea',
'description' => 'An explanation of the task',
]])
->add('dueTo',TypeDateTimeType::class, [
'label' => 'Due to',
'widget' => 'single_text']
)
;
}
Transform piece by piece
{"title":"task",
"type":"object",
"properties":{
"name":{
"type":"string",
"title":"Name",
"default":"I'm a placeholder",
"propertyOrder":1
},
"description":{
"type":"string",
"widget":"textarea",
"title":"Description",
"description":"An explanation of the task",
"propertyOrder":2
},
"dueTo":{
"type":"string",
"title":"Due to",
"widget":"datetime",
"format":"date-time",
"propertyOrder":3
}
},
“required":[ “name", "description","dueTo"]}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name',TypeTextType::class, [
'label' => 'Name',
'required' => true,
'attr' => ['placeholder' => 'I'm a placeholder’]])
->add('description',TypeTextType::class, [
'label' => 'Description',
'liform' => [
'widget' => 'textarea',
'description' => 'An explanation of the task',
]])
->add('dueTo',TypeDateTimeType::class, [
'label' => 'Due to',
'widget' => 'single_text']
)
;
}
Transform piece by piece
{"title":"task",
"type":"object",
"properties":{
"name":{
"type":"string",
"title":"Name",
"default":"I'm a placeholder",
"propertyOrder":1
},
"description":{
"type":"string",
"widget":"textarea",
"title":"Description",
"description":"An explanation of the task",
"propertyOrder":2
},
"dueTo":{
"type":"string",
"title":"Due to",
"widget":"datetime",
"format":"date-time",
"propertyOrder":3
}
},
“required":[ “name", "description","dueTo"]}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name',TypeTextType::class, [
'label' => 'Name',
'required' => true,
'attr' => ['placeholder' => 'I'm a placeholder’]])
->add('description',TypeTextType::class, [
'label' => 'Description',
'liform' => [
'widget' => 'textarea',
'description' => 'An explanation of the task',
]])
->add('dueTo',TypeDateTimeType::class, [
'label' => 'Due to',
'widget' => 'single_text']
)
;
}
Transformers
Transformers extract information from each Form Field.
We can extract a lot of information:
•Default values and placeholders.
•Field attributes.
•Validation rules.
Also important
•FormView serializer for initial values.
•Form serializer that extracts errors.
{ "code":null,
"message":"Validation Failed",
"errors":{
"children":{
"name":{
"errors":[
"This value should not be equal to Beetlejuice."
]
},
"description":[],
"dueTo":[]
}
}
}
So far we have:
$form $form->createView() (helpers in other Fws not Sf)
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
On blur sync validation
On Submit validation
On blur async validation
Some client-side validation (HTML5)
All the dynamic goodies
Form Server API docs Form Client
$form Json-schema
Liform
Leverage json-schema: Validators
let valid = ajv.validate(schema, data)
if (!valid) console.log(ajv.errors)
https://github.com/epoberezkin/ajv
Leverage json-schema: Form generators
• mozilla/react-jsonschema-form: React.
• limenius/liform-react: React + Redux; integrated with redux-form
(we ♥ redux-form).
• …
• Creating our own generator is not so difficult (you typically only
need all the widgets, only a subset)
liform-react
By using redux-form we can:
• Have sane and powerful representation of state in Redux.
• Integrate on-blur validation, async validation & on Submit
validation.
• Define our own widgets/themes.
• Know from the beginning that it is flexible enough.
liform-react
import React from 'react'
import { createStore, combineReducers } from 'redux'
import { reducer as formReducer } from 'redux-form'
import { Provider } from 'react-redux'
import Liform from 'liform-react'
const MyForm = () => {
const reducer = combineReducers({ form: formReducer })
const store = createStore(reducer)
const schema = {
//…
}
}
return (
<Provider store={store}>
<Liform schema={schema} onSubmit={(v) => {console.log(v)}}/>
</Provider>
)
}
liform-react
{
"properties": {
"name": {
"title":"Task name",
"type":"string",
"minLength": 2
},
"description": {
"title":"Description",
"type":"string",
"widget":"textarea"
},
"dueTo": {
"title":"Due to",
"type":"string",
"widget":"datetime",
"format":"date-time"
}
},
"required":["name"]
}
Form Server API docs Form Client
$form Json-schema React form
Liform liform-react
=:D
$form $form->createView()
Initial values
UI hints (widgets, attributes)
Bind incoming data
Deserialize
Validate
Return errors
Render view
On blur sync validation
On Submit validation
On blur async validation
Some client-side validation (HTML5)
All the dynamic goodies
https://github.com/Limenius/symfony-react-sandbox
Example with
• Webpack
• ReactRenderer/ReactBundle
• Liform/LiformBudle & liform-react
MADRID · NOV 27-28 · 2015
Thanks!
@nacmartin
nacho@limenius.com
http://limenius.com
Formation, Consulting and
Development.

More Related Content

What's hot (20)

PPTX
Async servers and clients in Rest.li
Karan Parikh
 
KEY
DVWA BruCON Workshop
testuser1223
 
PDF
WebAssembly Fundamentals
Knoldus Inc.
 
PDF
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy
 
PDF
Workshop 4: NodeJS. Express Framework & MongoDB.
Visual Engineering
 
PPTX
Introduction to node.js
Dinesh U
 
PDF
Nodejs presentation
Arvind Devaraj
 
PPTX
Understanding react hooks
Maulik Shah
 
PPTX
Node.js & Express.js Unleashed
Elewayte
 
PDF
ReactJS | 서버와 클라이어트에서 동시에 사용하는
Taegon Kim
 
PDF
Workshop React.js
Commit University
 
PPTX
Concurrency in Java
Allan Huang
 
PPTX
Introduction to NodeJS
Cere Labs Pvt. Ltd
 
PPTX
MongoDB (Advanced)
TO THE NEW | Technology
 
PDF
API Platform 2.1: when Symfony meets ReactJS (Symfony Live 2017)
Les-Tilleuls.coop
 
PDF
gRPC: The Story of Microservices at Square
Apigee | Google Cloud
 
PPTX
Server side programming
javed ahmed
 
PPTX
Clean code
ifnu bima
 
PDF
WebAssembly
Jens Siebert
 
Async servers and clients in Rest.li
Karan Parikh
 
DVWA BruCON Workshop
testuser1223
 
WebAssembly Fundamentals
Knoldus Inc.
 
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy
 
Workshop 4: NodeJS. Express Framework & MongoDB.
Visual Engineering
 
Introduction to node.js
Dinesh U
 
Nodejs presentation
Arvind Devaraj
 
Understanding react hooks
Maulik Shah
 
Node.js & Express.js Unleashed
Elewayte
 
ReactJS | 서버와 클라이어트에서 동시에 사용하는
Taegon Kim
 
Workshop React.js
Commit University
 
Concurrency in Java
Allan Huang
 
Introduction to NodeJS
Cere Labs Pvt. Ltd
 
MongoDB (Advanced)
TO THE NEW | Technology
 
API Platform 2.1: when Symfony meets ReactJS (Symfony Live 2017)
Les-Tilleuls.coop
 
gRPC: The Story of Microservices at Square
Apigee | Google Cloud
 
Server side programming
javed ahmed
 
Clean code
ifnu bima
 
WebAssembly
Jens Siebert
 

Viewers also liked (19)

PDF
Redux saga: managing your side effects. Also: generators in es6
Ignacio Martín
 
PDF
We Built It, And They Didn't Come!
Lukas Fittl
 
KEY
Object Calisthenics Applied to PHP
Guilherme Blanco
 
PDF
Programming objects with android
firenze-gtug
 
PDF
Your code sucks, let's fix it
Rafael Dohms
 
PDF
Kicking the Bukkit: Anatomy of an open source meltdown
RyanMichela
 
PDF
Understanding PHP objects
julien pauli
 
PDF
Visual guide to selling software as a service by @prezly
Prezly
 
PPTX
Rethinking Best Practices
floydophone
 
PDF
Composer The Right Way - 010PHP
Rafael Dohms
 
PDF
10 commandments for better android development
Trey Robinson
 
PDF
Clean code
Bulat Shakirzyanov
 
PDF
How to Design Indexes, Really
Karwin Software Solutions LLC
 
PDF
Enterprise PHP: mappers, models and services
Aaron Saray
 
PDF
From development environments to production deployments with Docker, Compose,...
Jérôme Petazzoni
 
PDF
Enterprise PHP Architecture through Design Patterns and Modularization (Midwe...
Aaron Saray
 
PDF
Functional Programming Patterns (BuildStuff '14)
Scott Wlaschin
 
PDF
From Idea to Execution: Spotify's Discover Weekly
Chris Johnson
 
PDF
Linux Profiling at Netflix
Brendan Gregg
 
Redux saga: managing your side effects. Also: generators in es6
Ignacio Martín
 
We Built It, And They Didn't Come!
Lukas Fittl
 
Object Calisthenics Applied to PHP
Guilherme Blanco
 
Programming objects with android
firenze-gtug
 
Your code sucks, let's fix it
Rafael Dohms
 
Kicking the Bukkit: Anatomy of an open source meltdown
RyanMichela
 
Understanding PHP objects
julien pauli
 
Visual guide to selling software as a service by @prezly
Prezly
 
Rethinking Best Practices
floydophone
 
Composer The Right Way - 010PHP
Rafael Dohms
 
10 commandments for better android development
Trey Robinson
 
Clean code
Bulat Shakirzyanov
 
How to Design Indexes, Really
Karwin Software Solutions LLC
 
Enterprise PHP: mappers, models and services
Aaron Saray
 
From development environments to production deployments with Docker, Compose,...
Jérôme Petazzoni
 
Enterprise PHP Architecture through Design Patterns and Modularization (Midwe...
Aaron Saray
 
Functional Programming Patterns (BuildStuff '14)
Scott Wlaschin
 
From Idea to Execution: Spotify's Discover Weekly
Chris Johnson
 
Linux Profiling at Netflix
Brendan Gregg
 
Ad

Similar to Integrating React.js with PHP projects (20)

PDF
Server side rendering with React and Symfony
Ignacio Martín
 
PDF
Introduction to Redux
Ignacio Martín
 
PDF
React + Redux. Best practices
Clickky
 
PDF
React redux
Michel Perez
 
PPTX
React hooks
Assaf Gannon
 
PDF
React lecture
Christoffer Noring
 
PPTX
React outbox
Angela Lehru
 
PPTX
Into React-DOM.pptx
Ran Wahle
 
PPTX
Battle of React State Managers in frontend applications
Evangelia Mitsopoulou
 
PDF
A Blog About Using State in Next.js: Valuable Insights
Shiv Technolabs Pvt. Ltd.
 
PDF
React new features and intro to Hooks
Soluto
 
PDF
Introduction to React for Frontend Developers
Sergio Nakamura
 
PPTX
Building user interface with react
Amit Thakkar
 
PDF
Recompacting your react application
Greg Bergé
 
PDF
React.js workshop by tech47.in
Jaikant Kumaran
 
PDF
Intro to Redux | DreamLab Academy #3
DreamLab
 
PDF
Enhance react app with patterns - part 1: higher order component
Yao Nien Chung
 
PDF
Intro to React | DreamLab Academy
DreamLab
 
PPTX
React & Redux for noobs
[T]echdencias
 
PPTX
React render props
Saikat Samanta
 
Server side rendering with React and Symfony
Ignacio Martín
 
Introduction to Redux
Ignacio Martín
 
React + Redux. Best practices
Clickky
 
React redux
Michel Perez
 
React hooks
Assaf Gannon
 
React lecture
Christoffer Noring
 
React outbox
Angela Lehru
 
Into React-DOM.pptx
Ran Wahle
 
Battle of React State Managers in frontend applications
Evangelia Mitsopoulou
 
A Blog About Using State in Next.js: Valuable Insights
Shiv Technolabs Pvt. Ltd.
 
React new features and intro to Hooks
Soluto
 
Introduction to React for Frontend Developers
Sergio Nakamura
 
Building user interface with react
Amit Thakkar
 
Recompacting your react application
Greg Bergé
 
React.js workshop by tech47.in
Jaikant Kumaran
 
Intro to Redux | DreamLab Academy #3
DreamLab
 
Enhance react app with patterns - part 1: higher order component
Yao Nien Chung
 
Intro to React | DreamLab Academy
DreamLab
 
React & Redux for noobs
[T]echdencias
 
React render props
Saikat Samanta
 
Ad

More from Ignacio Martín (15)

PDF
Elixir/OTP for PHP developers
Ignacio Martín
 
PDF
Introduction to React Native Workshop
Ignacio Martín
 
PDF
Symfony 4 Workshop - Limenius
Ignacio Martín
 
PDF
Server Side Rendering of JavaScript in PHP
Ignacio Martín
 
PDF
Extending Redux in the Server Side
Ignacio Martín
 
PDF
Redux Sagas - React Alicante
Ignacio Martín
 
PDF
React Native Workshop - React Alicante
Ignacio Martín
 
PDF
Asegurando APIs en Symfony con JWT
Ignacio Martín
 
PDF
Keeping the frontend under control with Symfony and Webpack
Ignacio Martín
 
PDF
Integrando React.js en aplicaciones Symfony (deSymfony 2016)
Ignacio Martín
 
PDF
Adding Realtime to your Projects
Ignacio Martín
 
PDF
Symfony & Javascript. Combining the best of two worlds
Ignacio Martín
 
PDF
Symfony 2 CMF
Ignacio Martín
 
PDF
Doctrine2 sf2Vigo
Ignacio Martín
 
PDF
Presentacion git
Ignacio Martín
 
Elixir/OTP for PHP developers
Ignacio Martín
 
Introduction to React Native Workshop
Ignacio Martín
 
Symfony 4 Workshop - Limenius
Ignacio Martín
 
Server Side Rendering of JavaScript in PHP
Ignacio Martín
 
Extending Redux in the Server Side
Ignacio Martín
 
Redux Sagas - React Alicante
Ignacio Martín
 
React Native Workshop - React Alicante
Ignacio Martín
 
Asegurando APIs en Symfony con JWT
Ignacio Martín
 
Keeping the frontend under control with Symfony and Webpack
Ignacio Martín
 
Integrando React.js en aplicaciones Symfony (deSymfony 2016)
Ignacio Martín
 
Adding Realtime to your Projects
Ignacio Martín
 
Symfony & Javascript. Combining the best of two worlds
Ignacio Martín
 
Symfony 2 CMF
Ignacio Martín
 
Doctrine2 sf2Vigo
Ignacio Martín
 
Presentacion git
Ignacio Martín
 

Recently uploaded (20)

PPTX
PHIPA-Compliant Web Hosting in Toronto: What Healthcare Providers Must Know
steve198109
 
PPTX
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
PDF
BRKACI-1003 ACI Brownfield Migration - Real World Experiences and Best Practi...
fcesargonca
 
PDF
Boardroom AI: The Next 10 Moves | Cerebraix Talent Tech
ssuser73bdb11
 
PDF
Cleaning up your RPKI invalids, presented at PacNOG 35
APNIC
 
PPTX
西班牙巴利阿里群岛大学电子版毕业证{UIBLetterUIB文凭证书}文凭复刻
Taqyea
 
PPTX
Orchestrating things in Angular application
Peter Abraham
 
PPTX
Metaphysics_Presentation_With_Visuals.pptx
erikjohnsales1
 
PPTX
Presentation3gsgsgsgsdfgadgsfgfgsfgagsfgsfgzfdgsdgs.pptx
SUB03
 
PDF
BRKACI-1001 - Your First 7 Days of ACI.pdf
fcesargonca
 
PDF
Top 10 Testing Procedures to Ensure Your Magento to Shopify Migration Success...
CartCoders
 
PDF
The Internet - By the numbers, presented at npNOG 11
APNIC
 
PPTX
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
PDF
Digital burnout toolkit for youth workers and teachers
asociatiastart123
 
PDF
Enhancing Parental Roles in Protecting Children from Online Sexual Exploitati...
ICT Frame Magazine Pvt. Ltd.
 
PDF
BRKSP-2551 - Introduction to Segment Routing.pdf
fcesargonca
 
PPTX
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
PDF
BRKAPP-1102 - Proactive Network and Application Monitoring.pdf
fcesargonca
 
PPTX
04 Output 1 Instruments & Tools (3).pptx
GEDYIONGebre
 
DOCX
Custom vs. Off-the-Shelf Banking Software
KristenCarter35
 
PHIPA-Compliant Web Hosting in Toronto: What Healthcare Providers Must Know
steve198109
 
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
BRKACI-1003 ACI Brownfield Migration - Real World Experiences and Best Practi...
fcesargonca
 
Boardroom AI: The Next 10 Moves | Cerebraix Talent Tech
ssuser73bdb11
 
Cleaning up your RPKI invalids, presented at PacNOG 35
APNIC
 
西班牙巴利阿里群岛大学电子版毕业证{UIBLetterUIB文凭证书}文凭复刻
Taqyea
 
Orchestrating things in Angular application
Peter Abraham
 
Metaphysics_Presentation_With_Visuals.pptx
erikjohnsales1
 
Presentation3gsgsgsgsdfgadgsfgfgsfgagsfgsfgzfdgsdgs.pptx
SUB03
 
BRKACI-1001 - Your First 7 Days of ACI.pdf
fcesargonca
 
Top 10 Testing Procedures to Ensure Your Magento to Shopify Migration Success...
CartCoders
 
The Internet - By the numbers, presented at npNOG 11
APNIC
 
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
Digital burnout toolkit for youth workers and teachers
asociatiastart123
 
Enhancing Parental Roles in Protecting Children from Online Sexual Exploitati...
ICT Frame Magazine Pvt. Ltd.
 
BRKSP-2551 - Introduction to Segment Routing.pdf
fcesargonca
 
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
BRKAPP-1102 - Proactive Network and Application Monitoring.pdf
fcesargonca
 
04 Output 1 Instruments & Tools (3).pptx
GEDYIONGebre
 
Custom vs. Off-the-Shelf Banking Software
KristenCarter35
 

Integrating React.js with PHP projects

  • 1. PHP UK Conference February 2017 Integrating React.js with PHP Projects Nacho Martín @nacmartin
  • 2. My name is Nacho Martin. Almost every project needs a rich frontend, for one reason or another. We build tailor-made projects. So we have been thinking about this for some time. I write code at Limenius
  • 3. Why (as a PHP developer) should I care about the frontend?
  • 6. Pour eggs in the pan The fundamental premise How to cook an omelette Buy eggs Break eggs
  • 7. Pour eggs in the pan Beat eggs The fundamental premise How to cook an omelette Buy eggs Break eggs
  • 9. Options: The fundamental premise 1: Re-render everything.
  • 10. Options: The fundamental premise 1: Re-render everything. Simple
  • 11. Options: The fundamental premise 1: Re-render everything. Simple Not efficient
  • 12. Options: 2: Find in the DOM where to insert elements, what to move, what to remove… The fundamental premise 1: Re-render everything. Simple Not efficient
  • 13. Options: 2: Find in the DOM where to insert elements, what to move, what to remove… The fundamental premise 1: Re-render everything. Simple Complex Not efficient
  • 14. Options: 2: Find in the DOM where to insert elements, what to move, what to remove… The fundamental premise 1: Re-render everything. Simple EfficientComplex Not efficient
  • 15. Options: 2: Find in the DOM where to insert elements, what to move, what to remove… The fundamental premise 1: Re-render everything. Simple EfficientComplex Not efficient React allows us to do 1, although it does 2 behind the scenes
  • 16. Give me a state and a render() method that depends on it and forget about how and when to render.* The fundamental premise
  • 17. Give me a state and a render() method that depends on it and forget about how and when to render.* The fundamental premise * Unless you want more control, which is possible.
  • 18. Click me! Clicks: 0 Our first component
  • 19. Click me! Clicks: 1Click me! Our first component
  • 20. Our first component import React, { Component } from 'react'; class Counter extends Component { constructor(props) { super(props); this.state = {count: 1}; } tick() { this.setState({count: this.state.count + 1}); } render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } } export default Counter;
  • 21. Our first component import React, { Component } from 'react'; class Counter extends Component { constructor(props) { super(props); this.state = {count: 1}; } tick() { this.setState({count: this.state.count + 1}); } render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } } export default Counter; ES6 Syntax (optional but great)
  • 22. Our first component import React, { Component } from 'react'; class Counter extends Component { constructor(props) { super(props); this.state = {count: 1}; } tick() { this.setState({count: this.state.count + 1}); } render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } } export default Counter; ES6 Syntax (optional but great) Initial state
  • 23. Our first component import React, { Component } from 'react'; class Counter extends Component { constructor(props) { super(props); this.state = {count: 1}; } tick() { this.setState({count: this.state.count + 1}); } render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } } export default Counter; ES6 Syntax (optional but great) Set new state Initial state
  • 24. Our first component import React, { Component } from 'react'; class Counter extends Component { constructor(props) { super(props); this.state = {count: 1}; } tick() { this.setState({count: this.state.count + 1}); } render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } } export default Counter; ES6 Syntax (optional but great) Set new state render(), called by React Initial state
  • 26. Working with state constructor(props) { super(props); this.state = {count: 1}; } Initial state
  • 27. Working with state constructor(props) { super(props); this.state = {count: 1}; } Initial state this.setState({count: this.state.count + 1}); Assign state
  • 28. Working with state constructor(props) { super(props); this.state = {count: 1}; } Initial state this.setState({count: this.state.count + 1}); Assign state this.state.count = this.state.count + 1; Just remember: avoid this
  • 29. render() and JSX render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Clícame!</button> <span>Clicks: {this.state.count}</span> </div> ); It is not HTML, it is JSX. React transforms it internally to HTML elements. Good practice: make render() as clean as possible, only a return.
  • 30. render() and JSX render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Clícame!</button> <span>Clicks: {this.state.count}</span> </div> ); It is not HTML, it is JSX. React transforms it internally to HTML elements. Some things change Good practice: make render() as clean as possible, only a return.
  • 31. render() and JSX render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Clícame!</button> <span>Clicks: {this.state.count}</span> </div> ); It is not HTML, it is JSX. React transforms it internally to HTML elements. Some things change We can insert JS expressions between {} Good practice: make render() as clean as possible, only a return.
  • 32. Thinking in React render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); }
  • 33. Thinking in React render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } Here we don’t modify state
  • 34. Thinking in React render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } Here we don’t make Ajax calls
  • 35. Thinking in React render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); } Here we don’t calculate decimals of PI and send an e-mail with the result
  • 36. Important: think our hierarchy
  • 37. Important: think our hierarchy
  • 38. Component hierarchy: props class CounterGroup extends Component { render() { return ( <div> <Counter name="amigo"/> <Counter name="señor"/> </div> ); } }
  • 39. render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}> Click me! {this.props.name} </button> <span>Clicks: {this.state.count}</span> </div> ); } and in Counter… Component hierarchy: props class CounterGroup extends Component { render() { return ( <div> <Counter name="amigo"/> <Counter name="señor"/> </div> ); } }
  • 40. render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}> Click me! {this.props.name} </button> <span>Clicks: {this.state.count}</span> </div> ); } and in Counter… Component hierarchy: props class CounterGroup extends Component { render() { return ( <div> <Counter name="amigo"/> <Counter name="señor"/> </div> ); } }
  • 41. Pro tip: Stateless components const Greeter = (props) => ( <div> <div>Hi {props.name}!</div> </div> )
  • 42. Tip: Presentational and Container components const TaskList = (props) => ( <div> {props.tasks.map((task, idx) => { <div key={idx}>{task.name}</div> })} </div> ) class TasksListContainer extends React.Component { constructor(props) { super(props) this.state = {tasks: []} } componentDidMount() { // Load data with Ajax and whatnot } render() { return <TaskList tasks={this.state.tasks}/> } }
  • 43. Everything depends on the state, therefore we can:
  • 44. Everything depends on the state, therefore we can: •Reproduce states,
  • 45. Everything depends on the state, therefore we can: •Reproduce states, •Rewind,
  • 46. Everything depends on the state, therefore we can: •Reproduce states, •Rewind, •Log state changes,
  • 47. Everything depends on the state, therefore we can: •Reproduce states, •Rewind, •Log state changes, •Make storybooks,
  • 48. Everything depends on the state, therefore we can: •Reproduce states, •Rewind, •Log state changes, •Make storybooks, •…
  • 50. What if instead of this… render() { return ( <div className="App"> <button onClick={this.tick.bind(this)}>Click me!</button> <span>Clicks: {this.state.count}</span> </div> ); }
  • 51. …we have something like this? render () { return ( <View> <ListView dataSource={dataSource} renderRow={(rowData) => <TouchableOpacity > <View> <Text>{rowData.name}</Text> <View> <SwitchIOS onValueChange={(value) => this.setMissing(item, value)} value={item.missing} /> </View> </View> </TouchableOpacity> } /> </View> ); }
  • 52. …we have something like this? render () { return ( <View> <ListView dataSource={dataSource} renderRow={(rowData) => <TouchableOpacity > <View> <Text>{rowData.name}</Text> <View> <SwitchIOS onValueChange={(value) => this.setMissing(item, value)} value={item.missing} /> </View> </View> </TouchableOpacity> } /> </View> ); } React Native
  • 53. React Targets •Web - react-dom •Mobile - react-native •Gl shaders - gl-react •Canvas - react-canvas •Terminal - react-blessed
  • 55. Setup
  • 59. Webpack • Manages dependencies • Allows several environments: production, development, …. Pros
  • 60. Webpack • Manages dependencies • Allows several environments: production, development, …. • Automatic page reload (even hot reload). Pros
  • 61. Webpack • Manages dependencies • Allows several environments: production, development, …. • Automatic page reload (even hot reload). • Can use preprocessors/“transpilers”, like Babel. Pros
  • 62. Webpack • Manages dependencies • Allows several environments: production, development, …. • Automatic page reload (even hot reload). • Can use preprocessors/“transpilers”, like Babel. Pros Cons
  • 63. Webpack • Manages dependencies • Allows several environments: production, development, …. • Automatic page reload (even hot reload). • Can use preprocessors/“transpilers”, like Babel. Pros Cons • It has a non trivial learning curve.
  • 64. Webpack • Manages dependencies • Allows several environments: production, development, …. • Automatic page reload (even hot reload). • Can use preprocessors/“transpilers”, like Babel. Pros Cons • It has a non trivial learning curve. I maintain a sandbox: https://github.com/Limenius/symfony-react-sandbox
  • 65. Insertion <div id="react-placeholder"></div> import ReactDOM from 'react-dom'; ReactDOM.render( <Counter name="amigo">, document.getElementById('react-placeholder') ); HTML JavaScript
  • 68. ReactRenderer {{ react_component('RecipesApp', {'props': props}) }} import ReactOnRails from 'react-on-rails'; import RecipesApp from './RecipesAppServer'; ReactOnRails.register({ RecipesApp }); Twig: JavaScript:
  • 69. ReactRenderer {{ react_component('RecipesApp', {'props': props}) }} import ReactOnRails from 'react-on-rails'; import RecipesApp from './RecipesAppServer'; ReactOnRails.register({ RecipesApp }); Twig: JavaScript:
  • 70. ReactRenderer {{ react_component('RecipesApp', {'props': props}) }} import ReactOnRails from 'react-on-rails'; import RecipesApp from './RecipesAppServer'; ReactOnRails.register({ RecipesApp }); Twig: JavaScript: <div class="js-react-on-rails-component" style="display:none" data-component-name=“RecipesApp” data-props=“[my Array in JSON]" data-trace=“false" data-dom-id=“sfreact-57d05640f2f1a”></div> Generated HTML:
  • 73. Give me a state and a render() method that depends on it and forget about how and when to render. The fundamental premise
  • 74. Give me a state and a render() method that depends on it and forget about how and when to render. The fundamental premise We can render components in the server
  • 75. Give me a state and a render() method that depends on it and forget about how and when to render. The fundamental premise We can render components in the server • SEO friendly.
  • 76. Give me a state and a render() method that depends on it and forget about how and when to render. The fundamental premise We can render components in the server • SEO friendly. • Faster perceived page loads.
  • 77. Give me a state and a render() method that depends on it and forget about how and when to render. The fundamental premise We can render components in the server • SEO friendly. • Faster perceived page loads. • We can cache.
  • 78. Client-side + Server-side {{ react_component('RecipesApp', {'props': props, rendering': 'both'}}) }} TWIG
  • 79. Client-side + Server-side {{ react_component('RecipesApp', {'props': props, rendering': 'both'}}) }} TWIG HTML returned by the server <div id="sfreact-57d05640f2f1a"><div data-reactroot="" data-reactid="1" data-react- checksum=“2107256409"><ol class="breadcrumb" data-reactid="2"><li class="active" data- reactid=“3”>Recipes</li> … … </div>
  • 80. Client-side + Server-side {{ react_component('RecipesApp', {'props': props, rendering': 'both'}}) }} TWIG HTML returned by the server <div id="sfreact-57d05640f2f1a"><div data-reactroot="" data-reactid="1" data-react- checksum=“2107256409"><ol class="breadcrumb" data-reactid="2"><li class="active" data- reactid=“3”>Recipes</li> … … </div> An then React in the browser takes control over the component
  • 82. Option 1: Call a node.js subprocess Make a call to node.js using Symfony Process component * Easy (if we have node.js installed). * Slow. Library: https://github.com/nacmartin/phpexecjs
  • 83. Option 2: v8js Use PHP extension v8js * Easy (although compiling the extension and v8 is not a breeze). * Currently slow, maybe we could have v8 preloaded using php-pm so it is not destroyed after every request-response cycle. Library: https://github.com/nacmartin/phpexecjs
  • 84. Option 3: External node.js server We have “stupid” node.js server used only to render React components. It has <100 LoC, and it doesn’t know anything about our logic. * “Annoying” (we have to keep it running, which is not super annoying either). * Faster. There is an example a dummy server for this purpose at https://github.com/Limenius/symfony-react-sandbox
  • 85. Options 1 & 2 $renderer = new PhpExecJsReactRenderer(‘path_to/server-bundle.js’); $ext = new ReactRenderExtension($renderer, 'both'); $twig->addExtension($ext); phpexecjs detects the presence of the extension v8js, if not, calls node.js
  • 86. Option 3 $renderer = new ExternalServerReactRenderer(‘../some_path/node.sock’); $ext = new ReactRenderExtension($renderer, 'both'); $twig->addExtension($ext);
  • 87. The best of the two worlds In development use node.js or v8js with phpexecjs. In production use an external server. If we can cache server-side responses, even better.
  • 88. Server side rendering, is it worth it?
  • 89. Server side rendering, is it worth it? Sometimes yes, but it introduces complexity
  • 90. Redux support (+very brief introduction to Redux)
  • 91. Redux: a matter of state save Your name: John Hi, John John’s stuff
  • 92. Redux: a matter of state save Your name: John Hi, John John’s stuff
  • 93. Redux: a matter of state save Your name: John Hi, John John’s stuff state.name callback to change it
  • 95. dispatch(changeName(‘John')); Component changeName = (name) => { return { type: ‘CHANGE_NAME', name } } Action
  • 96. dispatch(changeName(‘John')); Component changeName = (name) => { return { type: ‘CHANGE_NAME', name } } Action const todo = (state = {name: null}, action) => { switch (action.type) { case 'CHANGE_USER': return { name: action.name } } } Reducer
  • 97. dispatch(changeName(‘John')); Component changeName = (name) => { return { type: ‘CHANGE_NAME', name } } Action const todo = (state = {name: null}, action) => { switch (action.type) { case 'CHANGE_USER': return { name: action.name } } } Reducer Store
  • 98. this.props.name == ‘John';dispatch(changeName(‘John')); Component changeName = (name) => { return { type: ‘CHANGE_NAME', name } } Action const todo = (state = {name: null}, action) => { switch (action.type) { case 'CHANGE_USER': return { name: action.name } } } Reducer Store
  • 101. Redux with ReactRenderer Sample code in https://github.com/Limenius/symfony-react-sandbox import ReactOnRails from 'react-on-rails'; import RecipesApp from './RecipesAppClient'; import recipesStore from '../store/recipesStore'; ReactOnRails.registerStore({recipesStore}) ReactOnRails.register({ RecipesApp }); Twig: JavaScript: {{ redux_store('recipesStore', props) }} {{ react_component('RecipesApp') }}
  • 102. Redux with ReactRenderer Sample code in https://github.com/Limenius/symfony-react-sandbox import ReactOnRails from 'react-on-rails'; import RecipesApp from './RecipesAppClient'; import recipesStore from '../store/recipesStore'; ReactOnRails.registerStore({recipesStore}) ReactOnRails.register({ RecipesApp }); Twig: JavaScript: {{ redux_store('recipesStore', props) }} {{ react_component('RecipesApp') }} {{ react_component('AnotherComponent') }}
  • 103. Share store between components
  • 104. React React React Twig Twig React By sharing store they can share state Twig Share store between components
  • 106. Dynamic forms, why? •Inside of React components. •Important forms where UX means better conversions. •Very specific forms. •Very dynamic forms that aren’t boring (see Typeform for instance).
  • 108. Typically PHP frameworks have a Form Component
  • 109. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component)
  • 110. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) Initial values
  • 111. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) Initial values UI hints (widgets, attributes)
  • 112. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) Initial values UI hints (widgets, attributes) Bind incoming data
  • 113. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize
  • 114. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate
  • 115. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors
  • 116. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors
  • 117. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view
  • 118. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view Show errors after Submit
  • 119. Typically PHP frameworks have a Form Component $form (e.g. Form Symfony Component) $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view Some client-side validation (HTML5) Show errors after Submit
  • 120. Using forms in an API $form $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view Some client-side validation (HTML5) Show errors after Submit
  • 121. …and we want more $form $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view On Submit validation Some client-side validation (HTML5)
  • 122. …and we want more $form $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view On blur sync validation On Submit validation Some client-side validation (HTML5)
  • 123. …and we want more $form $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view On blur sync validation On Submit validation On blur async validation Some client-side validation (HTML5)
  • 124. …and we want more $form $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view On blur sync validation On Submit validation On blur async validation Some client-side validation (HTML5) All the dynamic goodies
  • 125. Suppose this Symfony form public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('country', ChoiceType::class, [ 'choices' => [ 'United Kingdom' => 'gb', 'Deutschland' => 'de', 'España' => 'es', ] ]) ->add('addresses', CollectionType::class, ...); };
  • 126. Forms rendered to HTML $form->createView(); state.usuario
  • 127. Forms rendered to HTML $form->createView(); state.usuario
  • 128. Forms rendered to HTML $form->createView(); submit Country: España Deutschland España Addresses: Some St.- +state.usuario
  • 129. Forms rendered to HTML $form->createView(); submit Country: España Deutschland España Addresses: Some St.- +state.usuario POST well formed with country:’es’ and not ‘España’, ‘espana', ‘spain', ‘0’…
  • 130. Forms rendered to HTML $form->createView(); $form->submit($request); submit Country: España Deutschland España Addresses: Some St.- +state.usuario POST well formed with country:’es’ and not ‘España’, ‘espana', ‘spain', ‘0’…
  • 132. submit Country: España Deutschland España Addresses: Some St.- +state.usuario Forms in APIs $form; ✘ How do we know the visible choices or values? Read the docs!
  • 133. submit Country: España Deutschland España Addresses: Some St.- +state.usuario Forms in APIs $form; $form->submit($request); POST “I'm Feeling Lucky” ✘ How do we know the visible choices or values? Read the docs!
  • 134. submit Country: España Deutschland España Addresses: Some St.- +state.usuario This form should not contain extra fields!!1 Forms in APIs $form; $form->submit($request); POST “I'm Feeling Lucky” ✘ How do we know the visible choices or values? Read the docs!
  • 135. submit Country: España Deutschland España Addresses: Some St.- +state.usuario This form should not contain extra fields!!1 The value you selected is not a valid choice!! Forms in APIs $form; $form->submit($request); POST “I'm Feeling Lucky” ✘ How do we know the visible choices or values? Read the docs!
  • 136. submit Country: España Deutschland España Addresses: Some St.- +state.usuario This form should not contain extra fields!!1 The value you selected is not a valid choice!!One or more of the given values is invalid!! :D Forms in APIs $form; $form->submit($request); POST “I'm Feeling Lucky” ✘ How do we know the visible choices or values? Read the docs!
  • 137. submit Country: España Deutschland España Addresses: Some St.- +state.usuario This form should not contain extra fields!!1 The value you selected is not a valid choice!!One or more of the given values is invalid!! :DMUHAHAHAHAHA!!!!! Forms in APIs $form; $form->submit($request); POST “I'm Feeling Lucky” ✘ How do we know the visible choices or values? Read the docs!
  • 140. Define, maintain and keep in sync in triplicate Form Server API docs Form Client :_( How many devs does it take to write a form?
  • 141. Wizard type form? “While you code this we will be preparing different versions for other use cases”
  • 146. What we need $form->createView(); HTML Serialize! Ok, into which format? API $mySerializer->serialize($form);
  • 149. How does it look like { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Product", "description": "A product from Acme's catalog", "type": "object", "properties": { "name": { "description": "Name of the product", "type": "string" }, "price": { "type": "number", "minimum": 0, "exclusiveMinimum": true }, "tags": { "type": "array", "items": { "type": "string" }, "minItems": 1, "uniqueItems": true } }, "required": ["id", "name", "price"] } Definitions Types, Validation rules :_) New resource: my-api/products/form
  • 150. Liform & LiformBundle https://github.com/Limenius/Liform use LimeniusLiformResolver; use LimeniusLiformLiform; $resolver = new Resolver(); $resolver->setDefaultTransformers(); $liform = new Liform($resolver); $form = $this->createForm(CarType::class, $car, ['csrf_protection' => false]); $schema = json_encode($liform->transform($form));
  • 151. Transform piece by piece {"title":"task", "type":"object", "properties":{ "name":{ "type":"string", "title":"Name", "default":"I'm a placeholder", "propertyOrder":1 }, "description":{ "type":"string", "widget":"textarea", "title":"Description", "description":"An explanation of the task", "propertyOrder":2 }, "dueTo":{ "type":"string", "title":"Due to", "widget":"datetime", "format":"date-time", "propertyOrder":3 } }, “required":[ “name", "description","dueTo"]} public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('name',TypeTextType::class, [ 'label' => 'Name', 'required' => true, 'attr' => ['placeholder' => 'I'm a placeholder’]]) ->add('description',TypeTextType::class, [ 'label' => 'Description', 'liform' => [ 'widget' => 'textarea', 'description' => 'An explanation of the task', ]]) ->add('dueTo',TypeDateTimeType::class, [ 'label' => 'Due to', 'widget' => 'single_text'] ) ; }
  • 152. Transform piece by piece {"title":"task", "type":"object", "properties":{ "name":{ "type":"string", "title":"Name", "default":"I'm a placeholder", "propertyOrder":1 }, "description":{ "type":"string", "widget":"textarea", "title":"Description", "description":"An explanation of the task", "propertyOrder":2 }, "dueTo":{ "type":"string", "title":"Due to", "widget":"datetime", "format":"date-time", "propertyOrder":3 } }, “required":[ “name", "description","dueTo"]} public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('name',TypeTextType::class, [ 'label' => 'Name', 'required' => true, 'attr' => ['placeholder' => 'I'm a placeholder’]]) ->add('description',TypeTextType::class, [ 'label' => 'Description', 'liform' => [ 'widget' => 'textarea', 'description' => 'An explanation of the task', ]]) ->add('dueTo',TypeDateTimeType::class, [ 'label' => 'Due to', 'widget' => 'single_text'] ) ; }
  • 153. Transform piece by piece {"title":"task", "type":"object", "properties":{ "name":{ "type":"string", "title":"Name", "default":"I'm a placeholder", "propertyOrder":1 }, "description":{ "type":"string", "widget":"textarea", "title":"Description", "description":"An explanation of the task", "propertyOrder":2 }, "dueTo":{ "type":"string", "title":"Due to", "widget":"datetime", "format":"date-time", "propertyOrder":3 } }, “required":[ “name", "description","dueTo"]} public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('name',TypeTextType::class, [ 'label' => 'Name', 'required' => true, 'attr' => ['placeholder' => 'I'm a placeholder’]]) ->add('description',TypeTextType::class, [ 'label' => 'Description', 'liform' => [ 'widget' => 'textarea', 'description' => 'An explanation of the task', ]]) ->add('dueTo',TypeDateTimeType::class, [ 'label' => 'Due to', 'widget' => 'single_text'] ) ; }
  • 154. Transform piece by piece {"title":"task", "type":"object", "properties":{ "name":{ "type":"string", "title":"Name", "default":"I'm a placeholder", "propertyOrder":1 }, "description":{ "type":"string", "widget":"textarea", "title":"Description", "description":"An explanation of the task", "propertyOrder":2 }, "dueTo":{ "type":"string", "title":"Due to", "widget":"datetime", "format":"date-time", "propertyOrder":3 } }, “required":[ “name", "description","dueTo"]} public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('name',TypeTextType::class, [ 'label' => 'Name', 'required' => true, 'attr' => ['placeholder' => 'I'm a placeholder’]]) ->add('description',TypeTextType::class, [ 'label' => 'Description', 'liform' => [ 'widget' => 'textarea', 'description' => 'An explanation of the task', ]]) ->add('dueTo',TypeDateTimeType::class, [ 'label' => 'Due to', 'widget' => 'single_text'] ) ; }
  • 155. Transformers Transformers extract information from each Form Field. We can extract a lot of information: •Default values and placeholders. •Field attributes. •Validation rules.
  • 156. Also important •FormView serializer for initial values. •Form serializer that extracts errors. { "code":null, "message":"Validation Failed", "errors":{ "children":{ "name":{ "errors":[ "This value should not be equal to Beetlejuice." ] }, "description":[], "dueTo":[] } } }
  • 157. So far we have: $form $form->createView() (helpers in other Fws not Sf) Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view On blur sync validation On Submit validation On blur async validation Some client-side validation (HTML5) All the dynamic goodies
  • 158. Form Server API docs Form Client $form Json-schema Liform
  • 159. Leverage json-schema: Validators let valid = ajv.validate(schema, data) if (!valid) console.log(ajv.errors) https://github.com/epoberezkin/ajv
  • 160. Leverage json-schema: Form generators • mozilla/react-jsonschema-form: React. • limenius/liform-react: React + Redux; integrated with redux-form (we ♥ redux-form). • … • Creating our own generator is not so difficult (you typically only need all the widgets, only a subset)
  • 161. liform-react By using redux-form we can: • Have sane and powerful representation of state in Redux. • Integrate on-blur validation, async validation & on Submit validation. • Define our own widgets/themes. • Know from the beginning that it is flexible enough.
  • 162. liform-react import React from 'react' import { createStore, combineReducers } from 'redux' import { reducer as formReducer } from 'redux-form' import { Provider } from 'react-redux' import Liform from 'liform-react' const MyForm = () => { const reducer = combineReducers({ form: formReducer }) const store = createStore(reducer) const schema = { //… } } return ( <Provider store={store}> <Liform schema={schema} onSubmit={(v) => {console.log(v)}}/> </Provider> ) }
  • 163. liform-react { "properties": { "name": { "title":"Task name", "type":"string", "minLength": 2 }, "description": { "title":"Description", "type":"string", "widget":"textarea" }, "dueTo": { "title":"Due to", "type":"string", "widget":"datetime", "format":"date-time" } }, "required":["name"] }
  • 164. Form Server API docs Form Client $form Json-schema React form Liform liform-react
  • 165. =:D $form $form->createView() Initial values UI hints (widgets, attributes) Bind incoming data Deserialize Validate Return errors Render view On blur sync validation On Submit validation On blur async validation Some client-side validation (HTML5) All the dynamic goodies
  • 167. MADRID · NOV 27-28 · 2015 Thanks! @nacmartin [email protected] http://limenius.com Formation, Consulting and Development.