Package Exports
- react-polymer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-polymer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-polymer
Use Polymer elements in React
Since this change you can put Polymer elements into React components and at first glance it just works:
<paper-button>click me</paper-button>
However, when you then start using custom attributes and events, it doesn't work anymore. Now you need react-polymer:
import polymerReact from 'polymer-react'; //IMPORTANT: Must be imported before React.
import React from 'react';
polymerReact.registerAttribute('raised');
polymerReact.registerAttribute('url');
polymerReact.registerEvent('response', 'onResponse');
<paper-button raised>another button</paper-button>
<iron-ajax url="http://example.com/" onResponse={this.handleResponse} />
Also, all the form elements don't work like the native ones. That's because React internally has wrappers to make controlled components. We have our own wrapper for the Polymer form elements:
import polymerReact from 'polymer-react';
import React from 'react';
import {
PaperInput,
PaperTextarea,
IronAutogrowTextarea,
PaperSlider,
PaperToggleButton,
PaperCheckbox,
PaperRadioButton,
} from 'polymer-react/input';
<PaperInput value={this.state.value} onChange={this.valueChanged} />
<PaperToggleButton checked={this.state.checked} onChange={this.checkedChange} />
Another problem is if you set a className
on a Polymer elements which
dynamically changes.
Polymer adds its own classes for styling, but if you change it in React these
get overwritten.
The solution is to add the classMixin
to the component and
ref={this.polymerClass}
to the affected Polymer elements:
import polymerReact from 'polymer-react';
import React from 'react';
var Component = React.createClass({
mixins: [polymerReact.classMixin],
...
<paper-icon className={this.state.answer ? 'yes' : 'no'} ref={this.polymerClass} />
Testing
npm install
bower install
node demo/build
http-server
Now open http://localhost:8080/demo/ in your browser.
There are no automated tests, you have to manually click on the elements and
also verify that you can't change anything if fields editable
is unchecked.
Caveats
paper-slider
works differently from the native <input type="range">
, it only
fires change events when the user stops dragging.
iron-selector
, paper-radio-group
& gold-*
elements are not yet supported.
Polymer elements can have properties with notify
attribute, which trigger
{property}-changed
events. However these events don't bubble, so you have to
manually call addEventListener
yourself.
This module does a lot of monkey patching, so it only works with React 0.13.