2018-01-17 10:49:57 -08:00
|
|
|
import {connect} from 'react-redux';
|
2018-01-19 16:03:49 -08:00
|
|
|
import {updateMetadata, toggleMetadataInputs} from 'actions/publish';
|
2018-01-17 15:00:03 -08:00
|
|
|
import View from './view';
|
2018-01-17 10:49:57 -08:00
|
|
|
|
2018-01-18 09:33:26 -08:00
|
|
|
const mapStateToProps = ({ publish }) => {
|
2018-01-17 10:49:57 -08:00
|
|
|
return {
|
2018-01-19 16:03:49 -08:00
|
|
|
showMetadataInputs: publish.showMetadataInputs,
|
|
|
|
description : publish.metadata.description,
|
|
|
|
license : publish.metadata.license,
|
|
|
|
nsfw : publish.metadata.nsfw,
|
2018-01-17 10:49:57 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
onMetadataChange: (name, value) => {
|
|
|
|
dispatch(updateMetadata(name, value));
|
|
|
|
},
|
2018-01-19 16:03:49 -08:00
|
|
|
onToggleMetadataInputs: (value) => {
|
|
|
|
dispatch(toggleMetadataInputs(value));
|
|
|
|
},
|
2018-01-17 10:49:57 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|