2017-12-27 00:54:28 +00:00
|
|
|
import { injectIntl } from 'react-intl';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
// Connects a component.
|
|
|
|
export function wrap (Component, mapStateToProps, mapDispatchToProps, options) {
|
|
|
|
const withIntl = typeof options === 'object' ? options.withIntl : !!options;
|
2018-01-03 20:36:21 +00:00
|
|
|
return (withIntl ? injectIntl : i => i)(connect(mapStateToProps, mapDispatchToProps)(Component));
|
2017-12-27 00:54:28 +00:00
|
|
|
}
|