15 lines
538 B
JavaScript
15 lines
538 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectIsStillEditing, makeSelectPublishFormValue, doUpdatePublishForm } from 'lbry-redux';
|
|
import StoryEditor from './view';
|
|
|
|
const select = (state, props) => ({
|
|
filePath: makeSelectPublishFormValue('filePath')(state),
|
|
fileText: makeSelectPublishFormValue('fileText')(state),
|
|
isStillEditing: selectIsStillEditing(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
updatePublishForm: value => dispatch(doUpdatePublishForm(value)),
|
|
});
|
|
|
|
export default connect(select, perform)(StoryEditor);
|